- Add tauri-plugin-notification for native Windows notifications - Send notification when new chat session is started - Configure notification permissions in capabilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
561 B
JSON
22 lines
561 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default",
|
|
"store:default",
|
|
"store:allow-load",
|
|
"store:allow-set",
|
|
"store:allow-get",
|
|
"store:allow-save",
|
|
"store:allow-delete",
|
|
"updater:default",
|
|
"process:default",
|
|
"notification:default",
|
|
"notification:allow-notify",
|
|
"notification:allow-request-permission",
|
|
"notification:allow-is-permission-granted"
|
|
]
|
|
}
|