feat: add default capabilities configuration and main entry point
Some checks failed
Build / increment-version (push) Successful in 6s
Build / build-windows (push) Failing after 24s
Build / build-linux (push) Failing after 1m45s
Build / create-release (push) Has been skipped

This commit is contained in:
litruv
2026-02-21 17:51:17 +11:00
parent 22f5c5e7e4
commit 7508ebacab
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Default capability for all windows",
"windows": ["*"],
"platforms": ["linux", "windows", "macOS"],
"permissions": [
"core:default",
"core:webview:allow-internal-toggle-devtools",
"opener:default",
"opener:allow-open-url",
"opener:allow-default-urls",
"notification:default",
"notification:allow-register-listener",
"autostart:default",
"updater:default",
"updater:allow-check",
"updater:allow-download",
"updater:allow-download-and-install",
"dialog:default",
"process:allow-restart",
{
"identifier": "http:default",
"allow": [
{ "url": "https://api.telegram.org/**" }
]
}
]
}