opengoal-launcher/src-tauri/tauri.conf.json

120 lines
2.5 KiB
JSON

{
"package": {
"productName": "OpenGOAL-Launcher",
"version": "1.5.0"
},
"build": {
"distDir": "../dist",
"devPath": "http://localhost:3000/",
"beforeDevCommand": "npm run package && npm run dev",
"beforeBuildCommand": "npm run package && npm run build"
},
"tauri": {
"bundle": {
"active": true,
"targets": [
"msi",
"appimage",
"updater"
],
"appimage": {
"bundleMediaFramework": true
},
"identifier": "OpenGOAL-Launcher",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"data/"
],
"externalBin": [
"bin/extractor",
"bin/gk",
"bin/goalc",
"bin/glewinfo"
],
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"allowlist": {
"all": true,
"fs": {
"scope": [
"$APP/",
"$APP/iso/*",
"$APP/*",
"$APP/**/*",
"$RESOURCE/**/*"
]
},
"shell": {
"scope": [
{
"name": "bin/extractor",
"sidecar": true,
"cmd": "ignored",
"args": true
},
{
"name": "bin/gk",
"sidecar": true,
"cmd": "ignored",
"args": true
},
{
"name": "bin/goalc",
"sidecar": true,
"cmd": "ignored",
"args": true
},
{
"name": "bin/glewinfo",
"sidecar": true,
"cmd": "ignored",
"args": true
}
]
}
},
"windows": [
{
"title": "OpenGOAL Launcher",
"width": 800,
"height": 600,
"resizable": false,
"fullscreen": false,
"visible": false,
"center": true,
"decorations": false
},
{
"title": "OpenGOAL Launcher - Splash",
"width": 200,
"height": 300,
"center": true,
"decorations": false,
"transparent": true,
"resizable": false,
"fullscreen": false,
"url": "./src/splash/index.html",
"label": "splashscreen",
"visible": true
}
],
"security": {
"csp": null
}
}
}