Files
odo/package.json
T
taodengandClaude Sonnet 4.6 3cba8552cf fix: close window quits app instead of hiding to tray
No system tray is shown, so hiding the window on close left the app
running with no way to quit except Ctrl+C. Now closing the window
sets isQuitting=true and lets the normal close flow proceed, which
triggers before-quit → stopServer().

Bumps version 0.9.4 → 0.9.5.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 21:32:16 +10:00

48 lines
1.1 KiB
JSON

{
"name": "odo",
"version": "0.9.5",
"description": "ODO — OpenClaw Dashboard Orchestrator",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"build": {
"appId": "com.openclaw.odo",
"productName": "ODO",
"files": [
"main.js",
"preload.js",
"server/openclaw-manager.js",
"assets/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": ["dmg"],
"icon": "assets/icon.icns"
},
"win": {
"target": ["nsis"],
"icon": "assets/icon.ico"
},
"linux": {
"target": ["AppImage"],
"icon": "assets/icon.png",
"category": "Development"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false
}
},
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}