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-execute"
description = "Enables the execute command without any pre-configured scope."
commands.allow = ["execute"]
[[permission]]
identifier = "deny-execute"
description = "Denies the execute command without any pre-configured scope."
commands.deny = ["execute"]
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-kill"
description = "Enables the kill command without any pre-configured scope."
commands.allow = ["kill"]
[[permission]]
identifier = "deny-kill"
description = "Denies the kill command without any pre-configured scope."
commands.deny = ["kill"]
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-open"
description = "Enables the open command without any pre-configured scope."
commands.allow = ["open"]
[[permission]]
identifier = "deny-open"
description = "Denies the open command without any pre-configured scope."
commands.deny = ["open"]
@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-stdin-write"
description = "Enables the stdin_write command without any pre-configured scope."
commands.allow = ["stdin_write"]
[[permission]]
identifier = "deny-stdin-write"
description = "Denies the stdin_write command without any pre-configured scope."
commands.deny = ["stdin_write"]
@@ -0,0 +1,34 @@
# Permissions
## allow-execute
Enables the execute command without any pre-configured scope.
## deny-execute
Denies the execute command without any pre-configured scope.
## allow-kill
Enables the kill command without any pre-configured scope.
## deny-kill
Denies the kill command without any pre-configured scope.
## allow-open
Enables the open command without any pre-configured scope.
## deny-open
Denies the open command without any pre-configured scope.
## allow-stdin-write
Enables the stdin_write command without any pre-configured scope.
## deny-stdin-write
Denies the stdin_write command without any pre-configured scope.