Claude Desktop 1.1.9493
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-1_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.1.9493-1_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-1.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.1.9493-1.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 | f651ed1c2a6ece851dee6bb15d3fa0d6e6201af2def9f74effd1b173323ac537
|
| AppImage (x86_64) | dfbfce6755ccb24c17de53b2a3cfa298896e9b2933fe715fe9ac1af4214c4613
|
| AppImage (aarch64) | b0a1e122547633515309be5be4603ec4e03e22906b669fe4c66316753cfb7d75
|
| Debian (amd64) | 2a6b5b70e364761dda2101da6917df16229f049364c6fec70010870bbae984fe
|
| Debian (arm64) | 98a3cc5d00e2ae872dd5c835f94d9bc62e1df73821214a620015e9cc96738ff1
|
| RPM (x86_64) | 32a3b5d812f7e219b601286505b31b32c5b0c95ebf8d1ed8d16eabe951723bef
|
| RPM (aarch64) | c0e6b80e8829275963d5a0e4f77421272c0ce41e2ea440111600508d204900cd
|
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.