From 3198e496c4ca2f27d35dd875bd874325fbc17155 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Sat, 24 Jan 2026 07:59:49 +1100 Subject: [PATCH] feat: add desktop capability schema with default permissions --- cinny | 2 +- src-tauri/capabilities/desktop.json | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 src-tauri/capabilities/desktop.json diff --git a/cinny b/cinny index c0af925..a6b76a9 160000 --- a/cinny +++ b/cinny @@ -1 +1 @@ -Subproject commit c0af925420324390d5e24a0cdf1aff08444982e3 +Subproject commit a6b76a9be7603f0a9997295f8e426d809cac684a diff --git a/src-tauri/capabilities/desktop.json b/src-tauri/capabilities/desktop.json new file mode 100644 index 0000000..8580f81 --- /dev/null +++ b/src-tauri/capabilities/desktop.json @@ -0,0 +1,11 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Default capability for all windows on desktop builds.", + "windows": ["*"], + "permissions": [ + "core:default", + "shell:default", + "notification:default" + ] +}