release: publish Twitch VOD Manager 1.0.3

Polish navigation, settings, streamer and queue workflows; add safe pause and partial-file lifecycle handling; apply the product identity across Windows surfaces; and replace the public README with a complete English product guide and isolated screenshot.
This commit is contained in:
Sucukdeluxe
2026-08-10 19:25:08 +02:00
parent f9e415da88
commit b3c2a8b9fd
48 changed files with 4035 additions and 826 deletions
+4
View File
@@ -115,6 +115,7 @@ function syncWorkspaceUpdateState(state: 'idle' | 'available' | 'downloading' |
const description = byId('updateText').textContent?.trim() || UI_TEXT.static.checkUpdates;
banner.dataset.updateState = state;
banner.hidden = state === 'idle';
button.dataset.updateState = state;
button.disabled = false;
if (state === 'downloading') {
@@ -671,6 +672,9 @@ window.api.onUpdateNotAvailable(() => {
shouldOpenUpdateModalOnAvailable = false;
manualUpdateCheckPending = false;
if (!updateReady) {
hideUpdateBanner();
}
});
window.api.onUpdateDownloadProgress((progress: UpdateDownloadProgress) => {