Skip to content

Commit b8e2770

Browse files
committed
Update Version
1 parent bce6c9f commit b8e2770

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Changelog.md

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

3+
## [v3.7.5](https://github.com/Jrohy/multi-v2ray/releases/tag/v3.7.5)(2019-11-29)
4+
- 加入生成随机邮箱 [#253](https://github.com/Jrohy/multi-v2ray/issues/253)
5+
- fix [#255](https://github.com/Jrohy/multi-v2ray/issues/255): 纯IPV6的vps获取SSL证书失败,acme.sh无法安装
6+
- fix [#256](https://github.com/Jrohy/multi-v2ray/issues/256)
7+
38
## [v3.7.4](https://github.com/Jrohy/multi-v2ray/releases/tag/v3.7.4)(2019-11-28)
49
- 测试支持纯ipv6 vps, 安装脚本路径更换
510

v2ray_util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '3.7.4.1'
1+
__version__ = '3.7.5'
22

33
from .util_core.trans import _

v2ray_util/util_core/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ def gen_cert(domain):
175175

176176
if not os.path.exists("/root/.acme.sh/acme.sh"):
177177
if ":" in get_ip():
178-
os.system("curl https://multi.netlify.com/tools/acme.sh | INSTALLONLINE=1 sh")
178+
if not os.path.exists("/root/.acme.sh/"):
179+
os.makedirs("/root/.acme.sh")
180+
os.system("curl https://multi.netlify.com/tools/acme.sh -o /root/.acme.sh/acme.sh")
179181
else:
180182
os.system("curl https://get.acme.sh | sh")
181183

0 commit comments

Comments
 (0)