Skip to content

Commit 965e2d0

Browse files
authored
Merge pull request #4873 from hiddify/dev
10.85.0b4
2 parents a840b58 + 219bff7 commit 965e2d0

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
needs:
7575
- make-upload-docker
7676
env:
77-
LATEST: "${{ github.ref_type == 'tag' && (endsWith(github.ref_name , 'dev') && 'beta' ||'latest') || 'dev' }}"
77+
LATEST: "${{ github.ref_type == 'tag' && (contains(github.ref_name, 'b') && 'beta' ||'latest') || 'dev' }}"
7878
steps:
7979
- name: Download digests
8080
uses: actions/download-artifact@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ jobs:
6565
uses: softprops/action-gh-release@v1
6666
with:
6767
files: "*.zip"
68-
prerelease: ${{ contains(github.ref_name,'dev') }}
68+
prerelease: ${{ contains(github.ref_name,'b') }}
6969
body_path: release_message.md
7070

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55

66
### Fix
77

8+
* Beta bug. [hiddify-com]
9+
10+
* Docker. [hiddify-com]
11+
12+
* Beta version. [hiddify-com]
13+
814
* Fixed location. [hiddify-com]
915

1016
* Docker issue, disable auto update by env variable. [hiddify-com]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.85.0b2
1+
10.85.0b4

common/docker-installer.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ sed -i "s/hiddify-manager:latest/hiddify-manager:$TAG/g" docker-compose.yml
3737
echo "REDIS_PASSWORD=$redispassword"> docker.env
3838
echo "MYSQL_PASSWORD=$mysqlpassword">> docker.env
3939

40-
cp docker.env .env
41-
4240
# Start the containers using Docker Compose
43-
docker compose up -d --pull
41+
docker compose pull
42+
docker compose up -d
4443

4544
# Follow the logs from the containers
4645
docker compose logs -f

common/hiddify_installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ fi
336336

337337

338338
export USE_VENV=310
339-
if [[ " $@ " == *" dev "* || " $@ " == *" docker "* || " $@ " == *" develop "* ]];then
339+
if [[ " $@ " == *" dev "* || " $@ " == *" docker "* || " $@ " == *" develop "* || " $@ " == *" beta "* ]];then
340340
export USE_VENV=313
341341
fi
342342

hiddify-panel/src

Submodule src updated from 4d00b73 to 8ab750c

xray/configs/06_outbounds.json.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@
103103
"tag": "DNS-Internal",
104104
"protocol": "dns",
105105
"settings": {
106-
"address": "{{hconfigs['dns_server'] or '1.1.1.1'}}",
107106
"port": 53
108107
}
109108
}

0 commit comments

Comments
 (0)