Here you can find unreleased "nightly" binaries, if any. By using these and providing feedback, eg in chat, you will be helping to make the next hledger release better.
Here's what's new since hledger 1.42: commits
If you have eget, that's a convenient way to download the right binaries for your machine:
Otherwise: At the command line:
In a terminal window (don't use your web browser to download, it won't authorise the binaries):
For ARM macs:
For Intel macs:
In a powershell window (press Make a place to keep installed binaries. You only need to do this once, not for every release:
Download and install the release binaries:
Ensure a default journal file exists, and without a problematic encoding. (I'm not sure why "ascii" is needed here - hledger likes utf8 and understands utf8 BOM headers,
Install
All platforms
eget simonmichael/hledger --all --tag nightly
GNU/Linux, 64-bit Intel
cd /usr/local/bin
curl -fLOC- https://github.com/simonmichael/hledger/releases/download/refs/tags/1.42.99/hledger-linux-x64.tar.gz
tar xzf hledger-linux-x64.tar.gz
cd
hledger --version; hledger-ui --version; hledger-web --version # should show a recent .99 version
Mac, 64-bit ARM or Intel
cd /usr/local/bin
curl -fLOC- https://github.com/simonmichael/hledger/releases/download/refs/tags/1.42.99/hledger-mac-arm64.tar.gz
tar xzf hledger-mac-arm64.tar.gz
cd
hledger --version; hledger-ui --version; hledger-web --version # should show a recent .99 version
cd /usr/local/bin
curl -fLOC- https://github.com/simonmichael/hledger/releases/download/refs/tags/1.42.99/hledger-mac-x64.tar.gz
tar xzf hledger-mac-x64.tar.gz
cd
hledger --version; hledger-ui --version; hledger-web --version # should show a recent .99 version
Windows, 64-bit ARM or Intel
WINDOWS-R
, powershell
, ENTER
):
mkdir -force $HOME\bin >$null
$ENV:PATH += ";"+$HOME+"\bin"
[Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", [EnvironmentVariableTarget]::User)+";"+$HOME+"\bin", [EnvironmentVariableTarget]::User)
cd $HOME\bin
curl https://github.com/simonmichael/hledger/releases/download/refs/tags/1.42.99/hledger-windows-x64.zip -OutFile hledger-windows-x64.zip
Expand-Archive hledger-windows-x64.zip -DestinationPath . -Force
cd $HOME
hledger --version; hledger-ui --version; hledger-web --version # should show refs/tags/1.42.99; if not, check why: where.exe hledger
This will allow you to start hledger-web by double-clicking on its icon if you wish.
out-file -append -encoding ascii $HOME/.hledger.journal
but the state of our unicode support on Windows
is really unknown, your feedback is welcome.)