mirror of
https://github.com/dtzp555-max/odo.git
synced 2026-07-19 09:44:37 +00:00
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>
48 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|