mirror of
https://github.com/lumehq/lume.git
synced 2025-03-26 09:41:48 +01:00
* feat: adjust default window size * feat: save window state * feat: add window state plugin * feat: add search * feat: use negentropy for newsfeed * feat: live feeds * feat: add search user
92 lines
2.1 KiB
JSON
92 lines
2.1 KiB
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "desktop-capability",
|
|
"description": "Capability for the desktop",
|
|
"platforms": [
|
|
"linux",
|
|
"macOS",
|
|
"windows"
|
|
],
|
|
"windows": [
|
|
"main",
|
|
"panel",
|
|
"settings",
|
|
"search-*",
|
|
"zap-*",
|
|
"event-*",
|
|
"user-*",
|
|
"editor-*"
|
|
],
|
|
"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",
|
|
"os:allow-os-type",
|
|
"updater:default",
|
|
"updater:allow-check",
|
|
"updater:allow-download-and-install",
|
|
"window:allow-start-dragging",
|
|
"window:allow-create",
|
|
"window:allow-close",
|
|
"window:allow-destroy",
|
|
"window:allow-set-focus",
|
|
"window:allow-center",
|
|
"window:allow-minimize",
|
|
"window:allow-maximize",
|
|
"window:allow-set-size",
|
|
"window:allow-set-focus",
|
|
"window:allow-start-dragging",
|
|
"decorum:allow-show-snap-overlay",
|
|
"clipboard-manager:allow-write-text",
|
|
"clipboard-manager:allow-read-text",
|
|
"webview:allow-create-webview-window",
|
|
"webview:allow-create-webview",
|
|
"webview:allow-set-webview-size",
|
|
"webview:allow-set-webview-position",
|
|
"webview:allow-webview-close",
|
|
"dialog:allow-open",
|
|
"dialog:allow-ask",
|
|
"dialog:allow-message",
|
|
"process:allow-restart",
|
|
"process:allow-exit",
|
|
"fs:allow-read-file",
|
|
"theme:allow-set-theme",
|
|
"theme:allow-get-theme",
|
|
"menu:allow-new",
|
|
"menu:allow-popup",
|
|
"http:default",
|
|
"shell:allow-open",
|
|
{
|
|
"identifier": "http:default",
|
|
"allow": [
|
|
{
|
|
"url": "http://**/"
|
|
},
|
|
{
|
|
"url": "https://**/"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"identifier": "fs:allow-read-text-file",
|
|
"allow": [
|
|
{
|
|
"path": "$RESOURCE/locales/*"
|
|
},
|
|
{
|
|
"path": "$RESOURCE/resources/*"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|