* refactor(shell)!: remove deprecated open API `open` has been deprecated since 2.1.0 in favor of tauri-plugin-opener. This removes: - the `open` command and its `allow-open`/`deny-open` permissions (`shell:default` now grants nothing) - the `plugins > shell > open` configuration; `init()` returns `TauriPlugin<R>` again - `Shell::open`, the `tauri_plugin_shell::open` module and `Error::UnknownProgramName` - the `open` JavaScript function - the Android and iOS plugins, since `open` was their only command * chore(examples): drop the now empty shell:default permission set --------- Co-authored-by: Lucas Nogueira <lucas@crabnebula.dev>
1.3 KiB
Default Permission
This permission set configures which shell functionality is exposed by default.
Granted Permissions
Nothing is granted by default. Spawning processes must be explicitly
allowed with a scope, see allow-execute and allow-spawn.
Permission Table
| Identifier | Description |
|---|---|
|
|
Enables the execute command without any pre-configured scope. |
|
|
Denies the execute command without any pre-configured scope. |
|
|
Enables the kill command without any pre-configured scope. |
|
|
Denies the kill command without any pre-configured scope. |
|
|
Enables the spawn command without any pre-configured scope. |
|
|
Denies the spawn command without any pre-configured scope. |
|
|
Enables the stdin_write command without any pre-configured scope. |
|
|
Denies the stdin_write command without any pre-configured scope. |