Claude Desktop 1.1.6679 (patch release 4)
This release provides Claude Desktop version 1.1.6679 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)
sudo apt install ./claude-desktop-bin_1.1.6679-4_amd64.debFedora/RHEL (manual .rpm)
sudo dnf install ./claude-desktop-bin-1.1.6679-1.x86_64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
chmod +x Claude_Desktop-1.1.6679-x86_64.AppImage
./Claude_Desktop-1.1.6679-x86_64.AppImageChecksums
| File | SHA256 |
|---|---|
| Tarball | ec1c74c615891e5c04f269e96da3bcf282f331a8d93808e52fb5ef3fbd30a05b
|
| AppImage | 8f9f9917a79441b9e0676e521d289f62b32905db27d64162bc0fe3140018625e
|
| Debian | 80048518b5ab42ed7d512fc583dc64fa37fa565dadb4aee0d64bbd92d1c110ef
|
| RPM | 0815ce30db34fbcaf4bb6fb95182b88e8d9b140e1a68761e85e7e937aea3724c
|
Changes since last release
Fixed
- fix_dock_bounce.py — Comprehensive fix for taskbar flashing on Wayland (#10). Suppresses ALL focus-stealing and activation-requesting behavior on Linux:
- No-op
flashFrame()andapp.focus()entirely on Linux - Guard
BrowserWindow.focus()— only passes through when window is already focused (WM handles activation) - Guard
BrowserWindow.show()— skips when window is already visible (prevents re-activation) - Enable
backgroundThrottlingon Linux — stops the renderer from compositing frames in background, which triggersxdg_activation_v1requests on Wayland - Early-return from
requestUserAttention()on Linux - Remove inline
app.focus({steal:!0})calls
- No-op