* 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>
* fix(shell): fix schema requiring `sidecar` property even though it is optional
* fix clippy
* make `cmd` and `sidecar` exclusive
* make args optional
* cleanup
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* feat(shell): support opening URLs on mobile
closes#595
* Update and rename StorePlugin.swift to ShellPlugin.swift
* unwrap
* fix func name (ios)
* use undeprecated func if avail
---------
Co-authored-by: fabianlars <fabianlars@fabianlars.de>