Skip to content

Commit

Permalink
release 5.9.9 fix bug running in windows introduced from 5.9.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-X-Net committed Feb 25, 2024
1 parent 24f753f commit 65714fd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:rocket: XX-Net (翻墙VPN)
=========
这是一个可靠的翻墙系统,已经连续运行 9 年!
这是一个稳健可靠的翻墙系统,已经连续运行 9 年!
我们不去研究墙有什么缺陷,因为所有的缺陷都会被慢慢的补上。
我们的策略是化身为普通流量,完全无法区分,最终隐身在茫茫的网络连接中。。。

Expand All @@ -25,8 +25,12 @@


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

Expand Down
4 changes: 2 additions & 2 deletions code/default/smart_router/local/gfwlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ def load_banlist(self, fn):
ip_masks = []
keywords = []
list_file = os.path.join(current_path, fn)
with open(list_file, "r") as fd:
with open(list_file, "rb") as fd:
for line in fd.readlines():
line = line.strip()
line = utils.to_str(line.strip())
if not line or line.startswith("#") or line.startswith("["):
continue

Expand Down
2 changes: 1 addition & 1 deletion code/default/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.9.7
5.9.9

0 comments on commit 65714fd

Please sign in to comment.