mirror of
https://github.com/dtzp555-max/odo.git
synced 2026-07-19 09:44:37 +00:00
- Generate placeholder icons: icon.png (512x512), tray-icon.png (16x16), icon.icns (macOS) - Fix window close behavior: hide to tray instead of quitting - Add tray left-click and double-click handlers to restore window - Add app.dock.hide/show on macOS for proper dock visibility - Bump version to 0.9.6 in package.json, preload.js, openclaw-manager.js 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.6",
|
|
"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"
|
|
}
|
|
}
|