mirror of
https://github.com/hoornet/vega.git
synced 2026-04-27 00:00:00 -07:00
- Add audio.load() reset to prevent cascading failures between episodes - Add onPlaying event handler for reliable post-buffer playback in WebKitGTK - Add 15s loading timeout with user-friendly error for broken audio URLs - Fix V4V LNURL-pay: use Tauri HTTP plugin instead of CORS-blocked browser fetch - Fix Podcast Index API: use Tauri HTTP plugin for V4V enrichment - Fall back to Podcast Index enclosure URL when Fountain.fm CDN is broken - Update Lightning address to jure@getalby.com (Alby cloud migration) - Add broad HTTPS scope for LNURL-pay across Lightning providers
33 lines
811 B
JSON
33 lines
811 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default",
|
|
"updater:default",
|
|
"process:default",
|
|
{
|
|
"identifier": "http:default",
|
|
"allow": [
|
|
{ "url": "https://nostr.build/**" },
|
|
{ "url": "https://void.cat/**" },
|
|
{ "url": "https://nostrimg.com/**" },
|
|
{ "url": "https://relay.vertexlab.io/**" },
|
|
{ "url": "https://fountain.fm/**" },
|
|
{ "url": "https://api.podcastindex.org/**" },
|
|
{ "url": "https://**" }
|
|
]
|
|
},
|
|
"dialog:default",
|
|
{
|
|
"identifier": "fs:allow-read-file",
|
|
"allow": [
|
|
{ "path": "**" }
|
|
]
|
|
},
|
|
"notification:default"
|
|
]
|
|
}
|