Download Furx 0.2.0

All builds are signed and reproducible from source on GitHub. 14-day Pro trial activates on first launch, no credit card.

macOS

Apple Silicon · notarized
Download .dmg (0.2.0)

Notarized with Apple Dev ID (7SB9GJ5W4L). Gatekeeper-friendly. macOS 12 (Monterey) or newer.

other formats

Windows

MSI · Azure signed
.msi installer (0.2.0)

Signed via Azure Trusted Signing. SmartScreen-friendly. Windows 10 21H2 / Windows 11.

Install via terminal

macOS
# Direct DMG
curl -L https://github.com/hernaninverso/furx/releases/latest/download/Furx_0.2.0_aarch64.dmg \
  -o ~/Downloads/Furx.dmg
open ~/Downloads/Furx.dmg
Linux (Debian/Ubuntu)
curl -L -O https://github.com/hernaninverso/furx/releases/latest/download/furx_0.2.0_amd64.deb
sudo apt install ./furx_0.2.0_amd64.deb
Linux (Fedora/RHEL)
curl -L -O https://github.com/hernaninverso/furx/releases/latest/download/furx-0.2.0-1.x86_64.rpm
sudo dnf install ./furx-0.2.0-1.x86_64.rpm
Windows (PowerShell)
Invoke-WebRequest `
  -Uri https://github.com/hernaninverso/furx/releases/latest/download/furx_0.2.0_x64-setup.exe `
  -OutFile $env:TEMP\furx-setup.exe
& $env:TEMP\furx-setup.exe

Checksums & signatures

Each release is signed with minisign (Tauri updater key) and a SHA256 manifest. Verify with shasum -a 256 -c SHA256SUMS.

FileSHA256
Furx_0.2.0_aarch64.dmg
Furx_0.2.0_x64.dmg
furx_0.2.0_amd64.deb
furx-0.2.0-1.x86_64.rpm
furx_0.2.0_amd64.AppImage
furx_0.2.0_x64-setup.exe

Full SHA256 manifest: SHA256SUMS · SHA256SUMS.minisig (minisign).

Build from source

Requires Rust 1.85+, Node 20+, and platform Tauri prerequisites (see Tauri docs).

git clone https://github.com/hernaninverso/furx && cd furx
npm install
(cd src-tauri && cargo build --release)
npx tauri build --bundles app

# Install as ~/Applications/Furx.app (macOS, dev cert)
SRC=src-tauri/target/release/bundle/macos/Furx.app
DEST=/Applications/Furx.app
rm -rf "$DEST" && ditto "$SRC" "$DEST" && xattr -cr "$DEST"
open "$DEST"
Older versions on GitHub Releases. See the changelog for what's new in 0.2.0.