-
-
Notifications
You must be signed in to change notification settings - Fork 717
Expand file tree
/
Copy pathbuild.json
More file actions
65 lines (65 loc) · 1.6 KB
/
Copy pathbuild.json
File metadata and controls
65 lines (65 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"entry": "main.py",
"name": "py-xiaozhi",
"display_name": "小智",
"version": "2.1.1",
"icon": "assets/icon.png",
"pyinstaller": {
"onefile": false,
"windowed": true,
"add_data": [
"models:models",
"scripts:scripts",
"src:src",
"libs:libs",
"assets:assets"
],
"clean": true,
"noconfirm": true
},
"platforms": {
"macos": {
"bundle_identifier": "com.py-xiaozhi.app",
"minimum_system_version": "10.13",
"category": "public.app-category.productivity",
"microphone_usage_description": "此应用需要访问麦克风以实现录音功能",
"speech_recognition_usage_description": "此应用需要使用语音识别功能以理解语音指令",
"camera_usage_description": "此应用需要访问摄像头以实现拍照或视频功能",
"copyright": "© 2024 Company. All rights reserved.",
"dmg": {
"volname": "小智 安装器",
"window_size": [
600,
450
],
"icon_size": 100,
"format": "UDZO"
}
},
"windows": {
"inno_setup": {
"create_desktop_icon": true,
"create_start_menu_icon": true,
"allow_run_after_install": true,
"languages": [
"chinesesimplified",
"english"
]
},
"pyinstaller": {
"contents_directory": "."
}
},
"linux": {
"deb": {
"package": "py-xiaozhi",
"section": "utils",
"priority": "optional",
"desktop_entry": true,
"categories": [
"Utility"
]
}
}
}
}