Compare commits

...

2 Commits

Author SHA1 Message Date
bigjakk 3c7c559748 chore: bump version to 0.7.4 2026-04-13 19:04:15 -07:00
bigjakk 9e466ea9c4 security: enable preload sandbox on game and tab windows 2026-04-13 18:48:29 -07:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "krunker-civilian-client", "name": "krunker-civilian-client",
"version": "0.7.3", "version": "0.7.4",
"description": "Cross-platform Krunker game client", "description": "Cross-platform Krunker game client",
"main": "dist/main/index.js", "main": "dist/main/index.js",
"homepage": "https://github.com/bigjakk/Krunker-Civilian-Client", "homepage": "https://github.com/bigjakk/Krunker-Civilian-Client",
+1 -1
View File
@@ -307,7 +307,7 @@ async function launchApp(): Promise<void> {
session: ses, session: ses,
contextIsolation: false, contextIsolation: false,
nodeIntegration: false, nodeIntegration: false,
sandbox: false, sandbox: true,
spellcheck: false, spellcheck: false,
backgroundThrottling: false, backgroundThrottling: false,
}, },
+1 -1
View File
@@ -253,7 +253,7 @@ export class TabManager {
session: this.ses, session: this.ses,
contextIsolation: false, contextIsolation: false,
nodeIntegration: false, nodeIntegration: false,
sandbox: false, sandbox: true,
spellcheck: false, spellcheck: false,
}, },
}); });