-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtauri.conf.json
79 lines (79 loc) · 2.22 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
{
"build": {
"beforeDevCommand": "trunk serve --log debug",
"beforeBuildCommand": "trunk build",
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
},
"bundle": {
"active": true,
"licenseFile": "../LICENSE",
"license": "MIT",
"targets": [
"app",
"deb",
"dmg",
"nsis",
"rpm"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"createUpdaterArtifacts": true,
"linux": {
"deb": {
"files": {
"/usr/share/licenses/mdns-browser/LICENSE": "../LICENSE"
}
}
}
},
"productName": "mdns-browser",
"version": "0.9.7",
"identifier": "com.github.hrzlgnm.mdns-browser",
"plugins": {
"updater": {
"windows": {
"installMode": "passive"
},
"endpoints": [
"https://mdns-browser-updates.knulp.home64.de/updates.json",
"https://mdns-browser-updates.knulp.v6.rocks/updates.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDIwQzYxQzI2MkI3NUI1RDgKUldUWXRYVXJKaHpHSUEvVmhlVGtNZW5HNXRNZ2xEREF3UkNtbXAxTW0zR0JJUVcveEhMZHFNMjgK"
}
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "mDNS-Browser",
"url": "index.html",
"width": 1600,
"height": 900,
"label": "main",
"visible": false
},
{
"title": "Splashscreen",
"url": "public/splashscreen.html",
"label": "splashscreen",
"width": 528,
"height": 297,
"decorations": false,
"resizable": false,
"transparent": true,
"visible": true,
"center": true,
"focus": false
}
],
"security": {
"csp": null
}
}
}