ace包支持

This commit is contained in:
2023-11-11 23:12:30 +08:00
parent 370bde5e63
commit 03942892fd
24 changed files with 267 additions and 4 deletions

10
GetProgramVersion.py Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
# 读取程序版本号
import os
import json
programPath = os.path.split(os.path.realpath(__file__))[0] # 返回 string
try:
with open(f"{programPath}/information.json") as file:
print(json.loads(file.read())["Version"])
except:
print("1.0.0")