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-04 03:14:41 +09:00
committed by GitHub
parent 506ce4835b
commit d198c01486
387 changed files with 21883 additions and 943 deletions
+1
View File
@@ -0,0 +1 @@
schemas/
+1
View File
@@ -0,0 +1 @@
schemas/
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-download"
description = "Enables the download command without any pre-configured scope."
commands.allow = ["download"]
[[permission]]
identifier = "deny-download"
description = "Denies the download command without any pre-configured scope."
commands.deny = ["download"]
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-upload"
description = "Enables the upload command without any pre-configured scope."
commands.allow = ["upload"]
[[permission]]
identifier = "deny-upload"
description = "Denies the upload command without any pre-configured scope."
commands.deny = ["upload"]
@@ -0,0 +1,18 @@
# Permissions
## allow-download
Enables the download command without any pre-configured scope.
## deny-download
Denies the download command without any pre-configured scope.
## allow-upload
Enables the upload command without any pre-configured scope.
## deny-upload
Denies the upload command without any pre-configured scope.