v4.0.11
Bug fixes and minor enhancements.
New Features
- None
Bug Fixes
- Crash on Windows when opening Print and Print Preview dialog 873
- Crash when you click Yes or No in the pop-up about downloading the latest version 878
- Drop down menu for Style and Equipment are so narrow, cannot see contents 879
- OG doesn't immediately change when adding malt to a recipe 880
- IBU doesn't update when adding hops 881
- Errors when loading translations 889
- Debian package depencies 890
As ever, please don't hesitate to let us know if you hit problems.
Windows
- Download
Brewtarget 4.0.11 Installer.exe
. (Checksum for this file is inBrewtarget 4.0.11 Installer.exe.sha256sum
.)
The Windows build is digitally signed by SignPath.io, with a certificate by the SignPath Foundation. These services are provided free of charge to Brewtarget and other qualifying Open Source Software (OSS) projects.
Mac
GitHub builds for Mac run on ARM machines, so, if you have an Intel Mac, you will need to compile locally.
Apple don't want you to install software that hasn't been downloaded from one of their "approved" sources or that hasn't been digitally signed or notarised by someone paying them a subscription fee. So they are gradually making it harder and harder for you to do this.
- Make sure you have Xcode installed from the Mac App Store (see https://developer.apple.com/support/xcode/)
- Download
brewtarget_4.0.11.dmg
. (Checksum for this file is inbrewtarget_4.0.11.dmg.sha256sum
.) - Mount this disk image, then open the console and run the following:
$ xattr -c brewtarget_4.0.11.app
$ codesign --force --deep -s - brewtarget_4.0.11.app
Hopefully the above enables you to run the app.
Linux
For Linux users, we have two versions of each type of package (deb and rpm). One version of each is built on Ubuntu
22.04 and the other on Ubuntu 24.04. Hopefully one or other should install on your system, but please open a new issue here on GitHub if you hit problems.
The packages build on Ubuntu 22.04 are:
brewtarget-4.0.11_22-1_amd64.deb
(with checksum inbrewtarget-4.0.11_22-1_amd64.deb.sha256sum
)brewtarget-4.0.11_22-1.x86_64.rpm
(with checksum inbrewtarget-4.0.11_22-1.x86_64.rpm.sha256sum
)
The packages build on Ubuntu 24.04 are:
brewtarget-4.0.11_24-1_amd64.deb
(with checksum inbrewtarget-4.0.11_24-1_amd64.deb.sha256sum
)brewtarget-4.0.11_24-1.x86_64.rpm
(with checksum inbrewtarget-4.0.11_24-1.x86_64.rpm.sha256sum
)
Building the release from source
Download brewtarget-4.0.11.tar.xz
. (Checksum for this file is in brewtarget-4.0.11.tar.xz.sha256sum
.)
Exact instructions vary according to your operating system, but the following is a general guide. We recommend building with Meson, but, for local installs, we also support building with CMake.
Ensure you have a recent version of Python installed. (This is optional, but allows you to run the bt
script that automates setting up the build process.)
Once you have uncompressed this, go to the brewtarget
directory and run the following commands:
$ ./bt setup all
$ cd mbuild
$ meson compile
$ meson test
$ sudo meson install
If you also want to build the packages then run:
$ cd ..
$ ./bt package
See https://github.com/Brewtarget/brewtarget/wiki/Development:-Getting-Started and comments in the bt
script for more details.