From 4a718575a3e88df7378b66c9adbc313c457a67da Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:04:48 +0330 Subject: [PATCH 01/10] update termux.sh --- termux.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/termux.sh b/termux.sh index d8c0db6a6..c1a5a67d5 100644 --- a/termux.sh +++ b/termux.sh @@ -68,12 +68,12 @@ install() { pacman -Syu openssh = apt update; apt full-upgrade -y; apt install -y openssh check_dependencies - if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-android-arm64.ed853c.zip && - unzip warp-android-arm64.ed853c.zip&& + if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.10-alpha/warp-android-arm64.59b4d2.zip && + unzip warp-android-arm64.59b4d2.zip && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-android-arm64.ed853c.zip" + rm "README.md" "LICENSE" "warp-android-arm64.59b4d2.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks @@ -104,14 +104,14 @@ install_arm() { *) echo -e "${red}Unsupported architecture.${rest}"; return ;; esac - WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-linux-$ARCH.ed853c.zip" + WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.10-alpha/warp-linux-$ARCH.59b4d2.zip" if wget "$WARP_URL" && - unzip "warp-linux-$ARCH.ed853c.zip" && + unzip "warp-linux-$ARCH.59b4d2.zip" && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-linux-$ARCH.ed853c.zip" + rm "README.md" "LICENSE" "warp-linux-$ARCH.59b4d2.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks From 98a00beab8712743a5a6eb5168e2ccba2e0a1f2d Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:10:11 +0330 Subject: [PATCH 02/10] update termux.sh --- termux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termux.sh b/termux.sh index c1a5a67d5..25947eda5 100644 --- a/termux.sh +++ b/termux.sh @@ -141,7 +141,7 @@ uninstall() { directory="/data/data/com.termux/files/home/wireguard-go" home="/data/data/com.termux/files/home" if [ -f "$warp" ]; then - rm -rf "$directory" "$PREFIX/bin/usef" "wa.py" "$PREFIX/bin/warp" "$home/wgcf-profile.ini" "$home/warp" "$home/wgcf-identity.json" > /dev/null 2>&1 + rm -rf "$directory" "$PREFIX/bin/usef" "wa.py" "$PREFIX/bin/warp" "$home/wgcf-profile.ini" "$home/warp" "$home/stuff" "$home/wgcf-identity.json" > /dev/null 2>&1 echo -e "${red}Uninstallation completed.${rest}" else echo -e "${yellow} ____________________________________${rest}" From 1c8f34122c351e6eb1b1fc948f7d08859d4eceeb Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:28:03 +0330 Subject: [PATCH 03/10] update termux.sh --- termux.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/termux.sh b/termux.sh index 25947eda5..54bf0f15f 100644 --- a/termux.sh +++ b/termux.sh @@ -68,12 +68,12 @@ install() { pacman -Syu openssh = apt update; apt full-upgrade -y; apt install -y openssh check_dependencies - if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.10-alpha/warp-android-arm64.59b4d2.zip && - unzip warp-android-arm64.59b4d2.zip && + if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-android-arm64.ed853c.zip && + unzip warp-android-arm64.ed853c.zip && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-android-arm64.59b4d2.zip" + rm "README.md" "LICENSE" "warp-android-arm64.ed853c.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks @@ -104,14 +104,14 @@ install_arm() { *) echo -e "${red}Unsupported architecture.${rest}"; return ;; esac - WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.10-alpha/warp-linux-$ARCH.59b4d2.zip" + WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-linux-$ARCH.ed853c.zip" if wget "$WARP_URL" && - unzip "warp-linux-$ARCH.59b4d2.zip" && + unzip "warp-linux-$ARCH.ed853c.zip" && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-linux-$ARCH.59b4d2.zip" + rm "README.md" "LICENSE" "warp-linux-$ARCH.ed853c.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks From e299adadf4e0af3091981b4869e09d60af8273f0 Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Wed, 31 Jan 2024 21:36:13 +0330 Subject: [PATCH 04/10] Update README.md Signed-off-by: Peyman <118217228+Ptechgithub@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef48a54f5..5e14edf2e 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ bash <(curl -fsSL https://raw.githubusercontent.com/Ptechgithub/wireguard-go/mas ![1](https://github.com/Ptechgithub/configs/blob/main/media/18.jpg?raw=true) - بعد از نصب برای اجرای مجدد فقط کافیه که `warp` یا `usef` یا `./warp` را وارد کنید . -- روی برخی از مدل های قدیمی تر روش دوم یعنی arm 64 را انتخاب کنید. +- اگر با 1 نصب نشد و خطا گرفتید عدد 2 رو انتخاب کنید یعنی Arm. - برای نمایش راهنما ` warp -h` را وارد کنید. - ای پی و پورت `127.0.0.1:8086`پروتکل socks - در روش warp به warp plus مقدار account id را وارد میکنید و با این کار هر 20 ثانیه 1 GB به اکانت شما اضافه میشود. From d07b9b4ec129b10aa55da86e12d3e77938d55155 Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Sat, 3 Feb 2024 11:42:35 +0330 Subject: [PATCH 05/10] update termux.sh --- termux.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/termux.sh b/termux.sh index 54bf0f15f..8c5858588 100644 --- a/termux.sh +++ b/termux.sh @@ -68,12 +68,12 @@ install() { pacman -Syu openssh = apt update; apt full-upgrade -y; apt install -y openssh check_dependencies - if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-android-arm64.ed853c.zip && - unzip warp-android-arm64.ed853c.zip && + if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-android-arm64.511125.zip && + unzip warp-android-arm64.511125.zip && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-android-arm64.ed853c.zip" + rm "README.md" "LICENSE" "warp-android-arm64.511125.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks @@ -104,14 +104,14 @@ install_arm() { *) echo -e "${red}Unsupported architecture.${rest}"; return ;; esac - WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-linux-$ARCH.ed853c.zip" + WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-linux-$ARCH.511125.zip" if wget "$WARP_URL" && - unzip "warp-linux-$ARCH.ed853c.zip" && + unzip "warp-linux-$ARCH.511125.zip" && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-linux-$ARCH.ed853c.zip" + rm "README.md" "LICENSE" "warp-linux-$ARCH.511125.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks From f51ea51b6d61df9f7be4589e6263759928211777 Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Sat, 3 Feb 2024 19:46:25 +0330 Subject: [PATCH 06/10] update termux.sh --- termux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/termux.sh b/termux.sh index 8c5858588..05993b813 100644 --- a/termux.sh +++ b/termux.sh @@ -68,7 +68,7 @@ install() { pacman -Syu openssh = apt update; apt full-upgrade -y; apt install -y openssh check_dependencies - if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-android-arm64.511125.zip && + if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.12-alpha/warp-android-arm64.511125.zip && unzip warp-android-arm64.511125.zip && chmod +x warp && cp warp "$PREFIX/bin/usef" && @@ -104,7 +104,7 @@ install_arm() { *) echo -e "${red}Unsupported architecture.${rest}"; return ;; esac - WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.6-alpha/warp-linux-$ARCH.511125.zip" + WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.12-alpha/warp-linux-$ARCH.511125.zip" if wget "$WARP_URL" && unzip "warp-linux-$ARCH.511125.zip" && From 8f99c31366496ef383c3599ac518406b6fe94029 Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Tue, 6 Feb 2024 10:01:24 +0330 Subject: [PATCH 07/10] update termux.sh --- termux.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/termux.sh b/termux.sh index 05993b813..713eb17b9 100644 --- a/termux.sh +++ b/termux.sh @@ -68,12 +68,12 @@ install() { pacman -Syu openssh = apt update; apt full-upgrade -y; apt install -y openssh check_dependencies - if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.12-alpha/warp-android-arm64.511125.zip && - unzip warp-android-arm64.511125.zip && + if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.15-alpha/warp-android-arm64.918ea4.zip && + unzip warp-android-arm64.918ea4.zip && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-android-arm64.511125.zip" + rm "README.md" "LICENSE" "warp-android-arm64.918ea4.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks @@ -104,14 +104,14 @@ install_arm() { *) echo -e "${red}Unsupported architecture.${rest}"; return ;; esac - WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.12-alpha/warp-linux-$ARCH.511125.zip" + WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.15-alpha/warp-linux-$ARCH.918ea4.zip" if wget "$WARP_URL" && - unzip "warp-linux-$ARCH.511125.zip" && + unzip "warp-linux-$ARCH.918ea4.zip" && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-linux-$ARCH.511125.zip" + rm "README.md" "LICENSE" "warp-linux-$ARCH.918ea4.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks From 475d8f3114aa1e2a7574b5219f970b8c6d1ea23d Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Thu, 8 Feb 2024 09:45:01 +0330 Subject: [PATCH 08/10] update termux.sh --- termux.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/termux.sh b/termux.sh index 713eb17b9..5cd4beae8 100644 --- a/termux.sh +++ b/termux.sh @@ -68,12 +68,12 @@ install() { pacman -Syu openssh = apt update; apt full-upgrade -y; apt install -y openssh check_dependencies - if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.15-alpha/warp-android-arm64.918ea4.zip && - unzip warp-android-arm64.918ea4.zip && + if wget https://github.com/bepass-org/wireguard-go/releases/download/v0.0.16-alpha/warp-android-arm64.d950e9.zip && + unzip warp-android-arm64.d950e9.zip && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-android-arm64.918ea4.zip" + rm "README.md" "LICENSE" "warp-android-arm64.d950e9.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks @@ -104,14 +104,14 @@ install_arm() { *) echo -e "${red}Unsupported architecture.${rest}"; return ;; esac - WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.15-alpha/warp-linux-$ARCH.918ea4.zip" + WARP_URL="https://github.com/bepass-org/wireguard-go/releases/download/v0.0.16-alpha/warp-linux-$ARCH.d950e9.zip" if wget "$WARP_URL" && - unzip "warp-linux-$ARCH.918ea4.zip" && + unzip "warp-linux-$ARCH.d950e9.zip" && chmod +x warp && cp warp "$PREFIX/bin/usef" && cp warp "$PREFIX/bin/warp"; then - rm "README.md" "LICENSE" "warp-linux-$ARCH.918ea4.zip" + rm "README.md" "LICENSE" "warp-linux-$ARCH.d950e9.zip" echo "================================================" echo -e "${green}Warp installed successfully.${rest}" socks From c534d5badf7086483c93ebcbf31849b16b385793 Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:28:26 +0330 Subject: [PATCH 09/10] update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e14edf2e..a2c25f90d 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ bash <(curl -fsSL https://raw.githubusercontent.com/Ptechgithub/wireguard-go/mas - در روش warp به warp plus مقدار account id را وارد میکنید و با این کار هر 20 ثانیه 1 GB به اکانت شما اضافه میشود. - برای تغییر لوکیشن با استفاده از سایفون برای مثال به USA از دستور زیر استفاده کنید: - `warp -cfon -country US` - +- برای اسکن ای پی سالم وارپ از دستور `warp -scan` استفاده کنید. ## Contributing From 6eb2e37f1ab6f3ce70a8d80cdc4beae038635e43 Mon Sep 17 00:00:00 2001 From: Peyman <118217228+Ptechgithub@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:29:48 +0330 Subject: [PATCH 10/10] update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a2c25f90d..541cfd594 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,7 @@ bash <(curl -fsSL https://raw.githubusercontent.com/Ptechgithub/wireguard-go/mas - برای تغییر لوکیشن با استفاده از سایفون برای مثال به USA از دستور زیر استفاده کنید: - `warp -cfon -country US` - برای اسکن ای پی سالم وارپ از دستور `warp -scan` استفاده کنید. +- برای ترکیب (chain) دو کانفیگ برای تغییر لوکیشن از دستور `warp -gool` استفاده کنید. ## Contributing