deps: add HTTP plugin support

This commit is contained in:
2025-09-30 21:47:46 -04:00
parent b990d721c2
commit d9e7e4885d
6 changed files with 394 additions and 8 deletions

View File

@@ -2,7 +2,9 @@
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"windows": [
"main"
],
"permissions": [
"core:default",
"opener:default",
@@ -17,9 +19,14 @@
{
"identifier": "fs:scope",
"allow": [
{ "path": "$HOME/**/*" },
{ "path": "$APPDATA/**/*" }
{
"path": "$HOME/**/*"
},
{
"path": "$APPDATA/**/*"
}
]
}
},
"http:default"
]
}
}