Claude Desktop 1.13576.4
This release provides Claude Desktop version 1.13576.4 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.13576.4-1_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.13576.4-1_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.13576.4-1.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.13576.4-1.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.13576.4-x86_64.AppImage
./Claude_Desktop-1.13576.4-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.13576.4-aarch64.AppImage
./Claude_Desktop-1.13576.4-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 (x86_64) | 99470bd92a044bf9dc3d40ea873e94f4cf52e9033f40671ae70467a3f51043e4
|
| Tarball (aarch64) | 76c21a2bfdce7da40c6639ff067d944f74d68f03f7426ac436ec97c015158fd4
|
| AppImage (x86_64) | de1a840537dd467df82a23b138a04f7fda809a18acc5146e0cb295eeb1f831c3
|
| AppImage (aarch64) | 43602e2fecc1355374bd8813f465467181aa15f808abf26e3a0cb6ab6c533a34
|
| Debian (amd64) | 8868e913fd176fd63b7c4eeb60a2910496f704e8b9a6b93cf8fc6558cc08477e
|
| Debian (arm64) | bdd6c58918af2e111c8c412e1d74ea1b24a0292aed07ec339bc03a4f43ab9d21
|
| RPM (x86_64) | b26ece2d6445abbbe125a485f20a739670b5db2f1e66437eb121fad40985064b
|
| RPM (aarch64) | ce98411a9da87bdc0bf94d63a17a825fbed8657ef6429b45bc76fa5ab6c2a636
|
Changes since last release
Built-in terminal fixed (re: #143)
- New
fix_terminal_shell_linux.nim(51 patches total): the built-in agent/Cowork terminal now spawns a Linux shell instead of PowerShell. Upstream hardcodes the node-pty shell topowershell.exeon every platform, so on Linuxexecvp(3)fails and the PTY dies instantly ("Shell exited." / exit code 1). The patch rewrites only the shell string into a platform-aware ternary, anchored on the soleshell:"powershell.exe"occurrence. Thanks to Yannick Schäfer (@boommasterxd) for the fix (#144). - Off-Windows shell selection falls back
$SHELL→/bin/bash→/bin/sh. The/bin/shtier was added on top of the PR for NixOS (Nix flake target), which ships no/bin/bashby default; a runtimerequire("fs").existsSynccheck keeps the PTY from going dead when$SHELLis unset.