Find a file
Bert van der Weerd 8e14a9f643
bump to v109.0-1
2023-01-17 14:25:04 +01:00
linux added LibreWolf-WinUpdater.ini file to prevent update on first run 2023-01-17 13:01:32 +01:00
linux-mar now showing progress when downloading source tarball 2022-10-21 00:01:57 +02:00
winbuild bump to v109.0-1 2023-01-17 14:25:04 +01:00
.gitignore fixed the bogus check target 2022-04-27 10:10:20 +02:00
.gitlab-ci.yml added .gitlab-ci.yaml for creating win64 branch 2022-09-29 21:45:42 +02:00
LICENSE Initial Commit 2019-08-16 21:25:27 -05:00
README.md now the builds are in windows/winbuild 2022-10-07 20:49:51 +02:00

Download latest release

  • Visit the FAQ.
  • Install via chocolatey: choco install librewolf
  • Or install via winget: winget install librewolf
  • Or install via scoop: scoop bucket add extras, then scoop install librewolf

Update plugins

There are plugins that help update librewolf, which helps improve securitiy.

  • Guillaume created a windows updater script for the Task Scheduler. it can be found here.
  • Defkev created a LibreWolf updater plugin, which can be found here.

Please note the distinction between the task scheduler updater script (LibreWolf-WinUpdater) and the librewolf extension (LibreWolf Updater), in that the latter only checks for updates, but will not install them automatically, while the former does. There's quite a bit of confusion about that on Reddit, GitHub and Gitlab.

LibreWolf for windows

  • The latest type of .zip files allows for a user profile inside the extracted folder. It is self-contained and runs on removable storage. LibreWolf has many ui languages built-in, available in the settings.

Where to submit tickets

  • When you have problems with the Settings, or the Advanced Settings (about:config), please submit these issues to the settings repository.
  • For all other problems, such as crashes/theme issues/graphics/speed problems, please submit them to issues for windows repository.

Linux builds

Tested on: fedora36, ubuntu22 vm/vps minimal-ish specs:

  • 4 core cpu
  • 17gb RAM
  • 50gb storage

On the commandline, it's mostly a matter of doing once:

## pick build type:
# cd linux
# cd linux-mar

make fetch

## pick your os:
# sudo make setup-fedora
# sudo make setup-debian

make bootstrap

Then, to build:

make all

That should produce the (non-updating) setup.exe and the community portable zip.

There is a second directory linux-mar where you can build the so-called .mar version of LibreWolf. This is te version that will be auto-updating someday. It's great, but it's main drawback is theming bugs.

You can force a rebuild with make clean all. Please always use make fetch as a single make command, else there might be bugs in the version files. The make fetch command gets you the current latest version.

Compiling the windows version natively

(With the arrival of the linux cross-compiled builds, this is no longer preferred.)

This segment is for people who want to build LibreWolf for themselves. The build of the LibreWolf source tarball is in public CI, so you can use that. Given that you have followed the steps in the Mozilla setup guide:

Once that works, you can check out and compile LibreWolf like this:

git clone https://gitlab.com/librewolf-community/browser/windows.git
cd windows/winbuild
make all

This will produce the -setup.exe and portable .zip. Have fun!