Files
proxycast/src-tauri/capabilities/deep-link.json
T
coso 9f423db63e fix: limit deep-link permission to macOS only
tauri-plugin-deep-link does not register permissions on Windows
or Linux (both use CLI args for deep links). Only macOS uses
the event-based deep link system that requires permissions.
2026-02-10 10:28:17 +08:00

11 lines
232 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "deep-link",
"description": "Deep link 权限(仅 macOS)",
"windows": ["main"],
"platforms": ["macOS"],
"permissions": [
"deep-link:default"
]
}