Find a file
Bert van der Weerd 6a5917ab48
v100.0-2.1-rc1
2022-05-04 22:40:16 +02:00
assets added make langpacks 2022-05-04 20:21:11 +02:00
.gitignore fixed the bogus check target 2022-04-27 10:10:20 +02:00
LICENSE Initial Commit 2019-08-16 21:25:27 -05:00
Makefile added make langpacks 2022-05-04 20:21:11 +02:00
mk.py added make langpacks 2022-05-04 20:21:11 +02:00
README.md Add Scoop to the installation methods (was also added on librewolf.net) 2022-03-11 11:51:56 +00:00
release this release 1 2022-05-04 12:00:55 +02:00
source_release v100.0-2.1-rc1 2022-05-04 22:40:16 +02:00
version this release 1 2022-05-04 12:00:55 +02:00

LibreWolf for windows

  • download latest release
  • Visit the FAQ.
  • Install via chocolatey: choco install librewolf
  • or install via scoop: scoop bucket add extras, then scoop install librewolf
  • or install via winget: winget install librewolf
  • If your LibreWolf crashes on startup, you're probably missing the right Visual C++ Runtime. You'll want the Visual Studio 2015, 2017 and 2019 version for x64, which would be this file.
  • The latest type of .zip files allows for a user profile inside the extracted folder. It is self-contained and runs on removable storage.

Where to submit tickets

Community links

Community contributions

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

Compiling the windows version

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
make fetch build

Currently a bug in ./mach package makes this build fail, but it did produce the distribution .zip file that we're after. So after this, you can just:

make artifacts

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

Uploading a release

To actually submit these artifacts to the Windows repository as release files, use:

python3 mk.py upload <token>

This would involve having a valid token, ofcourse, but also something more: Git for Windows. From this package, we only need sha256sum.exe to calculate our checksums. Mozilla provides only md5sum.exe in their very old version of the mingw tools. Simply installing Git won't be enough to get sha256sum.exe in our path, the C:\mozilla-build\start-shell.bat file needs a little tweak at line 55, to read:

SET "PATH=%PATH%;!GITDIR!;c:\Program Files\Git\usr\bin"

This should put sha256sum.exe in your path.