| 1 |
{ |
| 2 |
"$schema": "https://schemas.tauri.app/capabilities/2", |
| 3 |
"identifier": "desktop", |
| 4 |
"description": "Desktop-only capabilities (shell, notifications, OTA updater)", |
| 5 |
"platforms": ["linux", "macOS", "windows"], |
| 6 |
"windows": ["main", "compose-*"], |
| 7 |
"permissions": [ |
| 8 |
"shell:allow-open", |
| 9 |
"notification:default", |
| 10 |
"updater:default", |
| 11 |
"process:allow-restart" |
| 12 |
] |
| 13 |
} |
| 14 |
|