From 0021aa6097da787e2f1de90202fd73316c3e25ff Mon Sep 17 00:00:00 2001 From: yyovil Date: Thu, 11 Jun 2026 16:39:33 +0530 Subject: [PATCH] fix(frontend): set Electron app name --- frontend/package.json | 1 + frontend/src/main.ts | 3 +++ 2 files changed, 4 insertions(+) diff --git a/frontend/package.json b/frontend/package.json index c27e1baf0..35ce2bfab 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,5 +1,6 @@ { "name": "agent-orchestrator-frontend", + "productName": "Agent Orchestrator", "version": "0.0.0", "private": true, "description": "Electron + TypeScript frontend for the agent-orchestrator rewrite", diff --git a/frontend/src/main.ts b/frontend/src/main.ts index 4644b9efa..7521cde4d 100644 --- a/frontend/src/main.ts +++ b/frontend/src/main.ts @@ -12,6 +12,9 @@ import type { DaemonStatus } from "./shared/daemon-status"; declare const MAIN_WINDOW_VITE_DEV_SERVER_URL: string | undefined; declare const MAIN_WINDOW_VITE_NAME: string; +// Must run before app ready so the About panel and default-menu role labels use it. +app.setName("Agent Orchestrator"); + let mainWindow: BrowserWindow | null = null; let daemonProcess: ChildProcessWithoutNullStreams | null = null; let daemonStatus: DaemonStatus = { state: "stopped" };