修复README格式问题

This commit is contained in:
2023-05-13 13:32:52 +08:00
parent b9fd45980f
commit a0b673afb0
4 changed files with 7 additions and 28 deletions

View File

@@ -23,7 +23,7 @@
"5、如果想要使用adb连接UEngine或其他手机请使用 1.2.0 以前的版本。如需连接UEngine请安装adb补丁"
],
"Update": [
"<b>V2.0.2</b>",
"<b>V2.1.0</b>",
"※1、修复源地址迁出 Gitlink",
"※2、优化 UEngine 安装器,可以在 Debian/Ubuntu 使用Debian11/Debian10/Ubuntu20.04 需要安装 dtk≥5.5dtk 可以从 https://gitee.com/gfdgd-xi/dtk-sources-for-uos-apt/releases 获取);",
"※3、UEngine 安装器不再强制安装 5.17.3 内核以运行 UEngine 运行环境,只要当前使用内核支持 binder 模块即可继续(安装前会进行检测,如果用 2.0.0/2.0.1 安装了 5.17.3 内核也可以继续使用该内核);",
@@ -249,7 +249,7 @@
"11、deepin 终端",
"……"
],
"Time": "2023-05-13 13:09:49 Linux-5.15.77-amd64-desktop-x86_64-with-Deepin-20.9-apricot",
"Time": "2023-05-13 13:28:55 Linux-5.15.77-amd64-desktop-x86_64-with-Deepin-20.9-apricot",
"Contribute": [
"<b>感谢以下用户提供的问题、建议、图标、代码等,如果有遗漏,请及时与开发者联系添加,以及如果侵犯到您的合法权益,也及时与开发者联系:</p>",
"<hr>",

View File

@@ -52,12 +52,6 @@ def OpenGiteeIssues():
def OpenGithubIssues():
webbrowser.open_new_tab("https://github.com/gfdgd-xi/uengine-runner/issues")
def OpenGitlinkIssues():
webbrowser.open_new_tab("https://www.gitlink.org.cn/gfdgd_xi/uengine-runner/issues")
def OpenProgramForum():
webbrowser.open_new_tab("https://bbs.racoongx.cn/t/bugs")
# 获取用户主目录
def get_home()->"获取用户主目录":
return os.path.expanduser('~')
@@ -85,13 +79,11 @@ updateButton = QtWidgets.QPushButton("提交")
otherUpload = QtWidgets.QHBoxLayout()
giteeButton = QtWidgets.QPushButton("Gitee Issues")
githubButton = QtWidgets.QPushButton("Github Issues")
gitlinkButton = QtWidgets.QPushButton("Gitlink Issues")
forumButton = QtWidgets.QPushButton("论坛反馈")
otherUpload.addWidget(QtWidgets.QLabel("如果无法正常反馈,可以用其他方式反馈:"))
otherUpload.addWidget(giteeButton)
otherUpload.addWidget(githubButton)
otherUpload.addWidget(gitlinkButton)
otherUpload.addWidget(forumButton)
#otherUpload.addWidget(gitlinkButton)
#otherUpload.addWidget(forumButton)
otherUpload.addSpacerItem(QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum))
starMenu.addItems(["5分", "4分", "3分", "2分", "1分"])
widgetLayout.addWidget(QtWidgets.QLabel("你的昵称:"), 0, 0, 1, 1)
@@ -106,9 +98,7 @@ widgetLayout.addLayout(otherUpload, 3, 0, 1, 5)
widgetLayout.addWidget(updateButton, 3, 5, 1, 1)
giteeButton.clicked.connect(OpenGiteeIssues)
githubButton.clicked.connect(OpenGithubIssues)
gitlinkButton.clicked.connect(OpenGitlinkIssues)
updateButton.clicked.connect(UpdateButtonClick)
forumButton.clicked.connect(OpenProgramForum)
widget.setLayout(widgetLayout)
window.setCentralWidget(widget)
window.setWindowTitle(f"UEngine 运行器 {version} 问题/建议反馈")