For AppImage use
Please use a tool like AppImageLauncher to enable the correct MimeType association. Otherwise you will not be able to login.
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;