diff --git a/README.md b/README.md index b2b8d49..46e93fe 100755 --- a/README.md +++ b/README.md @@ -15,12 +15,13 @@ ### 更新内容 #### V1.6.0(开学版,开学前一天完成) **※1、更换了新的图标已完成(感谢[@星空露光](https://gitee.com/Cynorkyle))** -**※2、支持程序的评分和查看分数详情的功能(如果炸了我的服务器,这个就作废了)** +**※2、支持程序的评分和查看分数详情的功能** **※3、修复了在安装奇奇怪怪的安装包(如格式、标识不正确的)时的快捷方式图标为空以及快捷方式文本的变化** -**※4、添加更新功能,可以自行升级到最新版本(如果炸了我的服务器,这个就作废了)** +**※4、添加更新功能,可以自行升级到最新版本** **※5、新增程序帮助** -6、新填彩蛋(在“关于”=>“关于”显示的窗口双击“关于”开启)(如果炸了我的服务器,这个就作废了) -7、修复了“UEngine 打包器”前缀选项勾选设置不生效的问题 +6、新填彩蛋(在“关于”=>“关于”显示的窗口双击“关于”开启) +7、修复了“UEngine 打包器”前缀选项勾选设置不生效的问题 +8、修复了“UEngine 打包器” 打包的安装包版本号带 V 无法打包的情况 ![1.6.0](https://storage.deepin.org/thread/202202122214208076_截图_选择区域_20220212221349.png) #### V1.5.3(2021-12-12,DDUC11版): diff --git a/build/DEBIAN/postinst b/build/DEBIAN/postinst index a2d80e1..4138656 100755 --- a/build/DEBIAN/postinst +++ b/build/DEBIAN/postinst @@ -4,6 +4,7 @@ python3 -m pip install --upgrade pip -i http://mirrors.aliyun.com/pypi/si python3 -m pip install --upgrade ttkthemes -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com python3 -m pip install --upgrade pyautogui -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com python3 -m pip install --upgrade keyboard -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com +python3 -m pip install --upgrade easygui -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com # 刷新图标缓存 gtk-update-icon-cache /usr/share/icons/bloom # 向服务器返回安装数加1(不显示内容且忽略错误) diff --git a/build/opt/apps/uengine-runner/uengine-apk-builder b/build/opt/apps/uengine-runner/uengine-apk-builder index 912707f..2f5756f 100755 --- a/build/opt/apps/uengine-runner/uengine-apk-builder +++ b/build/opt/apps/uengine-runner/uengine-apk-builder @@ -72,6 +72,10 @@ def BuildApkDeb(apkPath): else: apkPackageNameNew = GetApkPackageName(apkPath, False) apkPackageVersion = GetApkVersion(apkPath) + if apkPackageVersion[0].upper() == "V": + package = list(apkPackageVersion) + package.pop(0) + apkPackageVersion = "".join(package) apkChineseLabel = GetApkChineseLabel(apkPath) apkActivityName = GetApkActivityName(apkPath) iconSavePath = "{}/usr/share/uengine/icons/{}.png".format(tempPath, apkPackageNameNew) diff --git a/com.gitee.uengine.runner.spark.deb b/com.gitee.uengine.runner.spark.deb index 96ca697..7c0904f 100755 Binary files a/com.gitee.uengine.runner.spark.deb and b/com.gitee.uengine.runner.spark.deb differ diff --git a/new-deb-build/DEBIAN/postinst b/new-deb-build/DEBIAN/postinst index a0807ac..b2ed248 100755 --- a/new-deb-build/DEBIAN/postinst +++ b/new-deb-build/DEBIAN/postinst @@ -4,6 +4,7 @@ python3 -m pip install --upgrade pip -i http://mirrors.aliyun.com/pypi/si python3 -m pip install --upgrade ttkthemes -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com python3 -m pip install --upgrade pyautogui -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com python3 -m pip install --upgrade keyboard -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com +python3 -m pip install --upgrade easygui -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com # 建立软链接 ln -s /opt/apps/com.gitee.uengine.runner.spark/files/uengine-runner /usr/bin/uengine-runner ln -s /opt/apps/com.gitee.uengine.runner.spark/files/uengine-apk-builder /usr/bin/uengine-apk-builder diff --git a/new-deb-build/opt/apps/com.gitee.uengine.runner.spark/files/uengine-apk-builder b/new-deb-build/opt/apps/com.gitee.uengine.runner.spark/files/uengine-apk-builder index 912707f..2f5756f 100755 --- a/new-deb-build/opt/apps/com.gitee.uengine.runner.spark/files/uengine-apk-builder +++ b/new-deb-build/opt/apps/com.gitee.uengine.runner.spark/files/uengine-apk-builder @@ -72,6 +72,10 @@ def BuildApkDeb(apkPath): else: apkPackageNameNew = GetApkPackageName(apkPath, False) apkPackageVersion = GetApkVersion(apkPath) + if apkPackageVersion[0].upper() == "V": + package = list(apkPackageVersion) + package.pop(0) + apkPackageVersion = "".join(package) apkChineseLabel = GetApkChineseLabel(apkPath) apkActivityName = GetApkActivityName(apkPath) iconSavePath = "{}/usr/share/uengine/icons/{}.png".format(tempPath, apkPackageNameNew) diff --git a/spark-uengine-runner.deb b/spark-uengine-runner.deb index 89b67a2..d2c7432 100755 Binary files a/spark-uengine-runner.deb and b/spark-uengine-runner.deb differ diff --git a/uengine-apk-builder b/uengine-apk-builder index 912707f..2f5756f 100755 --- a/uengine-apk-builder +++ b/uengine-apk-builder @@ -72,6 +72,10 @@ def BuildApkDeb(apkPath): else: apkPackageNameNew = GetApkPackageName(apkPath, False) apkPackageVersion = GetApkVersion(apkPath) + if apkPackageVersion[0].upper() == "V": + package = list(apkPackageVersion) + package.pop(0) + apkPackageVersion = "".join(package) apkChineseLabel = GetApkChineseLabel(apkPath) apkActivityName = GetApkActivityName(apkPath) iconSavePath = "{}/usr/share/uengine/icons/{}.png".format(tempPath, apkPackageNameNew)