diff --git a/api/__pycache__/__init__.cpython-37.pyc b/api/__pycache__/__init__.cpython-37.pyc
index 175249d..2bd853a 100644
Binary files a/api/__pycache__/__init__.cpython-37.pyc and b/api/__pycache__/__init__.cpython-37.pyc differ
diff --git a/information.json b/information.json
index b414804..a5c0dee 100755
--- a/information.json
+++ b/information.json
@@ -23,6 +23,14 @@
"5、如果想要使用adb连接UEngine或其他手机,请使用 1.2.0 以前的版本。(如需连接UEngine请安装adb补丁)"
],
"Update": [
+ "V1.8.2:",
+ "※1、重新恢复 uengine-installer For Ubuntu",
+ "※2、修复 postrm 的问题",
+ "※3、修复“添加UEngine应用快捷方式出现问题”的问题",
+ "※4、修复打包器无参数问题",
+ "5、修复Python主版本号判断时潜在的问题(By Bail)",
+ "6、新增部分资源入口",
+ "",
"V1.8.1-1:",
"※1、修复缺失依赖 python3-matplotlib 导致程序无法开启的问题",
"※2、移除在 Ubuntu 上用于安装 UEngine 的安装工具",
@@ -194,6 +202,7 @@
"Contribute": [
"感谢以下用户提供的问题、建议、图标、代码等,如果有遗漏,请及时与开发者联系添加,以及如果侵犯到您的合法权益,也及时与开发者联系:
",
"
",
+ "感谢 Bail Pr 修复Python主版本号判断时潜在的问题的补丁",
"感谢 麻木法师(1312580754) 在星火应用商店QQ交流群展示的接口及其原理",
"感谢 Bail(https://github.com/BailPlus) 修复的函数未输入密码自动回车的 bug",
"感谢 actionchen(917981399@qq.com) 提供了新版页面布局(1.3.0 ~ 最新版本)以及布局代码(1.3.0 ~ 1.7.0)",
diff --git a/mainwindow.py b/mainwindow.py
index f4bbe05..0fe2796 100755
--- a/mainwindow.py
+++ b/mainwindow.py
@@ -1925,12 +1925,18 @@ uengineBuildRootUengineImage.triggered.connect(BuildRootUengineImage)
uengineReinstallUengineImage.triggered.connect(ReinstallUengineImage)
helpOpenProgramUrl = QtWidgets.QAction(langFile[lang]["Main"]["MainWindow"]["Menu"][3]["Menu"][0])
+makerWebsize = QtWidgets.QAction("作者个人站")
+helpForum = QtWidgets.QAction("程序论坛")
+uengineRunnerSearch = QtWidgets.QAction("查询指定程序在 UEngine 的运行情况")
helpUengineRunnerBugUpload = QtWidgets.QAction(langFile[lang]["Main"]["MainWindow"]["Menu"][3]["Menu"][2])
helpShowHelp = QtWidgets.QAction(langFile[lang]["Main"]["MainWindow"]["Menu"][3]["Menu"][4])
helpRunnerUpdate = QtWidgets.QAction(langFile[lang]["Main"]["MainWindow"]["Menu"][3]["Menu"][3])
helpAbout = QtWidgets.QAction(langFile[lang]["Main"]["MainWindow"]["Menu"][3]["Menu"][1])
helpAboutQt = QtWidgets.QAction(langFile[lang]["Main"]["MainWindow"]["Menu"][3]["Menu"][5])
help.addAction(helpOpenProgramUrl)
+help.addAction(uengineRunnerSearch)
+help.addAction(makerWebsize)
+help.addAction(helpForum)
help.addAction(helpUengineRunnerBugUpload)
help.addAction(helpShowHelp)
help.addAction(helpRunnerUpdate)
@@ -1942,6 +1948,9 @@ hm1.addAction(hm1_1)
hm1_1.triggered.connect(lambda: webbrowser.open_new_tab("https://gitee.com/gfdgd-xi/deep-wine-runner"))
# 绑定信号
helpOpenProgramUrl.triggered.connect(OpenProgramURL)
+uengineRunnerSearch.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgd-xi.github.io/uengine-runner-info/"))
+makerWebsize.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgd-xi.github.io"))
+helpForum.triggered.connect(lambda: webbrowser.open_new_tab("https://gfdgdxi.flarum.cloud/"))
helpUengineRunnerBugUpload.triggered.connect(UengineRunnerBugUpload)
helpShowHelp.triggered.connect(ShowHelp)
helpRunnerUpdate.triggered.connect(UpdateWindow.ShowWindow)
diff --git a/new-deb-build/DEBIAN/control b/new-deb-build/DEBIAN/control
index 585ea50..3ece531 100755
--- a/new-deb-build/DEBIAN/control
+++ b/new-deb-build/DEBIAN/control
@@ -1,7 +1,7 @@
Package: com.gitee.uengine.runner.spark
Source: com.gitee.uengine.runner.spark
Replaces: spark-uengine-runner, com.gitee.uengine.runner.spark.ubuntu
-Version: 1.8.1-1
+Version: 1.8.2
Architecture: all
Section: utils
Installed-Size: 1600
@@ -11,7 +11,7 @@ Recommends: uengine, deepin-elf-verify (>= 0.0.16.7-1)
Priority: optional
Conflicts: spark-uengine-apk-builder, com.gitee.uengine.runner.spark.ubuntu
Homepage: [https://gitee.com/gfdgd-xi/uengine-runner, https://github.com/gfdgd-xi/uengine-runner, https://www.gitlink.org.cn/gfdgd_xi/uengine-runner]
-Description: UEngine 运行器,1.8.1-1 更新内容:
+Description: UEngine 运行器,1.8.2 更新内容:
1、修复依赖缺失导致程序无法开启的问题
1.8.1更新内容:
※1、修复在 APK 详细信息中图标可能过大导致无法正常使用的问题