Files
SteamDepotDownloaderGUI/src-tauri/capabilities/default.json
Maarten van Heusden dad2daee4a fix: open URLs and directories properly again
migrate to tauri Opener plugin
2025-09-09 17:07:02 +02:00

32 lines
585 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": [
"main"
],
"permissions": [
"core:default",
"shell:allow-open",
"dialog:default",
"shell:allow-execute",
"shell:allow-spawn",
"opener:allow-open-path",
{
"identifier": "opener:allow-open-path",
"allow": [
{
"path": "**"
}
]
},
{
"identifier": "opener:allow-open-url",
"allow": [
{
"url": "**"
}
]
}
]
}