Claude Desktop 1.569.0 (patch release 8)
This release provides Claude Desktop version 1.569.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.569.0-8_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.569.0-8_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.569.0-8.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.569.0-8.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.569.0-x86_64.AppImage
./Claude_Desktop-1.569.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.569.0-aarch64.AppImage
./Claude_Desktop-1.569.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 | 8a26e134b9717166c1a4d4525e057d8c02535b3236b11c4778dd86e745d17857
|
| AppImage (x86_64) | a473c1c24376b0feeabab439d0aff55008fa16feea61740f022d1c77693b05ac
|
| AppImage (aarch64) | c656c6062219059f7443c64520052399a297ec8658bf02a800af97cfc30f90d4
|
| Debian (amd64) | ad6d169b4b1a7984829a565fc4bf2ee0eb86d7a8474036172592cc6c22ad9f5a
|
| Debian (arm64) | c9f583202107aa8dd7976c31b9cc52bf8ea00db1a04a7410865c27cf26cfa72b
|
| RPM (x86_64) | 4c5d42c55c1a65f659df53e34d7cb902e00fee69c8202a9858916b62544a2776
|
| RPM (aarch64) | ea4f5f987d6a1caf3a2f09dfe6264db2ffcdf98b85256fc37fe4a4d53ae403df
|
Changes since last release
Fixed
- fix_asar_folder_drop.py: Rewrote patch to filter
.asarpaths at thenoe()function — the single convergence point for all file-drop dispatches to Cowork. The previous patch only guarded theisDirectoryhelper, but app.asar fell through to theexistsSynccheck and got dispatched as a file instead of a folder. Also guards the second-instance argv parser (KXn) as defense-in-depth. Credit: @dvolonnino for identifying the fix.