mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
Adds browser PWA manifest and service worker support for the Control UI, plus gateway RPC methods and persisted Web Push subscription handling.
Maintainer verification:
- OPENCLAW_VITEST_MAX_WORKERS=1 pnpm test src/infra/push-web.test.ts src/gateway/server-methods/push.test.ts src/gateway/control-ui.test.ts src/gateway/protocol/push.test.ts
- pnpm check:changed passed before final GitHub update-branch merge commit
- pnpm build
Source head: 0720024368
28 lines
565 B
JSON
28 lines
565 B
JSON
{
|
|
"name": "OpenClaw Control",
|
|
"short_name": "OpenClaw",
|
|
"description": "Multi-channel AI gateway control panel",
|
|
"start_url": "./",
|
|
"display": "standalone",
|
|
"theme_color": "#0a0a0a",
|
|
"background_color": "#0a0a0a",
|
|
"icons": [
|
|
{
|
|
"src": "./favicon.svg",
|
|
"sizes": "any",
|
|
"type": "image/svg+xml",
|
|
"purpose": "any"
|
|
},
|
|
{
|
|
"src": "./favicon-32.png",
|
|
"sizes": "32x32",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./apple-touch-icon.png",
|
|
"sizes": "180x180",
|
|
"type": "image/png"
|
|
}
|
|
]
|
|
}
|