Skip to content

Commit 4e0e85c

Browse files
committed
fix app name error and update version to 4.8.0
1 parent 7e32d62 commit 4e0e85c

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ CMakeLists.txt
175175
!*/**/CMakeLists.txt
176176
tools/tmp/
177177
tools/os/tmp/
178+
tools/os/tmp2/
178179
tools/os/img_root/
179180
tools/os/img_boot/
180181
projects/apps/

maix/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Versions should comply with PEP440: https://peps.python.org/pep-0440/
33

44
version_major = 4
5-
version_minor = 7
6-
version_patch = 8
5+
version_minor = 8
6+
version_patch = 0
77

88
__version__ = "{}.{}.{}".format(version_major, version_minor, version_patch)

projects/app_maixhub_client/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: maixhub
22
name: MaixHub Client
3-
name: MaixHub 客户端
3+
name[zh]: MaixHub 客户端
44
version: 1.0.2
55
author: Sipeed
66
icon: app.png

projects/app_yolov8_seg/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: yolo11_seg
22
name: YOLO11 Seg
3-
name: YOLO11 分割
3+
name[zh]: YOLO11 分割
44
version: 1.0.2
55
author: Sipeed Ltd
66
icon: icon.png

tools/os/base_system_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20241021
1+
20241129

tools/os/gen_os.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ if [ $board_name == "maixcam-pro" ]; then
141141
else
142142
cp "tmp/sys_builtin_files/boot/boards/board.maixcam" "tmp/sys_builtin_files/boot/board"
143143
fi
144+
# 8.2 因为 boot分区不能拷贝文件夹,将 boards 文件夹拷贝到 /maixapp/boards,等第一次开机脚本复制到 boot 分区
145+
cp -r "tmp/sys_builtin_files/boot/boards" "tmp/sys_builtin_files/maixapp/"
144146

145147
# 9. 拷贝 tmp/sys_builtin_files 生成新镜像,通过 ./update_img.sh tmp/sys_builtin_files tmp/os_version_str.img
146148
./update_img.sh tmp/sys_builtin_files "tmp/$os_version_str.img"

0 commit comments

Comments
 (0)