Skip to content

Commit 92452f2

Browse files
committed
* 支持aarch64 AppImage打包
1 parent a3f291e commit 92452f2

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# 更新日志
22

3-
## JadeV2.3.2 - 2024-7-18
4-
* 输出easycython进程
3+
## JadeV2.3.3 - 2024-7-18
4+
* 支持aarch64 AppImage打包
55
---
66

77
<details onclose>
88
<summary>查看更多更新日志</summary>
99

10+
## JadeV2.3.2 - 2024-7-18
11+
* 输出easycython进程
12+
---
13+
1014
## JadeV2.3.1 - 2024-06-18
1115
* 优化获取版本信息的方法
1216
---

jade/jade_packing.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -932,9 +932,8 @@ def packAppImage(args):
932932
"X-AppImage-Version=912fe1b\n\n\n"
933933
"Name[zh_CN]={}".format("1.1", get_app_name(args), get_app_name(args), get_app_name(args)))
934934
os.system("chmod a+x {}".format(os.path.join(save_path, get_app_name(args) + ".desktop")))
935-
print("{}/appimagetool-x86_64.AppImage {} {}.AppImage".format(os.path.expanduser("~"), "tmp", get_app_name(args)))
936-
os.system(
937-
"{}/appimagetool-x86_64.AppImage {} {}.AppImage".format(os.path.expanduser("~"), "tmp", get_app_name(args)))
935+
print("{}/appimagetool-{}.AppImage {} {}.AppImage".format(os.path.expanduser("~"), platform.machine(), "tmp", get_app_name(args)))
936+
os.system("{}/appimagetool-{}.AppImage {} {}.AppImage".format(os.path.expanduser("~"),platform.machine(), "tmp", get_app_name(args)))
938937
os.system("chmod a+x {}.AppImage".format(get_app_name(args)))
939938
return "{}.AppImage".format(get_app_name(args))
940939

0 commit comments

Comments
 (0)