Electron 28.0.0
Electron 28.0.0 现已发布!它包含对 Chromium 120.0.6099.56
、V8 12.0
和 Node.js 18.18.2
的升级。
Electron 团队很高兴地宣布 Electron 28.0.0 发布!您可以通过 npm install electron@latest
使用 npm 安装它,或从我们的 发布网站 下载它。继续阅读以了解有关此版本的详细信息。
如果您有任何反馈,请在 Twitter 或 Mastodon 上与我们分享,或加入我们的社区 Discord!错误和功能请求可以在 Electron 的 问题跟踪器 中报告。
重大更改
亮点
- 实现了对 ECMAScript 模块或 ESM 的支持(什么是 ECMAScript 模块?在此处了解更多信息)。这包括对 Electron 本身中 ESM 的支持,以及
UtilityProcess
API 入口点等区域。查看我们的 ESM 文档 以获取更多详细信息。 - 除了在 Electron 本身中启用 ESM 支持外,Electron Forge 还支持使用 ESM 打包、构建和开发 Electron 应用程序。您可以在 Forge v7.0.0 或更高版本中找到此支持。
堆栈更改
- Chromium
120.0.6099.56
- Chrome 119 中的新增功能Chrome 119 和 DevTools 119 中的新增功能
- Chrome 120 中的新增功能Chrome 120 和 DevTools 120 中的新增功能
- Node
18.18.2
- V8
12.0
新功能
- 启用了 ESM 支持。#37535
- 有关更多详细信息,请参阅 ESM 文档。
- 向
UtilityProcess
API 添加了 ESM 入口点。#40047 - 向
display
对象添加了几个属性,包括detected
、maximumCursorSize
和nativeOrigin
。#40554 - 在 Linux 上添加了对
ELECTRON_OZONE_PLATFORM_HINT
环境变量的支持。#39792
重大更改
行为更改:WebContents.backgroundThrottling
设置为 false 会影响主机 BrowserWindow
中的所有 WebContents
WebContents.backgroundThrottling
设置为 false 将为其显示的所有 WebContents
禁用 BrowserWindow
中的帧节流。
已移除:BrowserWindow.setTrafficLightPosition(position)
BrowserWindow.setTrafficLightPosition(position)
已被移除,应改用 BrowserWindow.setWindowButtonPosition(position)
API,该 API 接受 null
而不是 { x: 0, y: 0 }
以将位置重置为系统默认值。
// Removed in Electron 28
win.setTrafficLightPosition({ x: 10, y: 10 });
win.setTrafficLightPosition({ x: 0, y: 0 });
// Replace with
win.setWindowButtonPosition({ x: 10, y: 10 });
win.setWindowButtonPosition(null);
已移除:BrowserWindow.getTrafficLightPosition()
BrowserWindow.getTrafficLightPosition()
已被移除,应改用 BrowserWindow.getWindowButtonPosition()
API,该 API 在没有自定义位置时返回 null
而不是 { x: 0, y: 0 }
。
// Removed in Electron 28
const pos = win.getTrafficLightPosition();
if (pos.x === 0 && pos.y === 0) {
// No custom position.
}
// Replace with
const ret = win.getWindowButtonPosition();
if (ret === null) {
// No custom position.
}
已移除:ipcRenderer.sendTo()
ipcRenderer.sendTo()
API 已被移除。它应该替换为在渲染器之间设置 MessageChannel
。
IpcRendererEvent
的 senderId
和 senderIsMainFrame
属性也已被移除。
已移除:app.runningUnderRosettaTranslation
app.runningUnderRosettaTranslation
属性已被移除。请改用 app.runningUnderARM64Translation
。
// Removed
console.log(app.runningUnderRosettaTranslation);
// Replace with
console.log(app.runningUnderARM64Translation);
25.x.y 版本的支持结束
根据项目的 支持策略,Electron 25.x.y 已达到支持结束。鼓励开发人员和应用程序升级到更新版本的 Electron。
E28 (2023 年 12 月) | E29 (2024 年 2 月) | E30 (2024 年 4 月) |
---|---|---|
28.x.y | 29.x.y | 30.x.y |
27.x.y | 28.x.y | 29.x.y |
26.x.y | 27.x.y | 28.x.y |
后续计划
短期内,团队将继续专注于跟进构成 Electron 的主要组件(包括 Chromium、Node 和 V8)的开发。
您可以在此处找到 Electron 的公开时间线。
有关未来更改的更多信息,请参阅计划中的重大更改页面。