From 7ffc9772f14f2c66f851af99a1d02f637daf2873 Mon Sep 17 00:00:00 2001 From: Jeffrey Alan Scudder Date: Sun, 18 Jan 2026 06:01:50 +0000 Subject: [PATCH] v0.1.14: Fix +/- window commands, simplify About dialog --- ac-electron/main.js | 4 ++-- ac-electron/package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ac-electron/main.js b/ac-electron/main.js index ab3522661..d2471ea4c 100644 --- a/ac-electron/main.js +++ b/ac-electron/main.js @@ -481,7 +481,7 @@ function createMenu() { type: 'info', title: 'About Aesthetic Computer', message: 'Aesthetic Computer', - detail: `Version ${app.getVersion()}\n\nA creative coding platform.`, + detail: `Version ${app.getVersion()}`, buttons: ['OK'] }); } @@ -1301,7 +1301,7 @@ async function open3DWindow() { } }); - return win; + return { window: win, windowId }; } // State for interactive prompt diff --git a/ac-electron/package.json b/ac-electron/package.json index 0db2d7a7a..23dc8dd51 100644 --- a/ac-electron/package.json +++ b/ac-electron/package.json @@ -1,7 +1,7 @@ { "name": "aesthetic-computer", - "version": "0.1.13", - "description": "Aesthetic Computer - Creative coding platform", + "version": "0.1.14", + "description": "Aesthetic Computer", "homepage": "https://aesthetic.computer", "author": "Aesthetic Computer ", "license": "MIT", -- 2.51.2