Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

ac-electron: rename 'Aesthetic Computer' to 'Aesthetic.Computer' in menu bar

Covers all runtime-visible labels — app.setName, the macOS app menu entry,
the About dialog, the tray tooltip, and the default tray title.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+12 -12
+12 -12
ac-electron/main.js
··· 1 1 /** 2 - * Aesthetic Computer - Electron Main Process 2 + * Aesthetic.Computer - Electron Main Process 3 3 * 4 4 * Single window type: 5 5 * - AC Pane (3D flip view with front webview + back terminal) ··· 74 74 const PREFS_PATH = path.join(app.getPath('userData'), 'preferences.json'); 75 75 let preferences = { 76 76 showTrayTitle: true, 77 - trayTitleText: 'AC', // Short text next to tray icon 77 + trayTitleText: 'Aesthetic.Computer', // Short text next to tray icon 78 78 launchAtLogin: true, 79 79 defaultMode: 'ac-pane', 80 80 // Window float behavior. When true, new AC Pane / Notepat windows ··· 337 337 } 338 338 339 339 // Set app name before anything else 340 - app.setName('Aesthetic Computer'); 341 - process.title = 'Aesthetic Computer'; 340 + app.setName('Aesthetic.Computer'); 341 + process.title = 'Aesthetic.Computer'; 342 342 343 343 // Set dock icon on macOS 344 344 if (process.platform === 'darwin') { ··· 549 549 const template = [ 550 550 // App menu (macOS only) 551 551 ...(isMac ? [{ 552 - label: 'Aesthetic Computer', // Explicit name for menu bar 552 + label: 'Aesthetic.Computer', // Explicit name for menu bar 553 553 submenu: [ 554 554 { 555 - label: 'About Aesthetic Computer', 555 + label: 'About Aesthetic.Computer', 556 556 click: () => { 557 557 dialog.showMessageBox({ 558 558 type: 'info', 559 - title: 'About Aesthetic Computer', 560 - message: 'Aesthetic Computer', 559 + title: 'About Aesthetic.Computer', 560 + message: 'Aesthetic.Computer', 561 561 detail: `Version ${app.getVersion()}`, 562 562 buttons: ['OK'] 563 563 }); ··· 772 772 updateTrayIcon = createUpdateIcon(icon); 773 773 774 774 tray = new Tray(icon); 775 - tray.setToolTip('Aesthetic Computer'); 775 + tray.setToolTip('Aesthetic.Computer'); 776 776 console.log('[main] System tray created successfully'); 777 777 778 778 // Build and set the context menu ··· 1105 1105 }, 1106 1106 { type: 'separator' }, 1107 1107 { 1108 - label: `About Aesthetic Computer`, 1108 + label: `About Aesthetic.Computer`, 1109 1109 click: () => { 1110 1110 dialog.showMessageBox({ 1111 1111 type: 'info', 1112 - title: 'About Aesthetic Computer', 1113 - message: 'Aesthetic Computer', 1112 + title: 'About Aesthetic.Computer', 1113 + message: 'Aesthetic.Computer', 1114 1114 detail: `Version: ${app.getVersion()}\nElectron: ${process.versions.electron}\nChrome: ${process.versions.chrome}\nNode: ${process.versions.node}` 1115 1115 }); 1116 1116 }