Files
Gitea-Desktop/src-tauri/capabilities/default.json
SirBlob 9c56f8f3f7
Some checks failed
Build and Release / Test (push) Has been cancelled
Build and Release / Build Windows (push) Has been cancelled
Build and Release / Build Linux (push) Has been cancelled
Build and Release / Build macOS (push) Has been cancelled
Build and Release / Create Release (push) Has been cancelled
Build and Release / Development Build (push) Has been cancelled
UI Update
2025-11-07 17:34:19 -05:00

34 lines
776 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": [
"core:default",
"core:window:allow-minimize",
"core:window:allow-maximize",
"core:window:allow-unmaximize",
"core:window:allow-close",
"core:window:allow-toggle-maximize",
"core:window:allow-is-maximized",
"opener:default",
"http:default",
"updater:default",
"updater:allow-check",
"updater:allow-download-and-install",
"process:default",
"process:allow-restart",
{
"identifier": "http:allow-fetch",
"allow": [
{
"url": "https://**"
},
{
"url": "http://**"
}
]
}
]
}