新增程序评分功能

This commit is contained in:
gfdgd xi 2022-12-06 21:24:50 +08:00
parent 8a7010529d
commit 27eb980190
3 changed files with 7 additions and 3 deletions

View File

@ -8,7 +8,7 @@
# 基于 Python3 的 tkinter 构建 # 基于 Python3 的 tkinter 构建
########################################################################################### ###########################################################################################
cd `dirname $0` cd `dirname $0`
which VBoxManage1 which VBoxManage
if test $? == 0 ; then if test $? == 0 ; then
VM/VirtualMachine VM/VirtualMachine
exit exit

View File

@ -2272,13 +2272,14 @@ updateThingsString = transla.transe("U", '''※1、支持使用 Qemu + Chroot
2提供了简易打包器以用于打包简易 deb 2提供了简易打包器以用于打包简易 deb
3支持下载配置过的 Qemu + Chroot 容器 3支持下载配置过的 Qemu + Chroot 容器
4支持解压指定 deb 的内打包好的容器 4支持解压指定 deb 的内打包好的容器
5优化 Wine 列表显示 5优化 Wine 列表显示
6优化非基于生态适配脚本的打包器内容自动填充功能 6优化非基于生态适配脚本的打包器内容自动填充功能
7新增程序论坛和教程入口 7新增程序论坛和教程入口
8优化程序文案 8优化程序文案
9新增日志翻译功能 9新增日志翻译功能
10程序进一步完善英语翻译机翻 10程序进一步完善英语翻译机翻
11优化程序更新策略 11优化程序更新策略
12新增程序评分功能
''') ''')
for i in information["Thank"]: for i in information["Thank"]:
thankText += f"{i}\n" thankText += f"{i}\n"
@ -2774,6 +2775,7 @@ h3 = QtWidgets.QAction(transla.transe("U", "更新内容"))
h4 = QtWidgets.QAction(transla.transe("U", "谢明名单")) h4 = QtWidgets.QAction(transla.transe("U", "谢明名单"))
h5 = QtWidgets.QAction(transla.transe("U", "更新这个程序")) h5 = QtWidgets.QAction(transla.transe("U", "更新这个程序"))
h6 = QtWidgets.QAction(transla.transe("U", "反馈这个程序的建议和问题")) h6 = QtWidgets.QAction(transla.transe("U", "反馈这个程序的建议和问题"))
fenUpload = QtWidgets.QAction(transla.transe("U", "程序评分"))
h7 = QtWidgets.QAction(transla.transe("U", "关于这个程序")) h7 = QtWidgets.QAction(transla.transe("U", "关于这个程序"))
h8 = QtWidgets.QAction(transla.transe("U", "关于 Qt")) h8 = QtWidgets.QAction(transla.transe("U", "关于 Qt"))
gfdgdxiio = QtWidgets.QAction(transla.transe("U", "作者个人站")) gfdgdxiio = QtWidgets.QAction(transla.transe("U", "作者个人站"))
@ -2808,6 +2810,7 @@ videoHelp.addAction(buildHelp)
help.addSeparator() help.addSeparator()
help.addAction(h5) help.addAction(h5)
help.addAction(h6) help.addAction(h6)
help.addAction(fenUpload)
help.addAction(h7) help.addAction(h7)
help.addAction(h8) help.addAction(h8)
help.addSeparator() help.addSeparator()
@ -2831,6 +2834,7 @@ easyHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://www.bilibili
buildHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://www.bilibili.com/video/BV1EU4y1k7zr")) buildHelp.triggered.connect(lambda: webbrowser.open_new_tab("https://www.bilibili.com/video/BV1EU4y1k7zr"))
h5.triggered.connect(UpdateWindow.ShowWindow) h5.triggered.connect(UpdateWindow.ShowWindow)
h6.triggered.connect(WineRunnerBugUpload) h6.triggered.connect(WineRunnerBugUpload)
fenUpload.triggered.connect(lambda: threading.Thread(target=os.system, args=[f"python3 '{programPath}/ProgramFen.py'"]).start())
h7.triggered.connect(about_this_program) h7.triggered.connect(about_this_program)
h8.triggered.connect(lambda: QtWidgets.QMessageBox.aboutQt(widget)) h8.triggered.connect(lambda: QtWidgets.QMessageBox.aboutQt(widget))
hm1_1.triggered.connect(lambda: webbrowser.open_new_tab("https://gitee.com/gfdgd-xi/uengine-runner")) hm1_1.triggered.connect(lambda: webbrowser.open_new_tab("https://gitee.com/gfdgd-xi/uengine-runner"))