修复虚拟机工具在检测到 Qemu 磁盘但没有安装 Qemu 时无法启动的问题

This commit is contained in:
gfdgd xi 2023-08-09 14:54:53 +08:00
parent 226db3dfd6
commit 7794df8170
2 changed files with 12 additions and 10 deletions

View File

@ -14,7 +14,8 @@ if [[ 0 == $? ]]; then
exit
fi
# 检查是否有 QEMU
if [[ -f "$HOME/Qemu/Windows/Windows.qcow2" ]]; then
which qemu-system-x86_64
if [[ $? == 0 ]] && [[ -f "$HOME/Qemu/Windows/Windows.qcow2" ]]; then
if [[ -f "$HOME/.config/deepin-wine-runner/QemuSetting.json" ]]; then
echo 有设置文件,读设置文件
cd `dirname $0`

View File

@ -2548,15 +2548,16 @@ updateThingsString = transla.transe("U", '''※1、修复简易打包器无法
4高级打包器支持导出/导入填写信息
5Deepin 23 支持使用 Winetricks
6新增视频教程入库
7高级打包器支持隐藏输入框以及使用小字体
8打包器提供 bcm dcm wine 支持
9修复星火 wine 配置错误问题
10打包器支持多线程打包
11修复升级工具问题https://gitee.com/gfdgd-xi/uengine-runner/issues/I6ZRZX
12跟进打包器 run.sh 模板
13云沙箱新增 cloud.vdnel.cn
14打包器新增分类 GameSystemAudioVideo
15修复安装 Box64 时源里没有 libc6:armhf 导致无法安装的问题''')
7修复虚拟机工具在检测到 Qemu 磁盘但没有安装 Qemu 时无法启动的问题
8高级打包器支持隐藏输入框以及使用小字体
9打包器提供 bcm dcm wine 支持
10修复星火 wine 配置错误问题
11打包器支持多线程打包
12修复升级工具问题https://gitee.com/gfdgd-xi/uengine-runner/issues/I6ZRZX
13跟进打包器 run.sh 模板
14云沙箱新增 cloud.vdnel.cn
15打包器新增分类 GameSystemAudioVideo
16修复安装 Box64 时源里没有 libc6:armhf 导致无法安装的问题''')
for i in information["Thank"]:
thankText += f"{i}\n"
updateTime = "2023年08月09日"