Skip to content

Commit

Permalink
push v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
L-codes committed Jan 30, 2021
1 parent 7f578e0 commit 1a4f54d
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG-en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

### v2.5.0
Client: When detecting that the socks connection is closed, the session is automatically ended, reducing a lot of request traffic
Client: Optimized the output of exception information, and has been able to capture exceptions caused by high concurrency
Client: The document adds operating suggestions for the Mac OSX environment
Client: Adjust the default settings, the network traffic is reduced by about 46%
Client: Fix `--file` read complex file encoding escape problem

### v2.4.1
Added session expiration reminder
Adjust `askGeorg` detection request, timeout is 10 seconds
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

### v2.5.0
Client: 检测 socks 连接已关闭,则自动结束会话,减少大量请求流量
Client: 优化了异常信息输出,已能捕获高并发产生的异常
Client: 文档新增 Mac OSX 环境的运行建议
Client: 调整默认设置,流量减少约 46%
Client: 修复 `--file` 读取复杂文件编码转义问题

### v2.4.1
添加 Session 过期提示
调整 `askGeorg` 检测请求,timeout 为 10 秒
Expand Down
11 changes: 9 additions & 2 deletions README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Neo-reGeorg
Version
----

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


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



Remind
----

* 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.



TODO
----

Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Neo-reGeorg
Version
----

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



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


Remind
----

* Mac OSX 运行 `neoreg.py` 高并发会出现掉包情况,可通过 `ulimit -n 2560` 修改当前 shell 的 "最大文件打开数"



TODO
----

Expand Down
2 changes: 1 addition & 1 deletion neoreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = 'L'
__version__ = '2.4.1'
__version__ = '2.5.0'

import sys
import os
Expand Down

0 comments on commit 1a4f54d

Please sign in to comment.