修改DLL获取工具的地址

This commit is contained in:
gfdgd xi 2023-05-28 07:23:18 +08:00
parent 8a4a5f4ee3
commit 6397130bb2

@ -23,6 +23,7 @@ def exit():
sys.exit() sys.exit()
# 获取云列表 # 获取云列表
sourcesList = [ sourcesList = [
"http://dll.wine-runner.gfdgdxi.top",
"https://code.gitlink.org.cn/gfdgd_xi/wine-runner-list/raw/branch/master/dlls", "https://code.gitlink.org.cn/gfdgd_xi/wine-runner-list/raw/branch/master/dlls",
"http://gfdgdxi.msns.cn/wine-runner-list/dlls" "http://gfdgdxi.msns.cn/wine-runner-list/dlls"
] ]
@ -31,7 +32,8 @@ print("获取列表中……", end="")
try: try:
lists = json.loads(requests.get(f"{url}/list.json").text) lists = json.loads(requests.get(f"{url}/list.json").text)
except: except:
print("\r列表获取失败!") print("\r列表获取失败!按回车键退出")
input()
exit() exit()
print("\r列表获取成功!") print("\r列表获取成功!")