fix: add up-to-date state so Check for updates gives visible feedback

When electron-updater reports no update available, the service now
transitions to 'up-to-date' instead of reverting silently to 'idle'.
The troubleshooting UI shows a green check icon, 'Up to date' label,
and 'You are running the latest version of Aryx.' description.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-03-30 10:20:05 +02:00
co-authored by Copilot
parent cbcf239a0a
commit 33b293271e
4 changed files with 28 additions and 6 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ export class AutoUpdateService {
};
private readonly notAvailableListener = () => {
this.publishStatus({ state: 'idle' });
this.publishStatus({ state: 'up-to-date' });
};
private readonly progressListener = (progress: AutoUpdateProgressLike) => {