diff options
| author | 2026-01-14 11:14:34 +0800 | |
|---|---|---|
| committer | 2026-01-14 11:14:34 +0800 | |
| commit | 4a974dc9cdaa402ff10b2971464448fcd08db301 (patch) | |
| tree | 287bbfe84c1457a7b3e4879fc73c516a3dd8a6fd /src-tauri/capabilities/default.json | |
| parent | f896913b51eb53f885fe58ea261e34b05ca84f56 (diff) | |
| download | DropOut-4a974dc9cdaa402ff10b2971464448fcd08db301.tar.gz DropOut-4a974dc9cdaa402ff10b2971464448fcd08db301.zip | |
feat: add default capabilities configuration for the DropOut launcher
Diffstat (limited to 'src-tauri/capabilities/default.json')
| -rw-r--r-- | src-tauri/capabilities/default.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json new file mode 100644 index 0000000..894b905 --- /dev/null +++ b/src-tauri/capabilities/default.json @@ -0,0 +1,17 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Default capabilities for the DropOut launcher", + "windows": ["main"], + "permissions": [ + "core:default", + "core:event:default", + "core:event:allow-listen", + "core:event:allow-emit", + "core:app:default", + "core:app:allow-version", + "core:path:default", + "core:window:default", + "shell:allow-open" + ] +} |