macOS
Apple Silicon · notarizedSigned with an Apple Developer ID and notarized. Gatekeeper-friendly. macOS 12 (Monterey) or newer, Apple Silicon. Intel: build from source below.
All builds are signed and reproducible from source on GitHub. 14-day Pro trial activates on first launch, no credit card.
Signed with an Apple Developer ID and notarized. Gatekeeper-friendly. macOS 12 (Monterey) or newer, Apple Silicon. Intel: build from source below.
deb / rpm / AppImage builds land through GitHub Actions shortly after launch — watch Releases. Building from source works today (the codebase cross-compiles cleanly).
The Windows installer lands through GitHub Actions — watch Releases. The code is verified to compile for Windows; building from source works today.
# 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
git clone https://github.com/hernaninverso/furx && cd furx npm install npx tauri build # prebuilt packages land on GitHub Releases via CI
Verify with shasum -a 256 <file> and compare against the table below (also published on each GitHub Release).
| File | SHA256 |
|---|---|
| Furx_0.2.0_aarch64.dmg | 2cab75c8e2a5647da11c5e708ff56060647f71e4256186d96c756e638f3e0351 |
Checksums for every artifact are listed on the corresponding GitHub Release page.
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"