4e8d7be03e
The runtime updater (API latest-release resolution + tag-specific feed override) still pointed at Codeberg; releases now live on git.utn.lol. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
36 lines
1.1 KiB
Markdown
36 lines
1.1 KiB
Markdown
# Updating Blap
|
|
|
|
All builds are published on the **[Blap releases page](https://git.utn.lol/enki/blap/releases)**.
|
|
Grab the newest file for your platform below.
|
|
|
|
## Windows
|
|
Automatic — when a new version is out, Blap shows a **"New update"** prompt; click it and Blap
|
|
updates itself. (Or download the latest `Blap Setup X.Y.Z.exe` and run it.)
|
|
|
|
## Linux
|
|
Blap can't update itself on Linux (packages are owned by your package manager / the flatpak
|
|
sandbox), so it just **notifies** you — then you update with one command for your format:
|
|
|
|
### Flatpak (Bazzite, etc.)
|
|
Download the new `Blap-X.Y.Z-x86_64.flatpak` and:
|
|
```
|
|
flatpak install --user Blap-X.Y.Z-x86_64.flatpak
|
|
```
|
|
(installing the newer bundle upgrades the existing install)
|
|
|
|
### Debian / Ubuntu (`.deb`)
|
|
```
|
|
sudo apt install ./blap_X.Y.Z_amd64.deb
|
|
```
|
|
|
|
### Arch (`.pacman`)
|
|
```
|
|
sudo pacman -U blap-X.Y.Z.pacman
|
|
```
|
|
|
|
### Portable (`.tar.gz`)
|
|
Extract the new tarball over your existing copy and run the `blap` executable — no install needed.
|
|
|
|
---
|
|
_Replace `X.Y.Z` with the version from the [releases page](https://git.utn.lol/enki/blap/releases)._
|