Claude Desktop 1.1617.0 (patch release 2)
This release provides Claude Desktop version 1.1617.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.1617.0-2_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.1617.0-2_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.1617.0-2.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.1617.0-2.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.1617.0-x86_64.AppImage
./Claude_Desktop-1.1617.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.1617.0-aarch64.AppImage
./Claude_Desktop-1.1617.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 | 1a39624e7e0bd467c3c0fd3c16a7d67ab0ccf76eb30404ccd803cfa8bcc1bcba
|
| AppImage (x86_64) | bea3ad245c712bb25a6257035f25805595128849f50aad20a007ff9ca2e348a0
|
| AppImage (aarch64) | 558e52f49773281079ceb9523cd06a5060da92fd82394f4f830c36a185f32df6
|
| Debian (amd64) | 4354fb354eb58ca7c31bb987bc7096dbbdf2af544df25e816e3e6597a6374440
|
| Debian (arm64) | ce7851c50230e4f298b559fcde5e86d679011a288523771b1fbf7b00c5bb8907
|
| RPM (x86_64) | 15d64a9ef11bda156eff8c827c066bb3efea7bd1247a4d277b44ed91f13fe37e
|
| RPM (aarch64) | fcd43590af600d5ff65a69ebbc008b5503524b58fbf45120636f409c922dfe49
|
Changes since last release
Patches
- Critical fix:
fix_dispatch_linux.py— removed erroneous override of GrowthBook flag1143815894(hostLoopMode). Forcing this flagtruemade Desktop bypass the cowork service spawn entirely, falling back to a bare HostLoop SDK that lacksmcp__workspace__bashand plugin skill mapping. Result: all Cowork skills (/pdf,/docx,/pptx, etc.) returned "Unknown skill" and sessions completed in ~12ms with zero API calls. Fix: only override flag3558849738(dispatch agent name), leave1143815894to its default so the cowork service handles session spawning. - New sub-patch:
fix_cowork_linux.pyPatch F — allowspresent_filesMCP tool to accept native host paths. Previously,present_filesonly accepted/sessions/VM paths; on native Linux without root (no/sessions/symlink), all files failed the accessibility check. The patch falls back to checking the host outputs directory.
Build
- Copy missing
cowork-plugin-shim.sh— the plugin permission bridge file was present in the upstream exe but not copied during build. Without it, Desktop logs a[warn] ENOENTon every session start. The shim enables the confirmation UI for plugin operations (e.g., "allow send email?") but is not required for skills to load — the actual skills breakage was caused by the hostLoopMode flag above.