diff options
author | Christoph Settgast <csett86_git@quicksands.de> | 2023-11-11 18:40:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-11 18:40:49 +0100 |
commit | 9dcb0953cb6d72ad6c1d8320744e1ae816cd4ddd (patch) | |
tree | 41837984b8bbb751b853b9b683ddae9a38edbcc7 | |
parent | 1aa2abc8970a951bc9194bcd882901ab9cb90d66 (diff) |
chore(deps) update electron to 27.0.3 (#921)
Contains electron 26 and 27 updates, for details see
https://www.electronjs.org/blog/electron-26-0
https://www.electronjs.org/blog/electron-27-0
Contains a fix for Linux that lead to crashes when the graphics drivers changed
https://github.com/electron/electron/pull/40467
Mainly this should help with further bugfixes in webrtc as the contained
Chromium is implicitly upgraded from 114 to 118.
In wayland / pipewire terms we have only minor additions, eg:
WaylandWindowDecorations by default: https://github.com/electron/electron/pull/39582
which means we can remove the enable flag we had on this in main.js as its now
default.
-rw-r--r-- | main.js | 4 | ||||
-rw-r--r-- | package-lock.json | 14 | ||||
-rw-r--r-- | package.json | 2 |
3 files changed, 10 insertions, 10 deletions
@@ -40,9 +40,9 @@ app.commandLine.appendSwitch('disable-features', 'DesktopCaptureMacV2,IOSurfaceC // Enable Opus RED field trial. app.commandLine.appendSwitch('force-fieldtrials', 'WebRTC-Audio-Red-For-Opus/Enabled/'); -// Wayland: Enable optional PipeWire and window decorations support. +// Wayland: Enable optional PipeWire support. if (!app.commandLine.hasSwitch('enable-features')) { - app.commandLine.appendSwitch('enable-features', 'WebRTCPipeWireCapturer,WaylandWindowDecorations'); + app.commandLine.appendSwitch('enable-features', 'WebRTCPipeWireCapturer'); } autoUpdater.logger = require('electron-log'); diff --git a/package-lock.json b/package-lock.json index db2e0ff..316bd16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40,7 +40,7 @@ "babel-loader": "^8.2.3", "concurrently": "5.1.0", "css-loader": "^6.7.1", - "electron": "25.8.4", + "electron": "27.0.4", "electron-builder": "24.4.0", "electron-context-menu": "^2.5.0", "electron-is-dev": "^1.2.0", @@ -6965,9 +6965,9 @@ } }, "node_modules/electron": { - "version": "25.8.4", - "resolved": "https://registry.npmjs.org/electron/-/electron-25.8.4.tgz", - "integrity": "sha512-hUYS3RGdaa6E1UWnzeGnsdsBYOggwMMg4WGxNGvAoWtmRrr6J1BsjFW/yRq4WsJHJce2HdzQXtz4OGXV6yUCLg==", + "version": "27.0.4", + "resolved": "https://registry.npmjs.org/electron/-/electron-27.0.4.tgz", + "integrity": "sha512-ob29rN1mtiyAXzF8HsHd5jh8bYKd9OQDakfdOExi0F7epU97gXPHaj6JPjbBJ/vpki5d32SyKVePW4vxeNZk1A==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -21323,9 +21323,9 @@ } }, "electron": { - "version": "25.8.4", - "resolved": "https://registry.npmjs.org/electron/-/electron-25.8.4.tgz", - "integrity": "sha512-hUYS3RGdaa6E1UWnzeGnsdsBYOggwMMg4WGxNGvAoWtmRrr6J1BsjFW/yRq4WsJHJce2HdzQXtz4OGXV6yUCLg==", + "version": "27.0.4", + "resolved": "https://registry.npmjs.org/electron/-/electron-27.0.4.tgz", + "integrity": "sha512-ob29rN1mtiyAXzF8HsHd5jh8bYKd9OQDakfdOExi0F7epU97gXPHaj6JPjbBJ/vpki5d32SyKVePW4vxeNZk1A==", "dev": true, "requires": { "@electron/get": "^2.0.0", diff --git a/package.json b/package.json index 7bc34ad..cdef308 100644 --- a/package.json +++ b/package.json @@ -179,7 +179,7 @@ "babel-loader": "^8.2.3", "concurrently": "5.1.0", "css-loader": "^6.7.1", - "electron": "25.8.4", + "electron": "27.0.4", "electron-builder": "24.4.0", "electron-context-menu": "^2.5.0", "electron-is-dev": "^1.2.0", |