This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtauri.conf.json
107 lines (107 loc) · 2.73 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
{
"build": {
"distDir": "../dist/pwa",
"devPath": "http://localhost:3009",
"beforeDevCommand": "",
"beforeBuildCommand": ""
},
"tauri": {
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "subspace-desktop",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [],
"externalBin": [],
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"deb": {
"depends": []
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"exceptionDomain": "http://localhost:3009",
"signingIdentity": null,
"entitlements": "entitlements.plist"
},
"windows": {
"certificateThumbprint": "FCA030AC3840FAED48ADC5A8F734ACFCC857DF37",
"digestAlgorithm": "sha256",
"timestampUrl": "http://timestamp.comodoca.com"
}
},
"updater": {
"active": true,
"endpoints": [
"https://tauri-updater.subspace.network/v1/{{target}}/{{arch}}/{{current_version}}"
],
"dialog": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDU4OTU2Qjc2QUFERTE4RjcKUldUM0dONnFkbXVWV0huTEN1bEZveUpZb1pXd0NOOFd1OXYvSUk2RjJRRnR6QUltelNaZXl2MTQK"
},
"allowlist": {
"dialog": {
"all": true
},
"globalShortcut": {
"all": true
},
"notification": {
"all": true
},
"os": {
"all": true
},
"path": {
"all": true
},
"process": {
"relaunch": true,
"exit": true
},
"clipboard": {
"all": true
},
"shell": {
"execute": true,
"open": false,
"scope": [
{
"name": "run-osascript",
"cmd": "osascript",
"args": ["-e", { "validator": "tell application \"System Events\" to (get the name of every login item|delete login item \\S+|make login item at end with properties \\{path:\\S+, hidden:\\S+, name:\\S+\\})" }]
}
]
},
"window": {
"all": true
}
},
"windows": [
{
"title": "Subspace Desktop",
"minWidth": 800,
"minHeight": 600,
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": "default-src tauri 'self'; img-src 'self'; object-src 'none'; connect-src ws://localhost:9947/; script-src 'wasm-unsafe-eval' 'unsafe-eval' 'self'"
}
}
}