c1070649fa
Register the Tauri notification plugin and request notification permission during startup. Send completion notifications for folder scans, embeddings, AI tagging, and duplicate scans, including failure counts where available.
23 lines
549 B
JSON
23 lines
549 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default",
|
|
"dialog:default",
|
|
"dialog:allow-open",
|
|
"fs:default",
|
|
"fs:allow-read-file",
|
|
"fs:allow-read-dir",
|
|
"fs:read-files",
|
|
"fs:read-dirs",
|
|
"notification:default",
|
|
"core:window:allow-minimize",
|
|
"core:window:allow-close",
|
|
"core:window:allow-toggle-maximize",
|
|
"core:window:allow-is-maximized"
|
|
]
|
|
}
|