-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tauri.conf.json
111 lines (111 loc) · 2.65 KB
/
tauri.conf.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"build": {
"beforeBuildCommand": "pnpm build",
"beforeDevCommand": "pnpm dev",
"devPath": "http://localhost:5173",
"distDir": "./frontend/build"
},
"package": {
"productName": "zefirs-flashy-cooler",
"version": "0.1.0"
},
"tauri": {
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
"allowlist": {
"all": false,
"window": {
"all": false,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true
},
"shell": {
"all": false,
"open": true
},
"path": {
"all": true
},
"protocol": {
"asset": true,
"assetScope": [
"$DOCUMENT/Zefir's Flashy Cooler/Themes/**/*.jpg",
"$EXE/**/*"
]
},
"fs": {
"readFile": true,
"readDir": true
}
},
"bundle": {
"active": true,
"category": "Utility",
"copyright": "AGPL",
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.brunostjohn.zefirsflashycooler",
"publisher": "Bruno St John",
"longDescription": "Take your cooler to the next level with Zefir's Flashy Cooler and break free of manufacturers' restrictions.",
"resources": [
"./AppCore.dll",
"./resources/cacert.pem",
"./resources/icudt67l.dat",
"./Ultralight.dll",
"./UltralightCore.dll",
"./WebCore.dll"
],
"shortDescription": "Zefirs Flashy Cooler",
"targets": ["nsis", "updater"],
"windows": {
"webviewInstallMode": {
"type": "embedBootstrapper",
"silent": true
},
"nsis": {
"languages": ["English"],
"license": "../LICENSE",
"installerIcon": "./icons/installer.ico",
"sidebarImage": "./icons/installer-sidebar.bmp",
"headerImage": "./icons/installer-header.bmp",
"installMode": "perMachine"
}
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 800,
"label": "main",
"minHeight": 800,
"resizable": true,
"title": "Zefir's Flashy Cooler",
"width": 1130,
"minWidth": 1130,
"transparent": true,
"theme": "Dark",
"decorations": false
}
]
}
}