Skip to content

Commit

Permalink
Merge pull request #711 from TheLindaProjectInc/develop
Browse files Browse the repository at this point in the history
Update Altitude to 3.4.2
  • Loading branch information
nibbles83 authored Oct 30, 2024
2 parents 93fdae7 + 637d5c5 commit 9732970
Show file tree
Hide file tree
Showing 4 changed files with 335 additions and 262 deletions.
27 changes: 27 additions & 0 deletions doc/release-notes/release-notes-3.4.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Altitude 3.4.2

This is a bugfix release.

Please report bugs using the issue tracker at github: https://github.com/thelindaprojectinc/altitude/issues

## How to Upgrade
Shutdown Altitude if it is already running and then run the installer.

# About this Release

## Bugfixes
Fix a issue where the titlebar and menu does not show on Linux systems.

## Dependency/Build updates

Update Angular to 18.2.9
Update Angular-devkit/build-angular to 18.2.10
Upgrade Typescript to 5.5.4
Bump express from 4.21.0 to 4.21.1
Bump tslib from 2.7.0 to 2.8.0
Bump socket.io from 4.8.0 to 4.8.1
Bump crypto-browserify from 3.12.0 to 3.12.1
Bump chart.js from 4.4.4 to 4.4.6
Bump jasmine-core from 5.3.0 to 5.4.0
Bump @types/node from 22.7.2 to 22.8.4
Bump electron from 32.1.2 to 33.0.2
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function createWindow() {
icon: path.join(__dirname, 'assets/icons/png/512x512.png'),
webPreferences: { webSecurity: false, nodeIntegration: true, contextIsolation: false },
frame: process.platform !== 'win32',
titleBarStyle: 'hidden'
titleBarStyle: process.platform === 'linux' ? 'default' : 'hidden'
});


Expand Down Expand Up @@ -182,7 +182,7 @@ try {
app.on('before-quit', closeApp);

// Quit when all windows are closed.
app.on('window-all-closed', (event) => {
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
Expand Down
Loading

0 comments on commit 9732970

Please sign in to comment.