Compare commits

..

3 Commits

Author SHA1 Message Date
bigjakk 68344c6465 v0.6.2
Build and Release / build-and-release (push) Has started running
2026-04-04 09:03:55 -07:00
bigjakk 19af04468e fix: broaden updater allowed hosts to all GitHub domains
Build and Release / build-and-release (push) Has been cancelled
2026-04-04 09:03:20 -07:00
bigjakk c96c151851 fix: allow GitHub release asset redirects in auto-updater
Build and Release / build-and-release (push) Has been cancelled
2026-04-04 09:02:07 -07:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "krunker-civilian-client",
"version": "0.6.1",
"version": "0.6.2",
"description": "Cross-platform Krunker game client",
"main": "dist/main/index.js",
"homepage": "https://github.com/bigjakk/Krunker-Civilian-Client",
+1 -1
View File
@@ -15,7 +15,7 @@ export type ProgressCallback = (percent: number) => void;
const UPDATE_CONFIG = {
checkUrl: 'https://api.github.com/repos/bigjakk/Krunker-Civilian-Client/releases/latest',
assetPattern: /Setup\.exe$/i,
allowedHosts: ['github.com', 'api.github.com', 'objects.githubusercontent.com'],
allowedHosts: ['github.com', 'githubusercontent.com'],
};
const CHECK_TIMEOUT_MS = 10000;