FCLauncher/FCLauncher/src-tauri/tauri.conf.json

61 lines
1.2 KiB
JSON
Raw Normal View History

2024-06-22 17:17:07 -06:00
{
"build": {
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
2024-06-23 20:46:15 -06:00
"productName": "FCLauncher",
2024-09-27 12:28:10 -06:00
"version": "1.0.5"
2024-06-22 17:17:07 -06:00
},
"tauri": {
"updater": {
"active": true,
"endpoints": [
"https://gitea.piwalker.net/fclauncher/app.json"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDNDOEUwMjYxRUU2NEI5RgpSV1NmUytZZUp1RElBN3dEaGhpWG9JZVNQcFlnNFFzaXN0UnBsVmxNeVdWWnJoQmh4cGJRbjN3Ygo="
},
2024-06-22 17:17:07 -06:00
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
2024-06-23 15:29:35 -06:00
},
"dialog": {
"all": false,
"ask": true,
2024-09-28 09:12:45 -06:00
"open": true,
"message": true
2024-07-14 08:44:16 -06:00
},
"process": {
"all": true
2024-06-22 17:17:07 -06:00
}
},
"windows": [
{
2024-06-23 20:46:15 -06:00
"title": "FCLauncher",
2024-06-24 08:15:12 -06:00
"width": 800,
"height": 600,
"resizable": false
2024-06-22 17:17:07 -06:00
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
2024-06-22 17:28:54 -06:00
"identifier": "net.piwalker",
2024-06-22 17:17:07 -06:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}