Electron 27.0.0
Electron 27.0.0 已发布! 此次升级中包含 Chromium 118.0.5993.32
,V8 11.8
,和 Node.js 18.17.1
。
Electron 团队很高兴发布了 Electron 27.0.0! 您可以通过 npm install electron@latest
进行安装,或者从我们的 发布网站 下载它。 继续阅读此版本的详细信息。
如果您有任何反馈,请在 Twitter 或 Mastodon 上与我们分享,或加入我们的 Discord 社区! Bug 和功能请求可以在 Electron 的 问题跟踪器 中报告。
重要变化
架构(Stack)更新
- Chromium
118.0.5993.32
- Node.js
18.17.1
- V8
11.8
重大更改
已移除:macOS 10.13 / 10.14 / 支援
macOS 10.13 (High Serria) 和 macOS 10.14 (Mojave) 不再支援Chromium.
旧版本的 Electron 将继续在这些操作系统上运行,但需要 macOS 10.15 (Catalina) 或更高版本才能运行 Electron v27.0.0 及更高版本。
弃用:ipcRenderer.sendTo()
ipcRenderer.sendTo()
已被弃用。 可以通过在渲染器之间设置一个 MessageChannel
来替换它。
IpcRendererEvent
的 senderId
和 senderIsMainFrame
属性也已被弃用。
已删除: systemPreferences
中的 color scheme 相关事件
以下 systemPreferences
事件已被删除:
inverted-color-scheme-changed
high-contrast-color-scheme-changed
请改用 nativeTheme
模块上的新 updated
事件。
// 已删除
systemPreferences.on('inverted-color-scheme-changed', () => {
/* ... */
});
systemPreferences.on('high-contrast-color-scheme-changed', () => {
/* ... */
});
// 替换为
nativeTheme.on('updated', () => {
/* ... */
});
已删除: webContents.getPrinters
webContents.getPrinters
方法已被删除。 使用webContents.getPrintersAsync
代替。
const w = new BrowserWindow({ show: false });
// 已删除
console.log(w.webContents.getPrinters());
// 替换为
w.webContents.getPrintersAsync().then((printers) => {
console.log(printers);
});
已删除:systemPreferences.{get,set}AppLevelAppearance
和 systemPreferences.appLevelAppearance
方法 systemPreferences.getAppLevelAppearance
和 systemPreferences.setAppLevelAppearance
已被删除,也包括属性 systemPreferences.appLevelAppearance
。 请改用模块 nativeTheme
。
// 已删除
systemPreferences.getAppLevelAppearance();
// 替换为
nativeTheme.shouldUseDarkColors;
// 已删除
systemPreferences.appLevelAppearance;
// 替换为
nativeTheme.shouldUseDarkColors;
// 已删除
systemPreferences.setAppLevelAppearance('dark');
// 替换为
nativeTheme.themeSource = 'dark';
已删除:systemPreferences.getColor
的 alternate-selected-control-text
值
systemPreferences.getColor
的 alternate-selected-control-text
值已被删除。 替换为 selected-content-background
。
// 已删除
systemPreferences.getColor('alternate-selected-control-text');
// 替换为
systemPreferences.getColor('selected-content-background');
新特性
- 添加了应用可访问性透明度设置 API #39631
- 添加了对
chrome.scripting
扩展 API 的支持 #39675 - 默认启用
WaylandWindowDecorations
#39644
终止对 24.x.y 的支持
根据项目的支持政策,Electron 24.x.y 已经达到了支持的终点。 我们鼓励开发者将应用程序升级到更新的 Electron 版本。
E27(23 年 10 月) | E22 (23 年 12 月) | E29(24 年 2 月) |
---|---|---|
27.x.y | 28.x.y | 29.x.y |
26.x.y | 27.x.y | 28.x.y |
25.x.y | 26.x.y | 27.x.y |
终止对 22.x.y 的支持
今年早些时候,Electron 团队将 Electron 22 的计划生命终止日期从 2023 年 5 月 30 日延长至 2023 年 10 月 10 日,以配合 Chrome 对 Windows 7/8/8.1 的扩展支持(详情请查看 Farewell, Windows 7/8/8.1)。
根据项目的支持政策和此支持扩展,Electron 22.x.y 已经达到了支持的终点。 这将恢复到支持最新的三个稳定的主要版本,并将结束对 Windows 7/8.1 的官方支持。
接下来
在短期内,您可以期待团队继续专注于跟上构成 Electron 的主要组件的开发,包括 Chromium、Node 和 V8。
您可以在此处找到 Electron的公开时间表。
有关这些和未来变化的更多信息可在 计划的突破性变化 页面找到。