diff --git a/.travis/build-ubuntu-14-04.sh b/.travis/build-ubuntu-14-04.sh index 4a758ef2e..89c330722 100755 --- a/.travis/build-ubuntu-14-04.sh +++ b/.travis/build-ubuntu-14-04.sh @@ -132,7 +132,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y sudo ldconfig cd .. # toxcore -git clone --branch v0.2.9 --depth=1 https://github.com/toktok/c-toxcore.git toxcore +git clone --branch v0.2.10 --depth=1 https://github.com/toktok/c-toxcore.git toxcore cd toxcore autoreconf -if CC="ccache $CC" CXX="ccache $CXX" ./configure diff --git a/INSTALL.fa.md b/INSTALL.fa.md index eb5e2408a..bfd55fd95 100644 --- a/INSTALL.fa.md +++ b/INSTALL.fa.md @@ -632,7 +632,7 @@ cd .. ```bash git clone https://github.com/toktok/c-toxcore.git toxcore cd toxcore -git checkout v0.2.9 +git checkout v0.2.10 autoreconf -if ./configure make -j$(nproc) diff --git a/INSTALL.md b/INSTALL.md index bddcc51e0..dd42e1eb7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -518,7 +518,7 @@ Provided that you have all required dependencies installed, you can simply run: ```bash git clone https://github.com/toktok/c-toxcore.git toxcore cd toxcore -git checkout v0.2.9 +git checkout v0.2.10 cmake . make -j$(nproc) sudo make install diff --git a/bootstrap.sh b/bootstrap.sh index 43be561ae..7f5c91525 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -31,7 +31,7 @@ readonly INSTALL_DIR=libs readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}" # versions of libs to checkout -readonly TOXCORE_VERSION="v0.2.9" +readonly TOXCORE_VERSION="v0.2.10" readonly SQLCIPHER_VERSION="v3.4.2" # directory names of cloned repositories diff --git a/docker/Dockerfile.debian b/docker/Dockerfile.debian index bd6fbc8a2..a415bbf8c 100644 --- a/docker/Dockerfile.debian +++ b/docker/Dockerfile.debian @@ -34,7 +34,7 @@ RUN apt-get update && \ RUN git clone https://github.com/toktok/c-toxcore.git /toxcore WORKDIR /toxcore -RUN git checkout v0.2.9 && \ +RUN git checkout v0.2.10 && \ cmake . && \ cmake --build . && \ make install && \ diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index e74a49d14..e12f37f7c 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -31,7 +31,7 @@ RUN apt-get update && \ RUN git clone https://github.com/toktok/c-toxcore.git /toxcore WORKDIR /toxcore -RUN git checkout v0.2.9 && \ +RUN git checkout v0.2.10 && \ cmake . && \ cmake --build . && \ make install && \ diff --git a/flatpak/io.github.qtox.qTox.json b/flatpak/io.github.qtox.qTox.json index 329f381e1..fdcb71a82 100644 --- a/flatpak/io.github.qtox.qTox.json +++ b/flatpak/io.github.qtox.qTox.json @@ -149,8 +149,8 @@ { "type": "git", "url": "https://github.com/toktok/c-toxcore", - "tag": "v0.2.9", - "commit": "98b754e1f22220f10196760389371dba6d139c6f" + "tag": "v0.2.10", + "commit": "7aab0d995240c59937d1aa23b7201389341a2be9" } ] }, diff --git a/osx/qTox-Mac-Deployer-ULTIMATE.sh b/osx/qTox-Mac-Deployer-ULTIMATE.sh index 7bfec10bb..7d40f8d13 100755 --- a/osx/qTox-Mac-Deployer-ULTIMATE.sh +++ b/osx/qTox-Mac-Deployer-ULTIMATE.sh @@ -127,7 +127,7 @@ install() { git pull else fcho "Cloning Toxcore git ... " - git clone --branch v0.2.9 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR" + git clone --branch v0.2.10 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR" fi # qTox if [[ $TRAVIS = true ]]