diff options
| -rw-r--r-- | src-tauri/capabilities/default.json | 17 | ||||
| -rw-r--r-- | src-tauri/tauri.conf.json | 3 |
2 files changed, 19 insertions, 1 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" + ] +} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b22fea9..08ecd86 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -20,7 +20,8 @@ } ], "security": { - "csp": null + "csp": null, + "capabilities": ["default"] } }, "bundle": { |