-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtauri.conf.json
More file actions
87 lines (86 loc) · 2.13 KB
/
tauri.conf.json
File metadata and controls
87 lines (86 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://schema.tauri.app/config/2.0.0",
"productName": "三术",
"version": "0.5.4",
"identifier": "com.yuaotian.sanshu",
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"frontendDist": "./dist",
"devUrl": "http://localhost:5176"
},
"app": {
"windows": [
{
"title": "三术",
"width": 600,
"height": 800,
"minWidth": 600,
"minHeight": 400,
"maxWidth": 4096,
"maxHeight": 4096,
"center": true,
"visible": true,
"alwaysOnTop": true,
"decorations": true,
"hiddenTitle": true,
"transparent": false,
"skipTaskbar": false,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null,
"capabilities": [
{
"identifier": "main-capability",
"description": "Main window capabilities",
"windows": [
"main"
],
"permissions": [
"core:event:allow-listen",
"core:event:allow-unlisten",
"core:event:allow-emit",
"core:window:allow-show",
"core:window:allow-hide",
"core:window:allow-close",
"core:window:allow-minimize",
"core:window:allow-set-focus",
"core:window:allow-set-always-on-top",
"core:webview:allow-set-webview-focus",
"core:webview:allow-webview-position",
"core:webview:allow-webview-size",
"shell:allow-open",
"updater:allow-check",
"updater:allow-download",
"updater:allow-install"
]
}
]
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon-32.png",
"icons/icon-128.png",
"icons/icon-256.png",
"icons/icon-512.png",
"icons/icon.ico",
"icons/icon.icns"
]
},
"plugins": {
"updater": {
"active": true,
"endpoints": [
"https://api.github.com/repos/yuaotian/sanshu/releases/latest"
],
"dialog": false,
"pubkey": ""
}
}
}