From 9c86d23d31ba02e169593c5191e28821304c379a Mon Sep 17 00:00:00 2001 From: gfdgd_xi <3025613752@qq.com> Date: Sun, 30 Apr 2023 13:26:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8D=A2=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Help/information/index.html | 17 +++++++---------- mainwindow.py | 15 ++++++++------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/Help/information/index.html b/Help/information/index.html index 39e6cf0..9617d1f 100755 --- a/Help/information/index.html +++ b/Help/information/index.html @@ -1,17 +1,14 @@ - Wine 运行器程序公告 + UEngine 运行器程序公告 -

针对在 Ubuntu 安装 UEngine 后狂刷通知的解答(UEngine Installer)

-

先用如下命令移除掉该组件(在终端输入),然后等待作者修复该问题:

-
s
-sudo rm /usr/share/applications/uengine-loading-ubuntu.desktop
-sudo rm /etc/xdg/autostart/uengine-loading-ubuntu.desktop
-sudo rm /usr/bin/uengine-loading-ubuntu
-

常见链接

-

程序论坛:https://gfdgdxi.flarum.cloud/

星火应用商店:https://spark-app.store/

+

点击这里从星火应用商店获取 UEngine 运行器


- \ No newline at end of file +
+

程序安装/打开量

+

+

+ diff --git a/mainwindow.py b/mainwindow.py index 4dba990..697a232 100755 --- a/mainwindow.py +++ b/mainwindow.py @@ -1153,7 +1153,7 @@ class UpdateWindow(): cancel.clicked.connect(UpdateWindow.update.close) ok.setDisabled(True) try: - UpdateWindow.data = json.loads(requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-update-information/raw/branch/master/uengine-runner/update.json").text) + UpdateWindow.data = json.loads(requests.get("http://update.gfdgdxi.top/uengine-runner/update.json").text) versionLabel = QtWidgets.QLabel(f"当前版本:{version}\n最新版本:{UpdateWindow.data['Version']}\n更新内容:") if UpdateWindow.data["Version"] == version: updateText.setText("此为最新版本,无需更新") @@ -1324,7 +1324,7 @@ class ApkInformation(): QtWidgets.QMessageBox.critical(widget, "错误", langFile[lang]["Main"]["MainWindow"]["Error"]["ApkFileError"]) return try: - data = json.loads(requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-downloads-of-runner/raw/branch/master/uengineapp/" + package +"/data.json").text) + data = json.loads(requests.get("http://data.download.gfdgdxi.top/uengineapp/" + package +"/data.json").text) print(data) except: QtWidgets.QMessageBox.information(widget, "提示", "此程序暂时没有评分,欢迎您贡献第一个评分!") @@ -1524,7 +1524,7 @@ class AddNewUengineDesktopLink(): def GetNewInformation(): try: - text = requests.get("https://code.gitlink.org.cn/gfdgd_xi/uengine-runner-list/raw/branch/master/information/index.html").text + text = requests.get("http://uengine-runner.gfdgdxi.top/information/index.html").text except: traceback.print_exc() text = """

无法连接到服务器

@@ -1696,10 +1696,10 @@ except: windowflag = "close" def Open(): try: - lists = json.loads(requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-downloads-of-runner/raw/branch/master/Open-UEngine/lists.json").text) + lists = json.loads(requests.get("https://data.download.gfdgdxi.top/Open-UEngine/lists.json").text) data = [] for i in lists: - data.append(int(requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-downloads-of-runner/raw/branch/master/Open-UEngine/{}.txt".format(i)).text)) + data.append(int(requests.get("https://data.download.gfdgdxi.top/Open-UEngine/{}.txt".format(i)).text)) except: QtWidgets.QMessageBox.critical(widget, "错误", "服务器出错!数据获取失败!") return @@ -1716,11 +1716,12 @@ def Open(): def Download(): try: - lists = json.loads(requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-downloads-of-runner/raw/branch/master/Install-UEngine/lists.json").text) + lists = json.loads(requests.get("https://data.download.gfdgdxi.top/Install-UEngine/lists.json").text) data = [] for i in lists: - data.append(int(requests.get("https://code.gitlink.org.cn/gfdgd_xi/wine-runner-downloads-of-runner/raw/branch/master/Install-UEngine/{}.txt".format(i)).text)) + data.append(int(requests.get("https://data.download.gfdgdxi.top/Install-UEngine/{}.txt".format(i)).text)) except: + traceback.print_exc() QtWidgets.QMessageBox.critical(widget, "错误", "服务器出错!数据获取失败!") return fig = matplotlib.pylab.figure()