feat(openclaw): update openclaw version 223 (#149)

This commit is contained in:
Haze
2026-02-24 16:09:39 +08:00
committed by GitHub
Unverified
parent f32521b484
commit cf27bb0d64
5 changed files with 517 additions and 91 deletions

View File

@@ -165,9 +165,9 @@ async function initialize(): Promise<void> {
// Note: Auto-check for updates is driven by the renderer (update store init)
// so it respects the user's "Auto-check for updates" setting.
// Windows: minimize to tray on close instead of quitting
// Minimize to tray on close instead of quitting (macOS & Windows)
mainWindow.on('close', (event) => {
if (process.platform === 'win32' && !isQuitting) {
if (!isQuitting) {
event.preventDefault();
mainWindow?.hide();
}