# v0.4.44 (2026-05-15)

## Features
- Add Blackbox provider with `bb` alias (#1143)
- Add Xiaomi token plan provider
- Enhance model select modal UX + modal traffic lights (#1111)
- Default Usage dashboard period to Today (#1141)

## Fixes
- Fix Cowork model selection and Windows CLI packaging (#1129)
- Update provider name retrieval for compatibility provider (#1135)
- Update JWT_SECRET handling
This commit is contained in:
decolua
2026-05-15 12:02:32 +07:00
parent 75904b8c27
commit a28c5ec98b
9 changed files with 58 additions and 23 deletions
+2
View File
@@ -33,12 +33,14 @@ const PROTECTED_API_PATHS = [
"/api/cli-tools",
"/api/mcp",
"/api/translator",
"/api/tunnel",
];
// Routes that spawn child processes — restrict to localhost regardless of auth.
const LOCAL_ONLY_PATHS = [
"/api/cli-tools/cowork-settings",
"/api/mcp/",
"/api/tunnel/tailscale-install",
];
const LOOPBACK_HOSTS = new Set(["localhost", "127.0.0.1", "::1"]);