Claude Desktop 1.1.9493 (patch release 2)
This release provides Claude Desktop version 1.1.9493 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.1.9493-2_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.1.9493-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.1.9493-2.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.1.9493-2.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.1.9493-x86_64.AppImage
./Claude_Desktop-1.1.9493-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.1.9493-aarch64.AppImage
./Claude_Desktop-1.1.9493-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 | dc8af010dfbd0526c9930fbc8e146dc86d49c1fe92f9710f324ae402ac53d8c4
|
| AppImage (x86_64) | 38a701323c85d553cbf444a4f0289c8f2717173bc066055a0cfeb9aef3458b5b
|
| AppImage (aarch64) | a86638a8830439d6dc9e1367b63d842cb069f949f01626a6a5d35644fc64b863
|
| Debian (amd64) | 4c0a147dc057f1c6a40fbb9cdf1592fd5853cbac39f9ce351d104d1e61e3fef9
|
| Debian (arm64) | e62c5c839d2827369b71afaf1cc2f8f7d1725c0a1fedbb746b9e3da3760e6312
|
| RPM (x86_64) | 209f065b6e70de5267c9b882d4060c596d7b899e0af0ba8005f9616dec719cea
|
| RPM (aarch64) | c916a775476b44e82b3745915f7b9af3ddf9e0f4059d4225b78e4f18cacf1ff6
|
Changes since last release
Changed
- Version bump to v1.1.9493 — Upstream metadata-only re-release; JS bundles are byte-for-byte identical to v1.1.9310. No new features, MCP servers, or platform checks.
- Custom themes: visual polish — Borders now use accent color with subtle alpha (e.g.
#cba6f718) instead of neutral gray, matching each theme's palette. Added accent-colored scrollbars, dialog/menu/tooltip glow shadows, button hover glow, smooth transitions on interactive elements, and transparent input borders/focus rings for a cleaner look. All 6 theme JSON files updated.
Fixed
- fix_process_argv_renderer.py: Platform spoof pattern (
platform="win32") no longer exists in mainView.js. Added primary pattern matchingexposeInMainWorld("process",<var>)to insertargv=[]before the expose call. Old spoof-based and appVersion-based patterns retained as fallbacks. - enable_local_agent_mode.py: Async feature merger restructured from arrow function
async()=>({...Oh(),...})to block body withPromise.alland explicitreturn{...vw(),...}. Added new regex for the block-body format; old arrow-function pattern retained as fallback.
Docs
- CLAUDE_BUILT_IN_MCP.md: Expanded Claude Preview section with full tool catalog (13 tools),
.claude/launch.jsonconfiguration, and architecture description. Updated to v1.1.9493. - CLAUDE.md: Added CI-managed files section documenting that README install command versions are updated automatically by CI.