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

99 lines
2.1 KiB
JSON
Raw Normal View History

2022-04-06 22:27:03 -04:00
{
"package": {
"productName": "OpenGOAL-Launcher",
2023-03-31 20:31:30 -04:00
"version": "2.0.5"
2022-04-06 22:27:03 -04:00
},
"build": {
"distDir": "../dist",
2022-04-08 18:37:16 -04:00
"devPath": "http://localhost:3000/",
"beforeDevCommand": "npm run package && npm run dev",
"beforeBuildCommand": "npm run package && npm run build"
2022-04-06 22:27:03 -04:00
},
"tauri": {
"bundle": {
"active": true,
"targets": [
"msi",
"appimage",
"updater"
],
2022-09-17 21:12:25 -04:00
"appimage": {
2023-03-12 17:10:31 -04:00
"bundleMediaFramework": true
2022-09-17 21:12:25 -04:00
},
"identifier": "OpenGOAL-Launcher",
2022-04-06 22:27:03 -04:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"bin/glewinfo"
],
2022-04-06 22:27:03 -04:00
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
}
2022-04-06 22:27:03 -04:00
}
},
"allowlist": {
2022-04-08 23:05:23 -04:00
"all": true,
"fs": {
2022-04-09 18:18:28 -04:00
"scope": [
"$APP/",
"$APP/iso/*",
"$APP/*",
"$APP/**/*",
"$RESOURCE/**/*"
2022-04-09 18:18:28 -04:00
]
},
"shell": {
"scope": [
{
"name": "bin/glewinfo",
"sidecar": true,
"cmd": "ignored",
"args": true
}
]
2022-04-08 23:05:23 -04:00
}
2022-04-06 22:27:03 -04:00
},
"windows": [
{
2022-04-08 18:37:16 -04:00
"title": "OpenGOAL Launcher",
2022-04-06 22:27:03 -04:00
"width": 800,
"height": 600,
2022-04-08 18:37:16 -04:00
"resizable": false,
"fullscreen": false,
"visible": false,
"center": true,
"decorations": false
2022-06-17 16:27:27 -04:00
},
{
"title": "OpenGOAL Launcher - Splash",
"width": 200,
"height": 300,
2022-06-17 16:27:27 -04:00
"center": true,
"decorations": false,
2022-06-17 17:12:05 -04:00
"transparent": true,
2022-06-17 16:27:27 -04:00
"resizable": false,
"fullscreen": false,
2022-06-18 14:36:28 -04:00
"url": "./src/splash/index.html",
2022-06-17 16:27:27 -04:00
"label": "splashscreen",
2022-06-17 17:12:05 -04:00
"visible": true
2022-04-06 22:27:03 -04:00
}
],
"security": {
"csp": null
}
}
}