Compare commits

...
2 Commits
Author SHA1 Message Date
David Kaya fa355197cb chore: release v0.0.29 2026-04-16 14:48:09 +02:00
David KayaandCopilot 5f263002f0 fix: pass mainWindow argument to showAndFocusWindow in second-instance handler
The showAndFocusWindow function signature was updated to require a
mainWindow parameter, but the call site in the second-instance handler
was not updated, causing a TypeScript compilation error that broke CI.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-16 14:43:41 +02:00
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "aryx", "name": "aryx",
"version": "0.0.28", "version": "0.0.29",
"description": "Orchestrator for Copilot-powered agent workflows across multiple projects.", "description": "Orchestrator for Copilot-powered agent workflows across multiple projects.",
"private": true, "private": true,
"main": "dist-electron/main/index.js", "main": "dist-electron/main/index.js",
+3 -1
View File
@@ -116,7 +116,9 @@ async function bootstrap(): Promise<void> {
} }
app.on('second-instance', () => { app.on('second-instance', () => {
showAndFocusWindow(); if (mainWindow && !mainWindow.isDestroyed()) {
showAndFocusWindow(mainWindow);
}
}); });
app.whenReady().then(bootstrap); app.whenReady().then(bootstrap);