lume/src-tauri/capabilities/main.json

62 lines
1.3 KiB
JSON
Raw Normal View History

2024-02-06 12:28:46 +00:00
{
2024-02-16 02:58:07 +00:00
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "desktop-capability",
"description": "Capability for the desktop",
"platforms": ["linux", "macOS", "windows"],
2024-02-23 07:56:24 +00:00
"windows": [
"main",
"splash",
"editor",
"settings",
2024-03-10 09:39:23 +00:00
"nwc",
2024-03-11 08:36:17 +00:00
"zap-*",
2024-02-23 07:56:24 +00:00
"event-*",
"user-*",
"column-*"
],
2024-02-16 02:58:07 +00:00
"permissions": [
"path:default",
"event:default",
"window:default",
"app:default",
"resources:default",
"menu:default",
"tray:default",
"notification:allow-is-permission-granted",
"notification:allow-request-permission",
"notification:default",
"os:allow-locale",
"os:allow-platform",
"updater:allow-check",
"updater:default",
"window:allow-start-dragging",
"store:allow-get",
"clipboard-manager:allow-write",
"clipboard-manager:allow-read",
"webview:allow-create-webview-window",
2024-02-16 07:11:49 +00:00
"webview:allow-create-webview",
2024-02-23 07:56:24 +00:00
"dialog:allow-open",
"fs:allow-read-file",
2024-02-25 08:52:47 +00:00
"shell:allow-open",
2024-02-16 02:58:07 +00:00
{
"identifier": "http:default",
"allow": [
{
"url": "http://**/"
},
{
"url": "https://**/"
}
]
},
{
"identifier": "fs:allow-read-text-file",
"allow": [
{
"path": "$RESOURCE/locales/*"
}
]
}
]
2024-02-06 12:28:46 +00:00
}