Claude Desktop 1.3109.0 (patch release 5)
This release provides Claude Desktop version 1.3109.0 pre-patched for Linux.
Installation Options
Arch Linux (AUR)
yay -S claude-desktop-binDebian/Ubuntu (APT Repository — recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install.sh | sudo bash
sudo apt install claude-desktop-binDebian/Ubuntu (manual .deb)
# x86_64
sudo apt install ./claude-desktop-bin_1.3109.0-5_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.3109.0-5_arm64.debFedora/RHEL (RPM Repository — recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-rpm.sh | sudo bash
sudo dnf install claude-desktop-binFedora/RHEL (manual .rpm)
# x86_64
sudo dnf install ./claude-desktop-bin-1.3109.0-5.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.3109.0-5.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.3109.0-x86_64.AppImage
./Claude_Desktop-1.3109.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.3109.0-aarch64.AppImage
./Claude_Desktop-1.3109.0-aarch64.AppImageUpdate existing AppImage (delta download — only changed blocks):
appimageupdatetool Claude_Desktop-*-x86_64.AppImage # Or from within the AppImage: ./Claude_Desktop-*-x86_64.AppImage --appimage-update
Checksums
| File | SHA256 |
|---|---|
| Tarball | da02f22c4fbab3d2924f022f5f613f5dcf2d38356756fe6fdd82662c2a8cbea6
|
| AppImage (x86_64) | 946e7fb9ba73fc3cf7b43ec0110925165afa57ae17913af59d05374812d423ce
|
| AppImage (aarch64) | 6f1c2a886578cbe4758e8728a6cd27a7d728047b9f23bfb7bbf44bb361fda3ce
|
| Debian (amd64) | c989d9af8f4a0239e2aaff70db180d159d23d7e61af83be7ca5c04fb305b1d68
|
| Debian (arm64) | 4c20e23e7f29b873fba5c78e829c499ef8f3eca2de9740cc7e899445626581fe
|
| RPM (x86_64) | 83b870af2cff6395323d8403d2d8d3ff5f6852dc95a107cd2243829fb87fde3b
|
| RPM (aarch64) | a8cd225677f13fbba497292f73e7378390f436d15aaf038a1626eecd7d0e00bb
|
Changes since last release
Fixed
- CI build broken:
patches/.gitignorepatterns (fix_*,add_*,enable_*) excluded.nimsource files from git. All 41 Nim patches were never committed, causing CI to apply zero patches and crash onen-US.jsonENOENT. Added!*.nimnegation to track sources while still ignoring compiled binaries. - Nim compile fails on read-only mount: CI bind-mounts
/inputas read-only, so Nim can't write.nimcacheor compiled binaries. Build script now copies patches to a writable temp dir when the source dir is read-only.