Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-06-16 08:22:56 +0300
committerGitHub <noreply@github.com>2025-06-16 08:22:56 +0300
commitdff4ad31ff7b4a743173841ea80ec849bb4bd51e (patch)
tree9f1ea1a61568614277b8a0b357501b302612379e
parent13baf778931929fdf1bc1f7d5606c7d73d5d917e (diff)
chore: up minimal xray-core version to v25.6.8
-rw-r--r--.github/workflows/release.yml2
-rwxr-xr-xDockerInit.sh2
-rw-r--r--web/service/server.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 1f019498..b249622d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -97,7 +97,7 @@ jobs:
cd x-ui/bin
# Download dependencies
- Xray_URL="https://github.com/XTLS/Xray-core/releases/download/v25.5.16/"
+ Xray_URL="https://github.com/XTLS/Xray-core/releases/download/v25.6.8/"
if [ "${{ matrix.platform }}" == "amd64" ]; then
wget -q ${Xray_URL}Xray-linux-64.zip
unzip Xray-linux-64.zip
diff --git a/DockerInit.sh b/DockerInit.sh
index c55cea94..ecbe756a 100755
--- a/DockerInit.sh
+++ b/DockerInit.sh
@@ -27,7 +27,7 @@ case $1 in
esac
mkdir -p build/bin
cd build/bin
-wget -q "https://github.com/XTLS/Xray-core/releases/download/v25.5.16/Xray-linux-${ARCH}.zip"
+wget -q "https://github.com/XTLS/Xray-core/releases/download/v25.6.8/Xray-linux-${ARCH}.zip"
unzip "Xray-linux-${ARCH}.zip"
rm -f "Xray-linux-${ARCH}.zip" geoip.dat geosite.dat
mv xray "xray-linux-${FNAME}"
diff --git a/web/service/server.go b/web/service/server.go
index bbdc8989..1e29990f 100644
--- a/web/service/server.go
+++ b/web/service/server.go
@@ -295,7 +295,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
continue
}
- if major > 25 || (major == 25 && minor > 3) || (major == 25 && minor == 3 && patch >= 3) {
+ if major > 25 || (major == 25 && minor > 6) || (major == 25 && minor == 6 && patch >= 8) {
versions = append(versions, release.TagName)
}
}