-
+
سپس بسته هایی را نصب کنید که فایل های مورد نیاز را فراهم میکنند. دوباره فرمان make را اجرا کنید، در صورت نیاز دوباره این مراحل را تکرار کنید. اگر برایتان امکان پذیر است لیستی از فایلهای مورد نیاز تهیه کنید و برای ما ارسال نمایید تا بتوانیم مشخص کنیم که چه فایلهایی به شکل معمول مورد نیاز کاربران است `;)`
---
@@ -768,13 +768,13 @@ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/
در مرحله اول، تمامی پیش نیاز های موجود در `brew` را نصب کنید.
-
+
```bash
brew install git ffmpeg qrencode libtool automake autoconf check qt5 libvpx \
opus sqlcipher libsodium
```
-
+
در مرحله بعد [toxcore](https://github.com/toktok/c-toxcore/blob/master/INSTALL.md#osx)را نصب کنید
سپس qTox را کپی کنید:
diff --git a/INSTALL.md b/INSTALL.md
index 6e02dc5f7..2f676416b 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -413,7 +413,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.10
+git checkout v0.2.11
cmake . -DBOOTSTRAP_DAEMON=OFF
make -j$(nproc)
sudo make install
diff --git a/bootstrap.sh b/bootstrap.sh
index b74766619..76232d8d7 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -48,7 +48,7 @@ readonly INSTALL_DIR=libs
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
# versions of libs to checkout
-readonly TOXCORE_VERSION="v0.2.10"
+readonly TOXCORE_VERSION="v0.2.11"
readonly SQLCIPHER_VERSION="v4.3.0"
# directory names of cloned repositories
diff --git a/docker/Dockerfile.debian b/docker/Dockerfile.debian
index 917d85502..24893ba53 100644
--- a/docker/Dockerfile.debian
+++ b/docker/Dockerfile.debian
@@ -50,7 +50,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
-RUN git checkout v0.2.10 && \
+RUN git checkout v0.2.11 && \
cmake . && \
cmake --build . && \
make install && \
diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu
index 97ea35bf1..320907faf 100644
--- a/docker/Dockerfile.ubuntu
+++ b/docker/Dockerfile.ubuntu
@@ -47,7 +47,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
-RUN git checkout v0.2.10 && \
+RUN git checkout v0.2.11 && \
cmake . && \
cmake --build . && \
make install && \
diff --git a/flatpak/io.github.qtox.qTox.json b/flatpak/io.github.qtox.qTox.json
index 480e37606..97aaada37 100644
--- a/flatpak/io.github.qtox.qTox.json
+++ b/flatpak/io.github.qtox.qTox.json
@@ -126,8 +126,8 @@
{
"type": "git",
"url": "https://github.com/toktok/c-toxcore",
- "tag": "v0.2.10",
- "commit": "7aab0d995240c59937d1aa23b7201389341a2be9"
+ "tag": "v0.2.11",
+ "commit": "30b9369b01859e7c57687129ba2a481aa2bc48b8"
}
]
},
diff --git a/osx/qTox-Mac-Deployer-ULTIMATE.sh b/osx/qTox-Mac-Deployer-ULTIMATE.sh
index 86d277934..138a87c18 100755
--- a/osx/qTox-Mac-Deployer-ULTIMATE.sh
+++ b/osx/qTox-Mac-Deployer-ULTIMATE.sh
@@ -146,7 +146,7 @@ install() {
git pull
else
fcho "Cloning Toxcore git ... "
- git clone --branch v0.2.10 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
+ git clone --branch v0.2.11 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi
# qTox
if [[ $TRAVIS = true ]]
diff --git a/windows/cross-compile/build.sh b/windows/cross-compile/build.sh
index 2accb4cca..dd3890faf 100644
--- a/windows/cross-compile/build.sh
+++ b/windows/cross-compile/build.sh
@@ -931,8 +931,8 @@ fi
# Toxcore
TOXCORE_PREFIX_DIR="$DEP_DIR/libtoxcore"
-TOXCORE_VERSION=0.2.10
-TOXCORE_HASH="5ccc4ecd79b95c367efe8341b06bf2a81f853032e6fcd7cb2bc0ad0ef7419d40"
+TOXCORE_VERSION=0.2.11
+TOXCORE_HASH="f111285b036d7746ce8d1321cf0b89ec93b4fad8ae90767a24e50230bbee27e1"
TOXCORE_FILENAME="c-toxcore-$TOXCORE_VERSION.tar.gz"
if [ ! -f "$TOXCORE_PREFIX_DIR/done" ]
then