diff options
| author | 2026-01-14 10:35:16 +0800 | |
|---|---|---|
| committer | 2026-01-14 10:35:16 +0800 | |
| commit | c95e32d67f6afa681e82fae847fbf1d3f47e61a8 (patch) | |
| tree | 510e9ad74ce1378a552b5a86c024a3da93f61bc3 | |
| parent | e274b51b98e047d9a9dab8fa2e5f6df63f0f3fc8 (diff) | |
| download | DropOut-c95e32d67f6afa681e82fae847fbf1d3f47e61a8.tar.gz DropOut-c95e32d67f6afa681e82fae847fbf1d3f47e61a8.zip | |
feat: add default capability configuration for the main window
| -rw-r--r-- | src-tauri/capabilities/default.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json new file mode 100644 index 0000000..3bb4cc4 --- /dev/null +++ b/src-tauri/capabilities/default.json @@ -0,0 +1,10 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Capability for the main window", + "windows": ["main"], + "permissions": [ + "core:default", + "shell:allow-open" + ] +} |