lume/src-tauri/tauri.conf.json

128 lines
2.9 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
2023-04-22 10:56:09 +00:00
"devPath": "http://localhost:3000",
2023-04-23 02:56:31 +00:00
"distDir": "../dist/client",
2023-02-21 07:58:47 +00:00
"withGlobalTauri": true
},
"package": {
"productName": "Lume",
2023-04-15 02:08:10 +00:00
"version": "0.2.5"
2023-02-21 07:58:47 +00:00
},
"tauri": {
"allowlist": {
"all": false,
2023-03-14 03:57:51 +00:00
"app": {
2023-03-27 13:28:26 +00:00
"all": false
2023-03-14 03:57:51 +00:00
},
"os": {
"all": true
},
2023-03-19 00:52:43 +00:00
"http": {
"all": true,
2023-03-19 00:52:43 +00:00
"request": true,
"scope": ["https://rbr.bio/*", "https://void.cat/*", "https://metadata.lume.nu/*"]
},
"fs": {
"all": false,
"readFile": true,
"readDir": true,
"scope": [
"$APPDATA/*",
"$DATA/*",
"$LOCALDATA/*",
"$DESKTOP/*",
"$DOCUMENT/*",
"$DOWNLOAD/*",
"$HOME/*",
"$PICTURE/*",
"$PUBLIC/*",
"$VIDEO/*"
]
2023-03-19 00:52:43 +00:00
},
2023-02-21 07:58:47 +00:00
"shell": {
"all": false,
"open": true
},
"clipboard": {
2023-03-27 13:28:26 +00:00
"all": false,
"writeText": true,
"readText": true
},
"dialog": {
"all": false,
"open": true
},
"notification": {
2023-03-27 13:28:26 +00:00
"all": false
},
2023-02-21 07:58:47 +00:00
"window": {
2023-03-27 04:28:57 +00:00
"startDragging": true,
"close": true
2023-02-21 07:58:47 +00:00
}
},
"bundle": {
"active": true,
2023-02-24 00:54:39 +00:00
"category": "SocialNetworking",
2023-02-21 07:58:47 +00:00
"copyright": "",
2023-04-01 01:20:13 +00:00
"appimage": {
"bundleMediaFramework": true
},
2023-02-21 07:58:47 +00:00
"deb": {
"depends": []
},
"externalBin": [],
2023-02-25 14:02:56 +00:00
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
2023-04-19 03:13:34 +00:00
"identifier": "com.lume.nu",
2023-02-21 07:58:47 +00:00
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
2023-04-21 10:52:10 +00:00
"csp": "upgrade-insecure-requests"
2023-02-21 07:58:47 +00:00
},
"updater": {
2023-04-19 03:13:34 +00:00
"active": true,
"endpoints": ["https://releases.lume.nu/{{target}}/{{arch}}/{{current_version}}"],
"dialog": true,
2023-04-20 02:47:02 +00:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDIyOUI0Qjc1MTBCOUNGNUEKUldSYXo3a1FkVXViSWxYTlhhS0E4UjRIcEkzd04yN1Y0dys4QWY5WjRybEF5eElLcGFXZmJnRzQK",
2023-04-19 03:13:34 +00:00
"windows": {
"installMode": "passive"
}
2023-02-21 07:58:47 +00:00
},
2023-02-25 14:02:56 +00:00
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
2023-02-21 07:58:47 +00:00
"windows": [
{
2023-03-28 12:44:25 +00:00
"title": "Lume",
2023-02-21 07:58:47 +00:00
"theme": "Dark",
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"transparent": false,
"fullscreen": false,
"resizable": true,
"width": 1100,
"height": 800,
2023-03-28 13:04:14 +00:00
"minWidth": 1000,
"minHeight": 700
2023-02-21 07:58:47 +00:00
}
]
}
}