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)

Signed with an Apple Developer ID and notarized. Gatekeeper-friendly. macOS 12 (Monterey) or newer, Apple Silicon. Intel: build from source below.

Linux

coming via CI
Watch GitHub Releases

deb / rpm / AppImage builds land through GitHub Actions shortly after launch — watch Releases. Building from source works today (the codebase cross-compiles cleanly).

Windows

coming via CI
Watch GitHub Releases

The Windows installer lands through GitHub Actions — watch Releases. The code is verified to compile for Windows; building from source works today.

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 / Windows (from source)
git clone https://github.com/hernaninverso/furx && cd furx
npm install
npx tauri build
# prebuilt packages land on GitHub Releases via CI

Checksums & signatures

Verify with shasum -a 256 <file> and compare against the table below (also published on each GitHub Release).

FileSHA256
Furx_0.2.0_aarch64.dmg2cab75c8e2a5647da11c5e708ff56060647f71e4256186d96c756e638f3e0351

Checksums for every artifact are listed on the corresponding GitHub Release page.

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.