Note: This is a beta release. Please file new issues for any bugs you find in it.
This release is published to npm under the beta tag and can be installed via npm install electron@beta
, or npm install electron@25.0.0-beta.7
.
Release Notes for v25.0.0-beta.7
Features
- Added several new cursor values to the
cursor-changed
event. #38363
Fixes
- Fixed an issue where
BrowserWindow.isMaximized()
could incorrectly return true for minimized or fullscreened windows on macOS. #38307 (Also in 23, 24) - Fixed an issue where
BrowserWindow.isVisible()
would incorrectly returntrue
for minimized windows on Windows. #38314 (Also in 23, 24) - Fixed an issue where
getNormalBounds()
returns incorrect bounds for transparent maximized windows on Windows. #38348 - Fixed an issue where accessing
BrowserWindow.id
threw an error after the window was destroyed. #38311 (Also in 23, 24) - Fixed an issue where calling
win.minimize()
directly after callingwin.maximize()
, and then callingwin.isMaximized()
incorrectly returnstrue
. #38345 (Also in 23, 24)
Other Changes
- Backported fix for 1404797. #38333