Compare commits

..

3 Commits

Author SHA1 Message Date
github-actions[bot]
761ce8f670 update 2024-11-09 01:24:38 2024-11-09 01:24:38 +08:00
github-actions[bot]
961257bf7b update 2024-11-09 00:49:39 2024-11-09 00:49:39 +08:00
Ing
a0d47860d3 更新 menu.sh,修复 changePorts 2024-11-09 00:47:04 +08:00
9 changed files with 812 additions and 66 deletions

View File

@ -1 +1 @@
24.11.0
24.11.1

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -1,4 +1,4 @@
RR_VERSION="24.11.0"
RR_VERSION="24.11.1"
RR_RELEASE=""
RR_TITLE="RR v${RR_VERSION}"

View File

@ -2661,6 +2661,7 @@ function changePorts() {
HTTP=$(grep -i '^HTTP_PORT=' /etc/rrorg.conf 2>/dev/null | cut -d'=' -f2)
DUFS=$(grep -i '^DUFS_PORT=' /etc/rrorg.conf 2>/dev/null | cut -d'=' -f2)
TTYD=$(grep -i '^TTYD_PORT=' /etc/rrorg.conf 2>/dev/null | cut -d'=' -f2)
while true; do
DIALOG --title "$(TEXT "Settings")" \
--form "${MSG}" 11 70 3 "HTTP" 1 1 "${HTTP:-7080}" 1 10 55 0 "DUFS" 2 1 "${DUFS:-7304}" 2 10 55 0 "TTYD" 3 1 "${TTYD:-7681}" 3 10 55 0 \
2>"${TMP_PATH}/resp"
@ -2729,6 +2730,7 @@ function changePorts() {
break
;;
esac
done
return
}

View File

@ -1 +1 @@
24.11.0
24.11.1