Auto-Update โ
Nothing Browser checks for updates automatically and installs them in-app.
How It Works โ
The update checker polls the GitHub Releases API:
https://api.github.com/repos/BunElysiaReact/nothing-browser/releases/latestIt checks on launch (after a 3-second delay) and every 6 hours.
Update Notification โ
When a newer version is found, the TECH HOUSE tab label changes to:
๐ TECH HOUSE [v0.1.4 ready]The notification bell turns amber.
Downloading and Installing โ
- Go to TECH HOUSE tab
- Click โ DOWNLOAD UPDATE
- Watch the progress bar
- Click โก INSTALL & RESTART
- The app closes, swaps the binary, and restarts automatically
No terminal. No sudo (when using the tar.gz release).
.deb users
If you installed via .deb to /usr/bin, the binary is not writable by your user. The updater will use pkexec or sudo and prompt for your password. To avoid this, use the tar.gz release instead.
Shipping a New Release โ
bash
git add .
git commit -m "feat: what changed"
git push
git tag v0.1.4
git push origin v0.1.4GitHub Actions builds Linux, Windows, and macOS automatically and publishes the release with all assets. Users get notified within 6 hours.