Skip to content

Commit 65714fd

Browse files
committed
release 5.9.9 fix bug running in windows introduced from 5.9.7.
1 parent 24f753f commit 65714fd

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:rocket: XX-Net (翻墙VPN)
22
=========
3-
这是一个可靠的翻墙系统,已经连续运行 9 年!
3+
这是一个稳健可靠的翻墙系统,已经连续运行 9 年!
44
我们不去研究墙有什么缺陷,因为所有的缺陷都会被慢慢的补上。
55
我们的策略是化身为普通流量,完全无法区分,最终隐身在茫茫的网络连接中。。。
66

@@ -25,8 +25,12 @@
2525

2626

2727
### 最新公告:
28-
2024-02-14
29-
* 新版 5.9.7, 更新黑名单列表,更新智能路由策略。
28+
2024-02-25
29+
* 最新版5.9.9, 修复5.9.7智能策略更新的bug。
30+
* 5.9.0 升级GAE服务端到python3
31+
* 5.8.8 改进iOS下连接性能
32+
* 5.7.0 为X-Tunnel增加新通道
33+
* 5.6.0 重构代码,减少系统资源消耗
3034
* 5.1.0,内置ChatGPT
3135
* 原来是4.x.x 老版本的,需要重新下载新版安装,不能应用内升级。
3236

code/default/smart_router/local/gfwlist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ def load_banlist(self, fn):
109109
ip_masks = []
110110
keywords = []
111111
list_file = os.path.join(current_path, fn)
112-
with open(list_file, "r") as fd:
112+
with open(list_file, "rb") as fd:
113113
for line in fd.readlines():
114-
line = line.strip()
114+
line = utils.to_str(line.strip())
115115
if not line or line.startswith("#") or line.startswith("["):
116116
continue
117117

code/default/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.9.7
1+
5.9.9

0 commit comments

Comments
 (0)