mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-24 21:40:48 +02:00
* refactor(opener)!: rename reveal_item_in_dir command to reveal_items_in_dir The `allow-reveal-item-in-dir` and `deny-reveal-item-in-dir` permissions are now `allow-reveal-items-in-dir` and `deny-reveal-items-in-dir`. The `revealItemInDir` JavaScript function and the Rust `Opener` methods are unchanged. * cr * retain rust api * fix build * update docs, rename ts api * cr * Apply suggestion from @Legend-Master --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
11 lines
340 B
TOML
11 lines
340 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[default]
|
|
description = """This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application
|
|
as well as reveal file in directories using default file explorer"""
|
|
permissions = [
|
|
"allow-open-url",
|
|
"allow-reveal-items-in-dir",
|
|
"allow-default-urls",
|
|
]
|