releases/v2.4.0 (#1145)

* bump version to v2.4.0
* update tauri.
* allow try direct connect to public server
This commit is contained in:
Sijie.Sun
2025-07-25 00:16:15 +08:00
committed by GitHub
parent 8e7a8de5e5
commit 1f6a715939
20 changed files with 1006 additions and 539 deletions

View File

@@ -2,6 +2,8 @@
Default permissions for the plugin
#### This default permission set includes the following:
- `allow-ping`
- `allow-start-vpn`

View File

@@ -49,7 +49,7 @@
"minimum": 1.0
},
"description": {
"description": "Human-readable description of what the permission does. Tauri convention is to use <h4> headings in markdown content for Tauri documentation generation purposes.",
"description": "Human-readable description of what the permission does. Tauri convention is to use `<h4>` headings in markdown content for Tauri documentation generation purposes.",
"type": [
"string",
"null"
@@ -111,7 +111,7 @@
"type": "string"
},
"description": {
"description": "Human-readable description of what the permission does. Tauri internal convention is to use <h4> headings in markdown content for Tauri documentation generation purposes.",
"description": "Human-readable description of what the permission does. Tauri internal convention is to use `<h4>` headings in markdown content for Tauri documentation generation purposes.",
"type": [
"string",
"null"
@@ -297,67 +297,80 @@
{
"description": "Enables the ping command without any pre-configured scope.",
"type": "string",
"const": "allow-ping"
"const": "allow-ping",
"markdownDescription": "Enables the ping command without any pre-configured scope."
},
{
"description": "Denies the ping command without any pre-configured scope.",
"type": "string",
"const": "deny-ping"
"const": "deny-ping",
"markdownDescription": "Denies the ping command without any pre-configured scope."
},
{
"description": "Enables the prepare_vpn command without any pre-configured scope.",
"type": "string",
"const": "allow-prepare-vpn"
"const": "allow-prepare-vpn",
"markdownDescription": "Enables the prepare_vpn command without any pre-configured scope."
},
{
"description": "Denies the prepare_vpn command without any pre-configured scope.",
"type": "string",
"const": "deny-prepare-vpn"
"const": "deny-prepare-vpn",
"markdownDescription": "Denies the prepare_vpn command without any pre-configured scope."
},
{
"description": "Enables the registerListener command without any pre-configured scope.",
"type": "string",
"const": "allow-registerListener"
"const": "allow-registerListener",
"markdownDescription": "Enables the registerListener command without any pre-configured scope."
},
{
"description": "Denies the registerListener command without any pre-configured scope.",
"type": "string",
"const": "deny-registerListener"
"const": "deny-registerListener",
"markdownDescription": "Denies the registerListener command without any pre-configured scope."
},
{
"description": "Enables the register_listener command without any pre-configured scope.",
"type": "string",
"const": "allow-register-listener"
"const": "allow-register-listener",
"markdownDescription": "Enables the register_listener command without any pre-configured scope."
},
{
"description": "Denies the register_listener command without any pre-configured scope.",
"type": "string",
"const": "deny-register-listener"
"const": "deny-register-listener",
"markdownDescription": "Denies the register_listener command without any pre-configured scope."
},
{
"description": "Enables the start_vpn command without any pre-configured scope.",
"type": "string",
"const": "allow-start-vpn"
"const": "allow-start-vpn",
"markdownDescription": "Enables the start_vpn command without any pre-configured scope."
},
{
"description": "Denies the start_vpn command without any pre-configured scope.",
"type": "string",
"const": "deny-start-vpn"
"const": "deny-start-vpn",
"markdownDescription": "Denies the start_vpn command without any pre-configured scope."
},
{
"description": "Enables the stop_vpn command without any pre-configured scope.",
"type": "string",
"const": "allow-stop-vpn"
"const": "allow-stop-vpn",
"markdownDescription": "Enables the stop_vpn command without any pre-configured scope."
},
{
"description": "Denies the stop_vpn command without any pre-configured scope.",
"type": "string",
"const": "deny-stop-vpn"
"const": "deny-stop-vpn",
"markdownDescription": "Denies the stop_vpn command without any pre-configured scope."
},
{
"description": "Default permissions for the plugin",
"description": "Default permissions for the plugin\n#### This default permission set includes:\n\n- `allow-ping`\n- `allow-start-vpn`",
"type": "string",
"const": "default"
"const": "default",
"markdownDescription": "Default permissions for the plugin\n#### This default permission set includes:\n\n- `allow-ping`\n- `allow-start-vpn`"
}
]
}