Compare commits

...

2 Commits

Author SHA1 Message Date
e016eb4d5f Merge branch 'main' of http://synbox.ruv.wtf:8418/litruv/cinny-desktop
All checks were successful
Build / increment-version (push) Successful in 6s
Build / build-linux (push) Successful in 2m3s
Build / build-windows (push) Successful in 4m3s
Build / create-release (push) Successful in 19s
2026-02-27 23:05:07 +11:00
9cf7113dbe fix: update app user model ID handling for Windows and improve icon path resolution 2026-02-27 23:05:05 +11:00

View File

@@ -78,11 +78,6 @@ let apiServer = null;
// Set app name for notifications and system tray
app.setName('Paarrot');
// On Windows, this controls the app name shown in toast notifications.
if (process.platform === 'win32') {
app.setAppUserModelId('com.paarrot.app');
}
// Configure auto-updater
autoUpdater.autoDownload = false;
autoUpdater.autoInstallOnAppQuit = true;
@@ -227,7 +222,7 @@ function createWindow() {
// Enable navigation gestures (works on macOS and some Linux environments)
enableBlinkFeatures: 'OverscrollHistoryNavigation'
},
icon: nativeImage.createFromPath(getIconPath('icon.png')),
icon: getIconPath(process.platform === 'win32' ? 'icon.ico' : 'icon.png'),
show: false // Don't show until ready
});