diff --git a/ConfigLanguareRunner.py b/ConfigLanguareRunner.py index ac6c728..3be518b 100755 --- a/ConfigLanguareRunner.py +++ b/ConfigLanguareRunner.py @@ -446,10 +446,12 @@ class Command(): return self.Bat() def InstallApk(self): + if os.system("which uengine > /dev/null"): + print("未安装 UEngine,无法使用该命令") + return 1 apk = uengineapi.APK(self.command[1]) result = apk.install() homePath = os.getenv("HOME") - if not os.path.exists(f"{homePath}/.local/share/applications/uengine"): os.makedirs(f"{homePath}/.local/share/applications/uengine") if not os.path.exists(f"{homePath}/.local/share/icons/hicolor/apps"): diff --git a/information.json b/information.json index 70d96dc..127cbfb 100644 --- a/information.json +++ b/information.json @@ -1,8 +1,9 @@ { "Version": "3.1.0", "Thank": [ + "感谢 @Amber 编写的《使用wine运行器打包无安装包的软件》:https://bbs.deepin.org/post/247720", "感谢 @豪 提供程序图标", - "感谢 @鹤舞白沙 对程序文案进行优化以及编写《Wine运行器和Wine打包器傻瓜式使用教程(小白专用) 》", + "感谢 @鹤舞白沙 对程序文案进行优化以及编写《Wine运行器和Wine打包器傻瓜式使用教程(小白专用) 》:https://bbs.deepin.org/post/246837", "感谢 @璀璨星空 提供的彩蛋图标", "感谢 @Bail 反馈的更新策略问题", "感谢 @白水 反馈的安装 exagear 后无法识别和调用 box86 的问题", diff --git a/uengineapi/__init__.py b/uengineapi/__init__.py index 6fab935..abd242c 100755 --- a/uengineapi/__init__.py +++ b/uengineapi/__init__.py @@ -362,8 +362,8 @@ class UengineRunner: if __name__ == "__main__": print("本 API 不支持直接运行,请通过引入的方式使用此 API") - adb = Adb("192.168.250.2:5555") - print(adb.boolAndroidInstallOtherAppSetting()) + #adb = Adb("192.168.250.2:5555") + #print(adb.boolAndroidInstallOtherAppSetting()) quit()