Skip to content

Commit 1a4f54d

Browse files
committed
push v2.5.0
1 parent 7f578e0 commit 1a4f54d

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

CHANGELOG-en.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
### v2.5.0
4+
Client: When detecting that the socks connection is closed, the session is automatically ended, reducing a lot of request traffic
5+
Client: Optimized the output of exception information, and has been able to capture exceptions caused by high concurrency
6+
Client: The document adds operating suggestions for the Mac OSX environment
7+
Client: Adjust the default settings, the network traffic is reduced by about 46%
8+
Client: Fix `--file` read complex file encoding escape problem
9+
310
### v2.4.1
411
Added session expiration reminder
512
Adjust `askGeorg` detection request, timeout is 10 seconds

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
### v2.5.0
4+
Client: 检测 socks 连接已关闭,则自动结束会话,减少大量请求流量
5+
Client: 优化了异常信息输出,已能捕获高并发产生的异常
6+
Client: 文档新增 Mac OSX 环境的运行建议
7+
Client: 调整默认设置,流量减少约 46%
8+
Client: 修复 `--file` 读取复杂文件编码转义问题
9+
310
### v2.4.1
411
添加 Session 过期提示
512
调整 `askGeorg` 检测请求,timeout 为 10 秒

README-en.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Neo-reGeorg
1515
Version
1616
----
1717

18-
2.4.1 - [Change Log](CHANGELOG-en.md)
18+
2.5.0 - [Change Log](CHANGELOG-en.md)
1919

2020

2121
Features
@@ -155,14 +155,21 @@ $ python neoreg.py -h
155155
--local-dns Use local resolution DNS
156156
--read-buff Bytes Local read buffer, max data to be sent per
157157
POST.(default: 2048 max: 2600)
158-
--read-interval MS Read data interval in milliseconds.(default: 100)
158+
--read-interval MS Read data interval in milliseconds.(default: 500)
159159
--max-threads N Proxy max threads.(default: 1000)
160160
-v Increase verbosity level (use -vv or more for greater
161161
effect)
162162
```
163163

164164

165165

166+
Remind
167+
----
168+
169+
* When running `neoreg.py` with high concurrency on Mac OSX, a large number of network requests will be lost. You can use `ulimit -n 2560` to modify the "maximum number of open files" of the current shell.
170+
171+
172+
166173
TODO
167174
----
168175

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Neo-reGeorg
1515
Version
1616
----
1717

18-
2.4.1 - [版本修改日志](CHANGELOG.md)
18+
2.5.0 - [版本修改日志](CHANGELOG.md)
1919

2020

2121

@@ -155,13 +155,20 @@ $ python neoreg.py -h
155155
--local-dns Use local resolution DNS
156156
--read-buff Bytes Local read buffer, max data to be sent per
157157
POST.(default: 2048 max: 2600)
158-
--read-interval MS Read data interval in milliseconds.(default: 100)
158+
--read-interval MS Read data interval in milliseconds.(default: 500)
159159
--max-threads N Proxy max threads.(default: 1000)
160160
-v Increase verbosity level (use -vv or more for greater
161161
effect)
162162
```
163163

164164

165+
Remind
166+
----
167+
168+
* Mac OSX 运行 `neoreg.py` 高并发会出现掉包情况,可通过 `ulimit -n 2560` 修改当前 shell 的 "最大文件打开数"
169+
170+
171+
165172
TODO
166173
----
167174

neoreg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
__author__ = 'L'
5-
__version__ = '2.4.1'
5+
__version__ = '2.5.0'
66

77
import sys
88
import os

0 commit comments

Comments
 (0)