-
Notifications
You must be signed in to change notification settings - Fork 10
/
tauri.conf.json
101 lines (101 loc) · 2.17 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
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
"productName": "Cardo",
"version": "1.9.2"
},
"tauri": {
"updater": {
"active": true,
"endpoints": [
"https://github.com/cardo-podcast/cardo/releases/latest/download/latest.json"
],
"dialog": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDdDODExNjU4QTczOUZDMUIKUldRYi9EbW5XQmFCZkdydnVrZ1dWQ0NBR2NMckRpLzBOam5HNzBOcUk0U3VLNTc3b21FKytDeksK"
},
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": "^((.*config.json)|(https?://\\w+))"
},
"window": {
"all": true
},
"http": {
"all": true,
"scope": [
"https://*",
"http://*"
]
},
"path": {
"all": true
},
"fs": {
"all": true,
"scope": [
"$APPCACHE/**",
"$APPCONFIG/**",
"$RESOURCE/**"
]
},
"os": {
"all": true
},
"globalShortcut": {
"all": true
},
"protocol": {
"asset": true,
"assetScope": [
"$APPCACHE/Downloads/**"
]
}
},
"windows": [
{
"label": "main",
"title": "Cardo",
"width": 900,
"height": 675,
"decorations": false,
"transparent": true,
"minWidth": 700,
"minHeight": 500
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "cardo",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"../resources/**"
],
"windows": {
"certificateThumbprint": "adc7a1a8a7219a69236cc8b14d061771154d68b3",
"digestAlgorithm": "sha256",
"timestampUrl": "http://timestamp.comodoca.com"
},
"macOS": {
"license": "LICENSE",
"signingIdentity": "-"
}
}
}
}