Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).

_This release is scheduled to be released on 2023-10-01._

> ⚠️ This release needs nodejs version > `v18`, older release have reached end of life and will not work!
> ⚠️ This release needs nodejs version >= `v18`, older release have reached end of life and will not work!

### Added

Expand Down Expand Up @@ -45,6 +45,7 @@ _This release is scheduled to be released on 2023-10-01._
- Fix time issue with certain recurring events in calendar module
- Fix ipWhiteList test (#3179)
- Fix newsfeed: Convert HTML entities, codes and tag in description (#3191)
- Respect width/height (no fullscreen) if set in electronOptions in `config.js` (#3174)

## [2.24.0] - 2023-07-01

Expand Down
1 change: 0 additions & 1 deletion js/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ function createWindow() {
});

mainWindow.once("ready-to-show", () => {
mainWindow.setFullScreen(true);
mainWindow.show();
});
}
Expand Down