Skip to content

Commit d3910bb

Browse files
committed
Bump to v2.23.2, update custom Electron to v39.2.16-qp20
- Updated custom Electron build with improved frameless window handling - DWM border now properly hidden when window loses focus - Native C++ toggle of WS_THICKFRAME and DWMWA_BORDER_COLOR on blur/focus
1 parent ad3aedb commit d3910bb

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "VDON.Electron.Capture.App",
3-
"version": "2.23.1",
3+
"version": "2.23.2",
44
"description": "A simple tool to aid with frameless window video capture and VDO.Ninja publishing",
55
"author": "Steve Seguin <steve@seguin.email>",
66
"main": "main.js",
@@ -33,15 +33,15 @@
3333
"build": {
3434
"appId": "capture.electron",
3535
"productName": "elecap",
36-
"electronVersion": "39.2.13-qp20",
36+
"electronVersion": "39.2.16-qp20",
3737
"npmRebuild": false,
3838
"asarUnpack": [
3939
"native-modules/**/*.node",
4040
"native-modules/**/*.dll"
4141
],
4242
"electronDownload": {
4343
"mirror": "https://github.com/steveseguin/electron/releases/download/",
44-
"customDir": "v39.2.13-qp20"
44+
"customDir": "v39.2.16-qp20"
4545
},
4646
"protocols": {
4747
"name": "electroncapture",

scripts/install-custom-electron.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ const { Readable } = require('stream');
1010
const CHECKSUM_MANIFEST = 'SHASUMS256.txt';
1111
const PLATFORM_TARGETS = new Map([
1212
['win32', {
13-
version: '39.2.13-qp20',
14-
releaseTag: 'v39.2.13-qp20',
13+
version: '39.2.16-qp20',
14+
releaseTag: 'v39.2.16-qp20',
1515
mirrorBase: 'https://github.com/steveseguin/electron/releases/download/',
1616
artifacts: new Map([
17-
['x64', 'electron-v39.2.13-qp20-win32-x64.zip']
17+
['x64', 'electron-v39.2.16-qp20-win32-x64.zip']
1818
])
1919
}],
2020
['linux', {

0 commit comments

Comments
 (0)