Electron 26.0.0
· 2 мин. прочитано
Electron 26.0.0 вышел! Он включает обновления Chromium 116.0.5845.62
, V8 11.2
и Node.js 18.16.1
. Read below for more details!
Команда Electron рада объявить о выпуске Electron 26.0.0! You can install it with npm via npm install electron@latest
or download it from our releases website. Continue reading for details about this release.
If you have any feedback, please share it with us on Twitter, or join our community Discord! Bugs and feature requests can be reported in Electron's issue tracker.
Notable Changes
Stack Changes
- Chromium
116.0.5845.62
- Node.js
18.16.1
- V8
11.2
Критические изменения
Устарело: 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);
});