Skip to content

Commit

Permalink
app id and updated chromium version
Browse files Browse the repository at this point in the history
  • Loading branch information
steveseguin committed Jul 11, 2024
1 parent 71c60c3 commit 578f101
Show file tree
Hide file tree
Showing 3 changed files with 392 additions and 169 deletions.
7 changes: 6 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ process.on('uncaughtException', function (error) {
});

unhandled();
//app.setAppUserModelId("app."+Date.now());

var ver = app.getVersion();

Expand Down Expand Up @@ -161,6 +160,12 @@ function getDirectories(path) {
return fs.statSync(path+'/'+file).isDirectory();
});
}
if (Argv.title){
app.setAppUserModelId(Argv.title);
} else {
app.setAppUserModelId("ele.cap");
}


if (!(Argv.hwa)){
app.disableHardwareAcceleration();
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "VDON.Electron.Capture.App",
"version": "2.18.3",
"version": "2.18.4",
"description": "A simple tool to aid with frameless window video capture and VDON publishing",
"author": "Steve Seguin <[email protected]>",
"main": "main.js",
Expand All @@ -15,8 +15,8 @@
"release": "electron-builder --publish always"
},
"repository": {
"type" : "git",
"url" : "https://github.com/steveseguin/electroncapture.git"
"type": "git",
"url": "https://github.com/steveseguin/electroncapture.git"
},
"build": {
"appId": "capture.electron",
Expand Down Expand Up @@ -111,7 +111,7 @@
"afterSign": "./afterSign.js"
},
"devDependencies": {
"electron": "^29.1.4",
"electron": "^31.2.0",
"electron-builder": "^24.13.3",
"electron-notarize": "git://github.com/electron/notarize.git",
"rimraf": "^5.0.5",
Expand Down
Loading

0 comments on commit 578f101

Please sign in to comment.