github aaddrick/claude-desktop-debian v1.1.0+claude0.9.1

latest releases: v1.1.5+claude0.12.129, v1.1.5+claude0.12.125, v1.1.5+claude0.12.112...
5 months ago

For AppImage use

Please use a tool like AppImageLauncher to enable the correct MimeType association. Otherwise you will not be able to login.

More Information Here

Update Information

The primary change involves modifying the build.sh script to remove the negation ! in the JavaScript code via sed command. This negation is responsible for conditionally rendering the title bar on Windows. Removing it enables the title bar on any platform without having to roll the main_window renderer back to a previous version.

Minified source:

function u({ isMainWindow: e, windowTitle: t, titleBarHeight: n = e ? l : a }) {
  if (!d && e) return null;

Refactored:

function updateWindowState({
  isMainWindow: isMainWindow,
  windowTitle: windowTitle,
  titleBarHeight: titleBarHeight=isMainWindow ? DEFAULT_MAIN_WINDOW_TITLE_BAR_HEIGHT : DEFAULT_AUX_WINDOW_TITLE_BAR_HEIGHT,
}) {
  if (!isWindows && isMainWindow) return null;

After sed update:

function u({ isMainWindow: e, windowTitle: t, titleBarHeight: n = e ? l : a }) {
  if (d && e) return null;

Don't miss a new claude-desktop-debian release

NewReleases is sending notifications on new releases.