Skip to content

Commit 7e32d62

Browse files
committed
apps add Chinese name
1 parent 0393c4b commit 7e32d62

File tree

12 files changed

+30
-12
lines changed

12 files changed

+30
-12
lines changed

projects/app_desktop_monitor/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id: desktop_monitor
22
name: Desktop Monitor
33
name[zh]: 桌面监视器
4-
version: 1.0.3
4+
version: 1.0.4
55
icon: assets/desktop_monitor.json
66
author: neucrack@Sipeed Ltd
77
desc: Monitoring PC info, or other info from internet or local.

projects/app_desktop_monitor/main.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
from maix import image, display
2+
3+
screen = display.Display()
4+
img = image.Image(screen.width(), screen.height())
5+
msg = "loading..."
6+
size = image.string_size(msg, scale=2, thickness=2)
7+
img.draw_string((img.width() - size.width()) // 2, (img.height() - size.height()) // 2, msg, image.COLOR_WHITE, scale=2, thickness=2)
8+
screen.show(img)
9+
del img
10+
111
import json
212
from datetime import datetime
3-
from maix import image, display, app, time
13+
from maix import app, time
414
from maix.touchscreen import TouchScreen
515
from threading import Thread
616
from desktop_monitor.util import get_pc_info
@@ -348,7 +358,6 @@ def main(screen):
348358

349359

350360
if __name__ == '__main__':
351-
screen = display.Display()
352361
try:
353362
main(screen)
354363
except Exception:

projects/app_face_recognizer/app.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
id: face_recognizer
22
name: Face Recognizer
3-
version: 1.0.1
3+
name[zh]: 人脸识别
4+
version: 1.0.2
45
author: Sipeed Ltd
56
icon: face.png
67
desc: Learn and recognize face.

projects/app_http_file_browser/app.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
id: http_file_browser
22
name: HTTP File Browser
3-
version: 1.1.4
3+
name[zh]: HTTP 文件浏览器
4+
version: 1.1.5
45
author: Neucrack@Sipeed
56
icon: icon.json
67
desc: Browse and download files though http(browser)

projects/app_human_pose/app.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
id: human_pose
22
name: Human Pose
3-
version: 1.0.0
3+
name[zh]: 人体姿态
4+
version: 1.0.1
45
author: Sipeed Ltd
56
icon: icon.json
67
desc: Detect human body 17 keypoints.

projects/app_maixhub_client/app.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
id: maixhub
22
name: MaixHub Client
3-
version: 1.0.1
3+
name: MaixHub 客户端
4+
version: 1.0.2
45
author: Sipeed
56
icon: app.png
67
desc: MaixHub client to collect image or deploy AI model etc.

projects/app_mouse_simulator/app.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
id: mouse
22
name: Mouse Simulator
3-
version: 1.0.0
3+
name[zh]: 鼠标模拟
4+
version: 1.0.1
45
author: Sipeed Ltd
56
icon: icon.png
67
desc: Simulate using a mouse to control the mouse

projects/app_rtsp/app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id: rtsp_stream
22
name: RTSP Stream
3-
name[zh]: RTSP Stream
4-
version: 1.0.0
3+
name[zh]: RTSP 推流
4+
version: 1.0.1
55
icon: assets/app.png
66
author: Sipeed Ltd
77
desc: RTSP stream

projects/app_self_learn_classifier/app.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
id: self_learn_classifier
22
name: Self Learn Classifier
3-
version: 1.0.3
3+
name[zh]: 自学习分类
4+
version: 1.0.4
45
author: Sipeed Ltd
56
icon: app.png
67
desc: Learn anything on device, no PC training needed.

projects/app_timelapse/app.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
id: timelapse
22
name: Timelapse
3+
name[zh]: 延时摄影
34
version: 1.0.3
45
icon: icon.png
56
author: Sipeed Ltd

0 commit comments

Comments
 (0)