Claude Desktop 1.5354.0 (patch release 2)
This release provides Claude Desktop version 1.5354.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.5354.0-2_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.5354.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.5354.0-2.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.5354.0-2.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.5354.0-x86_64.AppImage
./Claude_Desktop-1.5354.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.5354.0-aarch64.AppImage
./Claude_Desktop-1.5354.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 | d542751f3918e3438b3be3db1d038f9c82910873f9a5e06fbb16bcb2b0e5636b
|
| AppImage (x86_64) | d28052e3ffff540e8341ecd2faea85c5a6ac93a7bcc7a66571e3cb2785ede31d
|
| AppImage (aarch64) | 2ab681a581ace28a228ba729ffe494d7a9c085d7b40f6bc4b0f3dd4e4a98d844
|
| Debian (amd64) | c8b11b4800362718a12f4f2383d8134c5579390d1b12fd8ae3e58dd317f989ff
|
| Debian (arm64) | ab03921934d5e0bae4c36a5422f8b7476e64a92615f168ea92f5c5f392e13379
|
| RPM (x86_64) | 85cb6600e09f28b4968df11af11886bfbbc40aa38955ed0599b6e1b673c42122
|
| RPM (aarch64) | 7d64a14e6e3610410e5e43e0834ba981250c6171159b3b9aab328a4e0f1e2344
|
Changes since last release
- Fix: Personal plugins installed via Claude Code CLI now appear under "Personal Plugins" instead of the current project header (#74, #75). The CLI stores personal plugins with
scope="project"+projectPath=$HOME, and since$HOMEis a prefix of every project path, they matched the project branch instead of the user branch. New sub-patch B infix_marketplace_linux.nimpromotes these entries toscope="user"at read time (on-disk JSON unchanged). — contributed by @boommasterxd - Hardened: Moved
patchesAppliedcounter insideproc apply*(codebase convention), addedprocess.env.HOMEguard against undefined, added brace-balance verification