From 35b171764e592f1bbe861418a4f02a850c449a41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Andr=C3=A9?= Date: Sun, 19 Apr 2026 00:56:58 +0200 Subject: [PATCH] fix(desktop): align Electron package and runtime app ids (#342) Follow-up from #334 ## Summary - align the Electron package `build.appId` with the runtime identifier already used in `app.setAppUserModelId(...)` - remove the mismatch between packaged desktop identity and runtime desktop identity - keep the change narrowly scoped to identifier consistency only ## Validation - verified the previous mismatch in `packages/electron-app/package.json` vs `packages/electron-app/electron/main/main.ts` - updated the packaging id to match the runtime id exactly --- packages/electron-app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/electron-app/package.json b/packages/electron-app/package.json index 65541bb2..5337dae0 100644 --- a/packages/electron-app/package.json +++ b/packages/electron-app/package.json @@ -62,7 +62,7 @@ "vite-plugin-solid": "^2.10.0" }, "build": { - "appId": "ai.opencode.client", + "appId": "ai.neuralnomads.codenomad.client", "productName": "CodeNomad", "directories": { "output": "release",