mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
[desktop] switch to json5 for tauri config
This commit is contained in:
parent
e964385f83
commit
ff488351e4
3 changed files with 16 additions and 2 deletions
|
@ -16,7 +16,7 @@ tauri-build = { version = "2.0.0-beta.13", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Tauri
|
# Tauri
|
||||||
tauri = { version = "2.0.0-beta.16", features = ["tray-icon", "image-png"] }
|
tauri = { version = "2.0.0-beta.16", features = ["tray-icon", "image-png", "config-json5"] }
|
||||||
tauri-plugin-shell = "2.0.0-beta"
|
tauri-plugin-shell = "2.0.0-beta"
|
||||||
tauri-plugin-dialog = "2.0.0-beta"
|
tauri-plugin-dialog = "2.0.0-beta"
|
||||||
tauri-plugin-clipboard-manager = "2.0.0-beta"
|
tauri-plugin-clipboard-manager = "2.0.0-beta"
|
||||||
|
|
|
@ -1693,6 +1693,13 @@
|
||||||
"window:allow-current-monitor"
|
"window:allow-current-monitor"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"description": "window:allow-cursor-position -> Enables the cursor_position command without any pre-configured scope.",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"window:allow-cursor-position"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"description": "window:allow-destroy -> Enables the destroy command without any pre-configured scope.",
|
"description": "window:allow-destroy -> Enables the destroy command without any pre-configured scope.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -2120,6 +2127,13 @@
|
||||||
"window:deny-current-monitor"
|
"window:deny-current-monitor"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"description": "window:deny-cursor-position -> Denies the cursor_position command without any pre-configured scope.",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"window:deny-cursor-position"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"description": "window:deny-destroy -> Denies the destroy command without any pre-configured scope.",
|
"description": "window:deny-destroy -> Denies the destroy command without any pre-configured scope.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
},
|
},
|
||||||
"productName": "Portmaster",
|
"productName": "Portmaster",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"identifier": "io.safing.portmaster",
|
"identifier": "io.safing.portmaster", // this is added as a property to the shortcut on windows (ApplicationUserModelID). Used for notifications.
|
||||||
"app": {
|
"app": {
|
||||||
"withGlobalTauri": true,
|
"withGlobalTauri": true,
|
||||||
"security": {
|
"security": {
|
Loading…
Add table
Reference in a new issue