Claude Desktop 1.1.7714 (patch release 7)
This release provides Claude Desktop version 1.1.7714 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.7714-7_amd64.debFedora/RHEL (manual .rpm)
sudo dnf install ./claude-desktop-bin-1.1.7714-1.x86_64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
chmod +x Claude_Desktop-1.1.7714-x86_64.AppImage
./Claude_Desktop-1.1.7714-x86_64.AppImageChecksums
| File | SHA256 |
|---|---|
| Tarball | 046a3b6c147099389894af788f5a611bce18b1ddc06f289a5c4697c0a86e1fee
|
| AppImage | 072eea9fd6ed94d99871fdf934bdf16ec05844ec2c53b2fd998fbf1efeb1a85f
|
| Debian | 96192eca671678cb24eeb60716cc0d32620db40bdf6f557a711e0f2462155bef
|
| RPM | ea0c3eec0f9040140a15d3de7940c17f02f9ed995e7f22ce4d21cd08de7f66fd
|
Changes since last release
Fixed
- fix_dispatch_linux.py — Restore Patch I (text→SendUserMessage transform) — Claude Code CLI 2.1.x has a bug where
--brief+--tools SendUserMessagedoes not expose theSendUserMessagetool to the model. The model falls back to plain text, which the sessions API silently drops (onlySendUserMessagetool_use blocks are rendered on the phone). Patch I injects a transform inforwardEvent()that wraps plain text assistant messages as syntheticSendUserMessagetool_use blocks before writing to the transport.
Changed
fix_dispatch_linux.py — Removed Patch I— Reverted: Patch I is needed as a workaround for the CLISendUserMessagebug
Added
- CLAUDE_BUILT_IN_MCP.md — Per-session dynamic MCP servers — Documented 4 SDK-type MCP servers created dynamically per cowork/dispatch session:
dispatch(6 tools),cowork(4 tools),session_info(2 tools),workspace(2 tools). Includes tool schemas, registration method, allowedTools/disallowedTools logic, and SDK server architecture diagram comparing Mac/Windows VM vs Linux native paths. - fix_updater_state_linux.py — New patch: add
version/versionNumberempty strings to idle updater state so downstream code calling.includes()onversiondoesn't crash withTypeError: Cannot read properties of undefined - fix_process_argv_renderer.py — New patch: inject
Ie.argv=[]into preload so SDK web bundle'sprocess.argv.includes("--debug")no longer throws TypeError
Fixed
- Dispatch text responses now render — Patched the sessions-bridge
rjt()filter (Patch F) to forward text content blocks and SDK MCP tool_use responses (mcp__dispatch__send_message,mcp__cowork__present_files) - Navigator platform timing gap — Changed navigator.platform spoofing from
dom-readyonly to bothdid-navigate+dom-readyfallback, closing the window where page scripts see realnavigator.platformwhileprocess.platformis already spoofed to"win32" - Removed diagnostic patches G/H — forwardEvent and writeEvent logging removed from fix_dispatch_linux.py (no longer needed)
Documentation
- CLAUDE.md — Added "Dispatch Debug Workflow" section with step-by-step debug commands for bridge events, audit analysis, cowork-service args, and session clearing
- README.md — Added "Clear Dispatch session" troubleshooting section