Keeping chrlauncher working
chrlauncher checks for Chromium updates against chromium.woolyss.com, which shuts down on 31 August 2026. When it goes, chrlauncher stops finding updates. One line in its config fixes that.
The fix
Open chrlauncher.ini next to chrlauncher.exe and set:
ChromiumUpdateUrl=https://chromiumbuilds.org/api/chrlauncher/windows-%d-%s.txt
Make sure the line is not commented out; the default ships with a # in front of it.
That is the whole change. chrlauncher substitutes your architecture and build type into the URL exactly as it
did before, so switching ChromiumType keeps working.
Why this works on a static site
chrlauncher's update URL is a format string: it fills in the architecture and the configured build type,
then parses the response as key=value pairs separated by semicolons. Because those values land in
the path rather than a query string, every combination can be served as a plain file. Nothing dynamic is
involved, which is also why it cannot go down the way a single API endpoint can.
Build types available
Set ChromiumType in the same file. The original woolyss names all still work and point at
sensible current equivalents:
| ChromiumType | Architecture | Now serves | Version |
|---|---|---|---|
dev-official | 64-bit | Official Chromium snapshot | 154.0.8031.0 |
dev-official | 32-bit | Official Chromium snapshot | 154.0.8031.0 |
stable-codecs-sync | 64-bit | Hibbiki Chromium | 152.0.7977.65 |
stable-codecs-sync | 32-bit | Thorium | 152.0.7977.55 |
dev-nosync | 64-bit | RobRich Chromium (Clang/LLVM) | 153.0.7993.0 |
dev-nosync | 32-bit | Official Chromium snapshot | 154.0.8031.0 |
dev-codecs-sync | 64-bit | Hibbiki Chromium | 152.0.7977.65 |
dev-codecs-sync | 32-bit | Thorium | 152.0.7977.55 |
dev-codecs-nosync | 64-bit | Marmaduke ungoogled (Windows) | 150.0.7871.252 |
dev-codecs-nosync | 32-bit | Thorium | 152.0.7977.55 |
ungoogled-chromium | 64-bit | Marmaduke ungoogled (Windows) | 150.0.7871.252 |
ungoogled-chromium | 32-bit | ungoogled-chromium | 151.0.7922.173 |
stable | 64-bit | Hibbiki Chromium | 152.0.7977.65 |
stable | 32-bit | Thorium | 152.0.7977.55 |
thorium | 64-bit | Thorium | 152.0.7977.55 |
thorium | 32-bit | Thorium | 152.0.7977.55 |
What the response looks like
$ curl https://chromiumbuilds.org/api/chrlauncher/windows-64-stable-codecs-sync.txt
version=152.0.7977.65;download=https://github.com/...;timestamp=...
The download value always points at a portable archive rather than an installer, because
chrlauncher extracts the archive itself. sha256 and size are extra fields older
clients ignore harmlessly.
A note on trust
This endpoint tells chrlauncher where to download from, and chrlauncher will install what it finds there. Every URL served points at the maintainer's own GitHub release, and the files are regenerated automatically from those releases several times a day. If you would rather not point an auto-updater at someone else's server, the alternative is to check the release feed and update by hand.
Other updaters
chrupd reads GitHub release APIs directly and never depended on woolyss, so it keeps working untouched. On Windows, winget or Chocolatey will also keep a Chromium build current without any of this.