Skip to content

Commit 331ebb3

Browse files
update to the new electron version
1 parent c8aec57 commit 331ebb3

File tree

3 files changed

+52
-75
lines changed

3 files changed

+52
-75
lines changed

ElectronNET.Host/package-lock.json

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

ElectronNET.Host/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"license": "ISC",
1212
"dependencies": {
1313
"detect-port": "^1.2.1",
14-
"electron": "^1.7.8",
14+
"electron": "^1.7.11",
1515
"socket.io": "^2.0.3"
1616
},
1717
"devDependencies": {

ElectronNET.WebApp/Controllers/ShortcutsController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public IActionResult Index()
2222
await Electron.Dialog.ShowMessageBoxAsync(options);
2323
});
2424

25-
Electron.App.WillQuit += (args) => Task.Run(() => Electron.GlobalShortcut.UnregisterAll());
25+
Electron.App.WillQuit += () => Task.Run(() => Electron.GlobalShortcut.UnregisterAll());
2626
}
2727

2828
return View();

0 commit comments

Comments
 (0)