Files
BongoCat/src-tauri/tauri.conf.json

75 lines
1.9 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "BongoCat",
"version": "../package.json",
"identifier": "com.ayangweb.BongoCat",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"label": "main",
"title": "BongoCat",
"url": "index.html/#/",
"width": 408,
"height": 236,
"shadow": false,
"alwaysOnTop": true,
"transparent": true,
"decorations": false,
"acceptFirstMouse": true,
"skipTaskbar": true
},
{
"label": "preference",
"title": "偏好设置",
"url": "index.html/#/preference",
"width": 600,
"height": 450,
"resizable": false,
"maximizable": false,
"titleBarStyle": "Overlay",
"hiddenTitle": true
}
],
"security": {
"csp": null,
"dangerousDisableAssetCspModification": true,
"assetProtocol": {
"enable": true,
"scope": {
"allow": ["**/*"],
"requireLiteralLeadingDot": false
}
}
}
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": ["nsis", "dmg", "app", "appimage", "deb", "rpm"],
"shortDescription": "BongoCat",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": ["assets/tray.png", "assets/logo.png"]
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEVBRjJFMzE3MjEwMUZEMTAKUldRUS9RRWhGK1B5NmdkemhKcUFrVjZBQXlzdExpakdWVEJDeU9XckVsbzV2cFIycVJOempWa2UK",
"endpoints": [
"https://github.com/ayangweb/BongoCat/releases/latest/download/latest.json"
]
}
}
}