Skip to content

Commit

Permalink
luci-app-ssr-plus: Optimal hy2 allocation
Browse files Browse the repository at this point in the history
目前代码:
1、取消端口跳跃时点击“保存和应用”无效,在右上角必须再次保存和应用,此修改修复此问题;
2、启用端口跳跃时,自动隐藏了节点设置的端口,导致服务器列表为乱码字符,此修改实现仍然显示节点端口。
3、此修改仍然显示节点端口并启用端口跳跃时,配置能改为端口跳跃设置的端口范围,如取消端口跳跃,配置改为节点端口;
  • Loading branch information
zxlhhyccc authored Jan 2, 2024
1 parent f0a3c45 commit 381baf9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ o:depends("type", "ss")
o:depends("type", "v2ray")
o:depends("type", "trojan")
o:depends("type", "naiveproxy")
o:depends({type = "hysteria",port_hopping = false})
o:depends("type", "hysteria")
o:depends("type", "tuic")
o:depends("type", "shadowtls")
o:depends("type", "socks5")
Expand Down Expand Up @@ -341,7 +341,7 @@ o.default = "30"

o = s:option(Value, "port_range", translate("Port Range"))
o:depends({type = "hysteria", port_hopping = true})
o.rmempty = false
o.rmempty = true

o = s:option(Flag, "lazy_mode", translate("Enable Lazy Mode"))
o:depends("type", "hysteria")
Expand Down

0 comments on commit 381baf9

Please sign in to comment.