# v0.4.36 (2026-05-13)

## Features
- Add MiniMax TTS provider support (#1043)
- Docker images now published on both GHCR & Docker Hub (decolua/9router) — pull from your preferred registry

## Improvements
- Replace browser confirm dialogs with custom ConfirmModal (#1060)

## Fixes
- Fix Docker `Cannot find module 'next'` error in standalone build
- Restore /app/server.js in Docker standalone build (#1064, #1067)
- Fix CLI TUI menu arrow-key escape sequences leaking (^[[A^[[B)
- Switch macOS/Linux tray to systray2 fork (fixes Kaspersky AV false-positive) (#1080)
- Fix zoom controls contrast in topology view (#1066)
This commit is contained in:
decolua
2026-05-13 18:22:31 +07:00
parent 692d1fdf57
commit 7ccf8c5e84
14 changed files with 616 additions and 314 deletions
+8 -22
View File
@@ -6,14 +6,13 @@ const path = require("path");
const BUILD_CONFIG = {
bundle: true,
minify: true,
obfuscate: false,
cleanPlainFiles: true,
};
// ─────────────────────────────────────────────────────────
const binDir = path.resolve(__dirname, "..");
const appDir = path.resolve(binDir, "..", "app");
const binMitmDir = path.join(binDir, "app", "src", "mitm");
const cliDir = path.resolve(__dirname, "..");
const appDir = path.resolve(cliDir, "..");
const cliMitmDir = path.join(cliDir, "app", "src", "mitm");
// Bundle everything — no externals. This keeps MITM runtime self-contained so
// it can be copied to DATA_DIR/runtime/ and spawned from there (escapes
// node_modules file locks that block `npm i -g 9router@latest` on Windows).
@@ -22,7 +21,7 @@ const ENTRIES = ["server.js"];
async function buildEntry(entry) {
const mitmSrc = path.join(appDir, "src", "mitm");
const output = path.join(binMitmDir, entry);
const output = path.join(cliMitmDir, entry);
const buildPlugin = {
name: "build-plugin",
@@ -36,9 +35,6 @@ async function buildEntry(entry) {
const steps = [];
if (BUILD_CONFIG.bundle) {
const useTemp = BUILD_CONFIG.obfuscate;
const outfile = useTemp ? output.replace(".js", ".bundled.js") : output;
await esbuild.build({
entryPoints: [path.join(mitmSrc, entry)],
bundle: true,
@@ -47,20 +43,10 @@ async function buildEntry(entry) {
target: "node18",
external: EXTERNALS,
plugins: [buildPlugin],
outfile,
outfile: output,
});
steps.push("bundled");
if (BUILD_CONFIG.minify) steps.push("minified");
if (BUILD_CONFIG.obfuscate) {
const { execSync } = require("child_process");
execSync(
`npx javascript-obfuscator "${outfile}" --output "${output}" --compact true --string-array true --string-array-encoding base64`,
{ stdio: "inherit", cwd: appDir }
);
fs.unlinkSync(outfile);
steps.push("obfuscated");
}
}
console.log(`${steps.join(" + ")}${output}`);
@@ -74,10 +60,10 @@ async function run() {
if (BUILD_CONFIG.cleanPlainFiles) {
const keep = new Set(ENTRIES);
for (const name of fs.readdirSync(binMitmDir)) {
if (!keep.has(name)) fs.rmSync(path.join(binMitmDir, name), { recursive: true, force: true });
for (const name of fs.readdirSync(cliMitmDir)) {
if (!keep.has(name)) fs.rmSync(path.join(cliMitmDir, name), { recursive: true, force: true });
}
console.log("✅ Removed plain MITM files from bin");
console.log("✅ Removed plain MITM files from CLI bundle");
}
}