Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jrohy committed Nov 5, 2019
1 parent 570521a commit 5eb8177
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [v3.6.8](https://github.com/Jrohy/multi-v2ray/releases/tag/v3.6.8)(2019-11-05)
- 优化v2ray流量统计查看

## [v3.6.7](https://github.com/Jrohy/multi-v2ray/releases/tag/v3.6.7)(2019-10-03)
- 选择组时输入的字母不再区分大小写.

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)
2 changes: 1 addition & 1 deletion v2ray_util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '3.6.7'
__version__ = '3.6.8'

from .util_core.trans import _
5 changes: 1 addition & 4 deletions v2ray_util/global_setting/stats_ctr.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,24 +114,21 @@ def manage():
sf = StatsFactory(profile.stats.door_port)
print("")
for group in group_list:
tls = _("open") if group.tls == "tls" else _("close")
port_way = "-{}".format(group.end_port) if group.end_port else ""
for node in group.node_list:
print('''
Group: {group.tag}
IP: {color_ip}
Port: {group.port}{port_way}
TLS: {tls}
{node}
'''.format(group=group, color_ip=ColorStr.fuchsia(group.ip), node=node, tls=tls, port_way=port_way).strip())
'''.format(group=group, color_ip=ColorStr.fuchsia(group.ip), node=node, port_way=port_way).strip())
if node.user_info:
sf.get_stats(node.user_info, False)
sf.print_stats(horizontal=True)
else:
print(ColorStr.yellow(_("no effective email!!!")))
print("")


elif choice == "4":
sf = StatsFactory(profile.stats.door_port)
print("")
Expand Down

0 comments on commit 5eb8177

Please sign in to comment.