mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
95468fb137
Remove tauri-plugin-updater, relaunch_after_update command, generate-update- manifest.js, the generate-manifest CI job, and all signing/upload steps for .sig files and latest.json. The updater plugin, its pubkey and endpoint config in tauri.conf.json, and the updater:default capability are all gone. Replace AppUpdater.tsx with a lightweight component that: - Fetches https://api.github.com/repos/Psychotoxical/psysonic/releases/latest after a 4 s delay (no install, no download, no progress bar) - Shows a dismissible toast with two buttons: GitHub → releases/latest Website → https://psysonic.psychotoxic.eu/#downloads i18n: remove updaterInstall/Downloading/Installing/Download/ExperimentalHint keys from all 7 locales; add updaterWebsite; update updaterVersion wording. CI: remove generate-manifest job and all .sig signing/upload steps from build-macos-windows. Also remove TAURI_SIGNING_PRIVATE_KEY env vars (no longer needed). Release now just builds and uploads the installable binaries. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"$schema": "../gen/schemas/capability-schema.json",
|
|
"identifier": "default",
|
|
"description": "Default capabilities for Psysonic",
|
|
"platforms": ["linux", "macOS", "windows"],
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"shell:default",
|
|
{ "identifier": "shell:allow-open", "allow": [{ "url": "https://**" }] },
|
|
"global-shortcut:allow-register",
|
|
"global-shortcut:allow-unregister",
|
|
"store:default",
|
|
"store:allow-load",
|
|
"store:allow-set",
|
|
"store:allow-get",
|
|
"store:allow-save",
|
|
"dialog:default",
|
|
"dialog:allow-open",
|
|
"dialog:allow-save",
|
|
"fs:default",
|
|
"fs:allow-write-file",
|
|
"fs:allow-read-file",
|
|
"fs:allow-mkdir",
|
|
"fs:scope-download-recursive",
|
|
"fs:scope-home-recursive",
|
|
"window-state:allow-save-window-state",
|
|
"window-state:allow-restore-state",
|
|
"core:window:allow-set-title",
|
|
"core:window:allow-close",
|
|
"core:window:allow-hide",
|
|
"core:window:allow-show",
|
|
"core:window:allow-set-fullscreen",
|
|
"core:window:allow-is-fullscreen",
|
|
"core:window:allow-create",
|
|
"core:webview:allow-create-webview-window",
|
|
"process:allow-restart"
|
|
]
|
|
}
|