Claude Desktop 1.1.1520
This release provides Claude Desktop version 1.1.1520 pre-patched for Linux.
Installation Options
Arch Linux (AUR)
yay -S claude-desktop-binDebian/Ubuntu (.deb)
# Download the .deb file, then:
sudo apt install ./claude-desktop_1.1.1520_amd64.deb
# Note: Requires 'electron' package from your distro or a PPAAppImage (Any Distro)
chmod +x Claude_Desktop-1.1.1520-x86_64.AppImage
./Claude_Desktop-1.1.1520-x86_64.AppImageChecksums
| File | SHA256 |
|---|---|
| Tarball | fc4275bee2a802817cec3045e47c329ce5c0fcdac3cecc747fc8d2c9d42f0498
|
| AppImage | 77c72bf07bb6f6eed0f6d4eb2bb3e164a835ed25bda94495c6cb4fcd07547be7
|
| Debian | 285e9da96cfb3ee04215244769aed568c307acb653ad958949aea197a5ba5cc5
|
Recent Changes
Fixed
- Top bar now clickable on Linux - Fixed non-clickable top bar elements (sidebar toggle, back/forward arrows, Chat/Code tabs, incognito button):
- Root cause:
titleBarStyle:"hidden"creates an invisible drag region across the top ~36px on Linux, intercepting all mouse events even withframe:true - Fix:
fix_native_frame.pynow replacestitleBarStyle:"hidden"with"default"on Linux via platform-conditional (process.platform==="linux"?"default":"hidden"), targeting only the main window (Quick Entry window preserved) - Removed
fix_title_bar.pyandfix_title_bar_renderer.py(no longer needed — the native top bar works correctly once the invisible drag region is eliminated)
- Root cause: