- Remove tauri-plugin-shell from Cargo.toml - Drop tauri_plugin_shell::init() from src-tauri/src/lib.rs - Delete "shell:allow-open" from src-tauri/capabilities/default.json - No runtime behavior change; opener plugin still handles links/paths - Motivation: reduce permissions surface and slightly shrink bundle
13 lines
229 B
JSON
13 lines
229 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "enables the default permissions",
|
|
"windows": [
|
|
"main"
|
|
],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default"
|
|
]
|
|
}
|