electron v1.4.15
https://github.com/electron/electron/releases/tag/v1.4.15Bug Fixes
Fixed a crash when calling preventDefault() on a new-window event for
a sandboxed window. #8377 (
https://github.com/electron/electron/pull/8377)
Fixed the dev tools not opening when a debugger was already attached. #8390 (
https://github.com/electron/electron/pull/8390)
Pulled in an upstream Chrome patch to fix an issue where certain webm
videos would not play. #8428 (
https://github.com/electron/electron/pull/8428)
Windows
Fixed incorrect window borders being rendered when the OS zoom level was
greater than 100%. #8404 (
https://github.com/electron/electron/pull/8404)
Fixed a regression where transparent windows wouldn't be transparent when
the window was fullscreen. #8438 (
https://github.com/electron/electron/pull/8438)
macOS
Fixed the window leaving fullscreen mode incorrectly when kiosk mode was
disabled. #8399 (
https://github.com/electron/electron/pull/8399)
New APIs
Added a contextIsolation option to BrowserWindow and tags
that loads the preload script and Electron APIs into a separate JavaScript
context that is isolated from the main page's JavaScript context. #8348 (
https://github.com/electron/electron/pull/8348)
The element now emits the context-menu event from the
underlying webContents object.