agent v0.3.15: mode proxy auto/manuel, correction auto-update et conservation systray, animation UI update

This commit is contained in:
EduBox Dev
2026-06-28 19:53:19 +00:00
parent 33d89c66c0
commit adab165274
13 changed files with 444 additions and 55 deletions
+4 -3
View File
@@ -1,6 +1,7 @@
import { NextResponse } from "next/server";
import { getAgentVersionInfo } from "@/lib/agent-version";
import { getAgentVersionInfo, getBaseUrlFromRequest } from "@/lib/agent-version";
export async function GET() {
return NextResponse.json(getAgentVersionInfo());
export async function GET(request: Request) {
const baseUrl = getBaseUrlFromRequest(request);
return NextResponse.json(getAgentVersionInfo(baseUrl));
}