fix: add window/webview creation permissions for tool popup windows
Some checks failed
Build & Sign Wraith / Build Windows + Sign (push) Has been cancelled

Tauri v2 ACL requires explicit permissions to create windows from the
frontend. Added core🪟allow-create and
core:webview:allow-create-webview-window so the Tools menu can open
popup windows.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell 2026-03-25 00:56:34 -04:00
parent 0e88f9f07c
commit 016906fc9d

View File

@ -6,6 +6,9 @@
"core:default", "core:default",
"core:event:default", "core:event:default",
"core:window:default", "core:window:default",
"core:window:allow-create",
"core:webview:default",
"core:webview:allow-create-webview-window",
"shell:allow-open" "shell:allow-open"
] ]
} }