Updater: channel-aware apply, UI polish, cache-bust

This commit is contained in:
Aaron
2025-12-12 21:06:40 -05:00
parent e933fb325d
commit 4461613339
6 changed files with 661 additions and 73 deletions

View File

@@ -62,6 +62,11 @@ export const setReleaseAutoCheck = (enable) =>
method: "POST",
body: JSON.stringify({ enable }),
});
export const setReleaseChannel = (channel) =>
api("/api/update/channel", {
method: "POST",
body: JSON.stringify({ channel }),
});
export const triggerReset = (confirm) =>
api("/api/reset", {