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

112 lines
2.3 KiB
JSON
Raw Normal View History

2022-04-06 22:27:03 -04:00
{
"package": {
2022-04-14 00:26:38 -04:00
"productName": "opengoal-launcher",
2022-06-16 21:27:16 -04:00
"version": "0.2.3"
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"
],
2022-04-08 19:21:54 -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"
],
"resources": [
"data/"
],
"externalBin": [
"bin/extractor",
"bin/gk",
"bin/goalc",
"bin/glewinfo"
],
2022-04-06 22:27:03 -04:00
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"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/*"
]
},
"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
}
]
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,
"x": 1750,
"y": 0
2022-06-17 16:27:27 -04:00
},
{
"width": 600,
"height": 120,
"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,
"url": "splashscreen.html",
"label": "splashscreen",
2022-06-17 17:12:05 -04:00
"visible": true
2022-04-06 22:27:03 -04:00
}
],
"security": {
"csp": null
}
}
}