feat: update to tauri beta, add permissions (#862)

Co-authored-by: Lucas Nogueira <lucas@tauri.app>
Co-authored-by: Lucas Nogueira <lucas@crabnebula.dev>
This commit is contained in:
Tillmann
2024-02-03 15:14:41 -03:00
committed by GitHub
co-authored by Lucas Nogueira Lucas Nogueira
parent 506ce4835b
commit d198c01486
387 changed files with 21883 additions and 943 deletions
@@ -0,0 +1 @@
schemas/
@@ -0,0 +1 @@
schemas/
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-restore-window-state"
description = "Enables the restore_window_state command without any pre-configured scope."
commands.allow = ["restore_window_state"]
[[permission]]
identifier = "deny-restore-window-state"
description = "Denies the restore_window_state command without any pre-configured scope."
commands.deny = ["restore_window_state"]
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-save-window-state"
description = "Enables the save_window_state command without any pre-configured scope."
commands.allow = ["save_window_state"]
[[permission]]
identifier = "deny-save-window-state"
description = "Denies the save_window_state command without any pre-configured scope."
commands.deny = ["save_window_state"]
@@ -0,0 +1,18 @@
# Permissions
## allow-restore-window-state
Enables the restore_window_state command without any pre-configured scope.
## deny-restore-window-state
Denies the restore_window_state command without any pre-configured scope.
## allow-save-window-state
Enables the save_window_state command without any pre-configured scope.
## deny-save-window-state
Denies the save_window_state command without any pre-configured scope.