Desktop auto-update
2 min read
The Electron desktop doesn't check on each open like PWA — it checks periodically in the background.

🚧 Desktop app in development — this article is a preview. Content may change and the download link will be enabled when the desktop app launches.
Auto flow
- A few minutes after launch, then hourly
- New version found → background-downloaded to local
- Download done → prompt: "New version downloaded" + "Restart to update now" / "Later"
- Click "now" → app restarts on the new version
Manual check
Three paths:
- OS menu → Help → Check for updates
- Avatar → "Check for updates"
- Account → Preferences → "Check for updates"
Control
| Behavior | Default | Change at |
|---|---|---|
| Auto-download | ✅ | Preferences → Updates |
| Auto-prompt after download | ✅ | Same |
| Auto-restart (no prompt) | ❌ | Same |
To avoid prompts: disable auto-download → manual check only.
vs PWA
See: PWA auto-update — PWA checks on open, Electron checks in background.
Related
Was this helpful?