chore: update to paqet v1.0.0-alpha.14

- Bump PAQET_VERSION_PINNED to v1.0.0-alpha.14 in paqctl.sh (both outer and embedded scripts)
- Update Windows client version in paqet-client.ps1
- Update all version references in README.md (English and Farsi)
- Add ARM 32-bit (armv7) architecture support to detect_arch functions
- Update README platform tables to include ARM 32-bit downloads
This commit is contained in:
SamNet-dev
2026-02-05 01:09:54 -06:00
parent 6ab630f679
commit a4f5b033b3
3 changed files with 34 additions and 30 deletions

View File

@@ -32,7 +32,7 @@ fi
VERSION="1.0.0"
# Pinned versions for stability (update these after testing new releases)
PAQET_VERSION_PINNED="v1.0.0-alpha.13"
PAQET_VERSION_PINNED="v1.0.0-alpha.14"
XRAY_VERSION_PINNED="v26.2.4"
GFK_VERSION_PINNED="v1.0.0"
@@ -293,9 +293,10 @@ detect_arch() {
case "$arch" in
x86_64|amd64) echo "amd64" ;;
aarch64|arm64) echo "arm64" ;;
armv7l|armv7|armhf) echo "arm32" ;;
*)
log_error "Unsupported architecture: $arch"
log_error "Paqet supports amd64 and arm64 only"
log_error "Paqet supports amd64, arm64, and arm32 only"
exit 1
;;
esac
@@ -1896,7 +1897,7 @@ create_management_script() {
VERSION="1.0.0"
# Pinned versions for stability (update these after testing new releases)
PAQET_VERSION_PINNED="v1.0.0-alpha.13"
PAQET_VERSION_PINNED="v1.0.0-alpha.14"
XRAY_VERSION_PINNED="v26.2.4"
GFK_VERSION_PINNED="v1.0.0"
@@ -2179,6 +2180,7 @@ detect_arch() {
case "$arch" in
x86_64|amd64) echo "amd64" ;;
aarch64|arm64) echo "arm64" ;;
armv7l|armv7|armhf) echo "arm32" ;;
*)
log_error "Unsupported architecture: $arch"
return 1