domino-client/src-tauri/tauri.conf.json

85 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2024-07-18 23:52:33 +02:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build-only",
"beforeDevCommand": "npm run dev",
"devPath": "http://localhost:5173",
"distDir": "../dist"
},
"package": {
"productName": "domino-client",
2024-08-04 18:39:28 +02:00
"version": "0.2.1"
2024-07-18 23:52:33 +02:00
},
"tauri": {
"allowlist": {
2024-07-22 21:04:51 +02:00
"path": {
"all": true
},
"fs": {
2024-07-25 16:29:14 +02:00
"scope": {
"allow": ["$APPDATA/data/**", "$APPDATA/data/*", "$APPDATA/data", "$APPDATA/*"],
"requireLiteralLeadingDot": false
},
2024-07-22 21:04:51 +02:00
"all": true
}
2024-07-18 23:52:33 +02:00
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "net.xintanalabs.domino",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
2024-07-22 21:04:51 +02:00
"active": true,
"dialog": true,
"endpoints": [
"https://domserv.xintanalabs.net/api/updater/{{target}}/{{arch}}/{{current_version}}"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQwRTBDNUU1QzIyNEYzQUQKUldTdDh5VEM1Y1hnUVA2M01pcEZMbVltVUpuMlhpN09Rc3BnN1A3NC9BOGs5OE92MndRZzVXSm4K"
2024-07-18 23:52:33 +02:00
},
"windows": [
{
"fullscreen": false,
"height": 720,
"resizable": true,
2024-08-04 18:39:28 +02:00
"title": "Domino v0.2.1",
2024-07-18 23:52:33 +02:00
"width": 1280,
"minHeight": 720,
"minWidth": 1280,
"center": true,
"decorations": true
}
]
}
}