Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
ef3409419a | |||
6aed0296ee | |||
022e2f1b53 | |||
27cf5b077a |
@ -1,5 +1,5 @@
|
||||
<p width=100px align="center"><img src="runner.svg"></p>
|
||||
<h1 align="center">UEngine 运行器 2.2.0</h1>
|
||||
<h1 align="center">UEngine 运行器 2.2.0.1</h1>
|
||||
<hr>
|
||||
<a href='https://gitee.com/gfdgd-xi/uengine-runner/stargazers'><img src='https://gitee.com/gfdgd-xi/uengine-runner/badge/star.svg?theme=dark' alt='star'></img></a>
|
||||
<a href='https://gitee.com/gfdgd-xi/uengine-runner/members'><img src='https://gitee.com/gfdgd-xi/uengine-runner/badge/fork.svg?theme=dark' alt='fork'></img></a>
|
||||
@ -15,6 +15,9 @@ Debian 10、Debian 11、Ubuntu 20.04 需要从 http://dtk.gfdgdxi.top/ 下载 dt
|
||||
|
||||
QQ 交流群:872491938
|
||||
|
||||
## 在 deepin 23 上安装缺失依赖?
|
||||
依赖下载地址:https://gfdgdxi.lanzv.com/b01rwfgtg 密码:648f
|
||||
|
||||
## 程序相关网站
|
||||
作者个人站:https://www.gfdgdxi.top
|
||||
查询 APK 运行情况:https://gfdgd-xi.github.io/uengine-runner-info/
|
||||
@ -83,6 +86,9 @@ sudo apt upgrade
|
||||

|
||||
|
||||
### 更新内容
|
||||
#### V2.2.0.1(2023年02月04日)
|
||||
**※1、解决 deepin 23 beta3 缺失依赖的问题**
|
||||
|
||||
#### V2.2.0(2023年01月30日)
|
||||
**※1、支持 deepin 23,不需要强制依赖 aapt**
|
||||
**※2、修复 deepin 23 安装的 APK 无法正常在启动器显示图标的问题**
|
||||
|
@ -4,6 +4,7 @@ try:
|
||||
import PIL.ImageDraw as ImageDraw
|
||||
except:
|
||||
os.system("python3 -m pip install --upgrade pillow --break-system-packages --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple")
|
||||
os.system("python3 -m pip install --upgrade pillow --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple")
|
||||
import PIL.Image as Image
|
||||
import PIL.ImageDraw as ImageDraw
|
||||
import zipfile
|
||||
|
@ -4,7 +4,7 @@
|
||||
"https://gitee.com/gfdgd-xi/uengine-runner",
|
||||
"https://github.com/gfdgd-xi/uengine-runner"
|
||||
],
|
||||
"Version": "2.2.0",
|
||||
"Version": "2.2.0.1",
|
||||
"System": "Linux(deepin/UOS/Ubuntu/Debian)",
|
||||
"Tips": [
|
||||
"更多可见:https://gitee.com/gfdgd-xi/uengine-runner/wikis 或程序的更多帮助",
|
||||
@ -22,6 +22,9 @@
|
||||
"5、如果想要使用adb连接UEngine或其他手机,请使用 1.2.0 以前的版本。(如需连接UEngine请安装adb补丁)"
|
||||
],
|
||||
"Update": [
|
||||
"<b>V2.2.0.1:</b>",
|
||||
"※1、解决 deepin 23 beta3 缺失依赖的问题",
|
||||
"",
|
||||
"<b>V2.2.0:</b>",
|
||||
"※1、支持 deepin 23,不需要强制依赖 aapt",
|
||||
"※2、修复 deepin 23 安装的 APK 无法正常在启动器显示图标的问题",
|
||||
|
@ -1,12 +1,12 @@
|
||||
Package: com.gitee.uengine.runner.spark
|
||||
Source: com.gitee.uengine.runner.spark
|
||||
Replaces: spark-uengine-runner, com.gitee.uengine.runner.spark.ubuntu
|
||||
Version: 2.2.0
|
||||
Version: 2.2.0.1
|
||||
Architecture: all
|
||||
Section: utils
|
||||
Installed-Size: 9384
|
||||
Maintainer: gfdgd xi <3025613752@qq.com>
|
||||
Depends: python3, python3-tk, python3-pip, python3-setuptools, deepin-terminal | mate-terminal | gnome-terminal | xfce4-terminal, curl, python3-pil, python3-requests, adb, fonts-noto-cjk, python3-numpy, wget, inotify-tools, aria2, python3-pyqt5, python3-matplotlib, python3-urllib3, zenity, python3-pil.imagetk
|
||||
Depends: python3, python3-tk, python3-pip, python3-setuptools, deepin-terminal | mate-terminal | gnome-terminal | xfce4-terminal, curl, python3-pil, python3-requests, adb, fonts-noto-cjk, python3-numpy, wget, aria2, python3-pyqt5, python3-matplotlib, python3-urllib3, zenity, python3-pil.imagetk
|
||||
Recommends: uengine, deepin-elf-verify, python3-pyqt5.qtwebengine, aapt
|
||||
Priority: optional
|
||||
Conflicts: spark-uengine-apk-builder, com.gitee.uengine.runner.spark.ubuntu, kbox
|
||||
|
@ -4,6 +4,7 @@ try:
|
||||
import PIL.ImageDraw as ImageDraw
|
||||
except:
|
||||
os.system("python3 -m pip install --upgrade pillow --break-system-packages --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple")
|
||||
os.system("python3 -m pip install --upgrade pillow --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple")
|
||||
import PIL.Image as Image
|
||||
import PIL.ImageDraw as ImageDraw
|
||||
import zipfile
|
||||
|
@ -4,7 +4,7 @@
|
||||
"https://gitee.com/gfdgd-xi/uengine-runner",
|
||||
"https://github.com/gfdgd-xi/uengine-runner"
|
||||
],
|
||||
"Version": "2.2.0",
|
||||
"Version": "2.2.0.1",
|
||||
"System": "Linux(deepin/UOS/Ubuntu/Debian)",
|
||||
"Tips": [
|
||||
"更多可见:https://gitee.com/gfdgd-xi/uengine-runner/wikis 或程序的更多帮助",
|
||||
@ -22,6 +22,9 @@
|
||||
"5、如果想要使用adb连接UEngine或其他手机,请使用 1.2.0 以前的版本。(如需连接UEngine请安装adb补丁)"
|
||||
],
|
||||
"Update": [
|
||||
"<b>V2.2.0.1:</b>",
|
||||
"※1、解决 deepin 23 beta3 缺失依赖的问题",
|
||||
"",
|
||||
"<b>V2.2.0:</b>",
|
||||
"※1、支持 deepin 23,不需要强制依赖 aapt",
|
||||
"※2、修复 deepin 23 安装的 APK 无法正常在启动器显示图标的问题",
|
||||
@ -274,7 +277,7 @@
|
||||
"11、deepin 终端",
|
||||
"……"
|
||||
],
|
||||
"Time": "2024-01-30 11:09:35 Linux-6.1.32-amd64-desktop-hwe-x86_64-with-glibc2.35",
|
||||
"Time": "2024-02-04 11:05:59 Linux-6.1.32-amd64-desktop-hwe-x86_64-with-glibc2.37",
|
||||
"Contribute": [
|
||||
"<b>感谢以下用户提供的问题、建议、图标、代码等,如果有遗漏,请及时与开发者联系添加,以及如果侵犯到您的合法权益,也及时与开发者联系:</p>",
|
||||
"<hr>",
|
||||
|
Loading…
x
Reference in New Issue
Block a user