Skip to content

Commit

Permalink
fix app name error and update version to 4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Nov 29, 2024
1 parent 7e32d62 commit 4e0e85c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ CMakeLists.txt
!*/**/CMakeLists.txt
tools/tmp/
tools/os/tmp/
tools/os/tmp2/
tools/os/img_root/
tools/os/img_boot/
projects/apps/
4 changes: 2 additions & 2 deletions maix/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Versions should comply with PEP440: https://peps.python.org/pep-0440/

version_major = 4
version_minor = 7
version_patch = 8
version_minor = 8
version_patch = 0

__version__ = "{}.{}.{}".format(version_major, version_minor, version_patch)
2 changes: 1 addition & 1 deletion projects/app_maixhub_client/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: maixhub
name: MaixHub Client
name: MaixHub 客户端
name[zh]: MaixHub 客户端
version: 1.0.2
author: Sipeed
icon: app.png
Expand Down
2 changes: 1 addition & 1 deletion projects/app_yolov8_seg/app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: yolo11_seg
name: YOLO11 Seg
name: YOLO11 分割
name[zh]: YOLO11 分割
version: 1.0.2
author: Sipeed Ltd
icon: icon.png
Expand Down
2 changes: 1 addition & 1 deletion tools/os/base_system_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20241021
20241129
2 changes: 2 additions & 0 deletions tools/os/gen_os.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ if [ $board_name == "maixcam-pro" ]; then
else
cp "tmp/sys_builtin_files/boot/boards/board.maixcam" "tmp/sys_builtin_files/boot/board"
fi
# 8.2 因为 boot分区不能拷贝文件夹,将 boards 文件夹拷贝到 /maixapp/boards,等第一次开机脚本复制到 boot 分区
cp -r "tmp/sys_builtin_files/boot/boards" "tmp/sys_builtin_files/maixapp/"

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

0 comments on commit 4e0e85c

Please sign in to comment.