87ddf1499d
Cross-platform Krunker.io game client forked from Krunker Police Client with all KPD/moderator features stripped: no KPD auth, OBS recording, evidence uploads, yt-dlp, bytenode, or code obfuscation. Retained: unlimited FPS (custom Electron 42), ad blocking, resource swapper, matchmaker, userscripts, chat translator, Discord RPC, alt account manager, configurable keybinds, and advanced Chromium flags. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
import { BrowserWindow } from 'electron';
|
|
|
|
const UPDATE_HTML = `<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: #1a1a2e;
|
|
color: #e0e0e0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
padding: 20px;
|
|
}
|
|
h2 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
color: #fff;
|
|
}
|
|
#status {
|
|
font-size: 13px;
|
|
margin-bottom: 12px;
|
|
color: #ccc;
|
|
text-align: center;
|
|
}
|
|
.progress-container {
|
|
width: 100%;
|
|
height: 8px;
|
|
background: #16213e;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
}
|
|
.progress-bar {
|
|
height: 100%;
|
|
width: 0%;
|
|
background: #0f3460;
|
|
border-radius: 4px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>Krunker Civilian Client</h2>
|
|
<div id="status">Checking for updates...</div>
|
|
<div class="progress-container">
|
|
<div class="progress-bar" id="progressBar"></div>
|
|
</div>
|
|
<script>
|
|
const { ipcRenderer } = require('electron');
|
|
const statusEl = document.getElementById('status');
|
|
const progressBar = document.getElementById('progressBar');
|
|
ipcRenderer.on('update-progress', function(event, message, percent) {
|
|
statusEl.textContent = message;
|
|
if (typeof percent === 'number') {
|
|
progressBar.style.width = percent + '%';
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>`;
|
|
|
|
const UPDATE_DATA_URL = 'data:text/html;charset=utf-8,' + encodeURIComponent(UPDATE_HTML);
|
|
|
|
export function showUpdateWindow(): { window: BrowserWindow; sendProgress: (message: string, percent?: number) => void } {
|
|
const win = new BrowserWindow({
|
|
width: 450,
|
|
height: 180,
|
|
resizable: false,
|
|
alwaysOnTop: true,
|
|
backgroundColor: '#1a1a2e',
|
|
autoHideMenuBar: true,
|
|
title: 'Krunker Civilian Client - Update',
|
|
webPreferences: {
|
|
nodeIntegration: true,
|
|
contextIsolation: false,
|
|
sandbox: false,
|
|
},
|
|
});
|
|
win.removeMenu();
|
|
|
|
win.loadURL(UPDATE_DATA_URL);
|
|
|
|
function sendProgress(message: string, percent?: number): void {
|
|
if (!win.isDestroyed()) {
|
|
win.webContents.send('update-progress', message, percent);
|
|
}
|
|
}
|
|
|
|
return { window: win, sendProgress };
|
|
}
|