lume/src-tauri/tauri.conf.json

149 lines
2.8 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
2023-06-18 04:24:57 +00:00
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:3000",
2023-06-24 11:31:40 +00:00
"distDir": "../dist",
2023-06-18 04:24:57 +00:00
"withGlobalTauri": true
},
"package": {
"productName": "Lume",
2023-07-27 02:25:47 +00:00
"version": "1.1.1"
2023-06-18 04:24:57 +00:00
},
"tauri": {
"allowlist": {
"all": false,
"app": {
"all": false
},
"os": {
"all": true
},
"http": {
"all": true,
"request": true,
2023-06-25 08:50:34 +00:00
"scope": ["http://**", "https://**"]
2023-06-18 04:24:57 +00:00
},
"fs": {
"all": false,
"readFile": true,
"readDir": true,
"writeFile": true,
2023-07-27 02:02:04 +00:00
"removeFile": true,
2023-06-18 04:24:57 +00:00
"scope": [
"$APPDATA/*",
"$DATA/*",
"$LOCALDATA/*",
"$DESKTOP/*",
"$DOCUMENT/*",
"$DOWNLOAD/*",
"$HOME/*",
"$PICTURE/*",
"$PUBLIC/*",
"$VIDEO/*"
]
},
2023-07-09 09:55:25 +00:00
"path": {
"all": true
},
2023-06-18 04:24:57 +00:00
"shell": {
"all": false,
"open": true
},
"clipboard": {
"all": false,
"writeText": true,
"readText": true
},
"dialog": {
"all": false,
"open": true
},
"notification": {
"all": true
},
"window": {
"startDragging": true,
2023-07-17 10:00:01 +00:00
"close": true,
"create": true
2023-06-18 04:24:57 +00:00
},
"process": {
"all": false,
"exit": false,
"relaunch": true,
"relaunchDangerousAllowSymlinkMacos": false
}
},
"bundle": {
"active": true,
"category": "SocialNetworking",
"copyright": "",
"appimage": {
"bundleMediaFramework": true
},
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.lume.nu",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": "upgrade-insecure-requests"
},
"updater": {
"active": true,
2023-07-05 02:03:39 +00:00
"dialog": true,
2023-06-18 04:24:57 +00:00
"endpoints": [
2023-07-05 02:46:03 +00:00
"https://lus.reya3772.workers.dev/v1/{{target}}/{{arch}}/{{current_version}}",
"https://lus.reya3772.workers.dev/{{target}}/{{current_version}}"
2023-06-18 04:24:57 +00:00
],
2023-07-05 01:43:53 +00:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEU4RjAzODFBREQ4MkM3RTEKUldUaHg0TGRHamp3NkI5bnhoOEVjanlHWFNzQ2Q3NDhubFFLUmJpSHJ1L2FqNnB3alF1Y2R3U3gK",
2023-06-18 04:24:57 +00:00
"windows": {
"installMode": "passive"
}
},
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
"windows": [
{
"title": "Lume",
"theme": "Dark",
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"transparent": false,
"fullscreen": false,
"resizable": true,
"width": 1080,
"height": 800,
"minWidth": 1080,
"minHeight": 720
}
]
}
2023-02-21 07:58:47 +00:00
}