* feat: add chat virtualization and turn grouping infrastructure Implement VirtualMessageList with virtualization and overscan for smooth scrolling Refactor MessageList to render only visible messages and pass scroll refs Introduce TurnGroupingContext and provider to stabilize per-turn rendering and reduce re-renders * feat: add web server session activity endpoint for visibility restore Add /api/session-activity endpoint to expose tracked session activity Use web server activity first when restoring visibility, with fallback to global status Update server SSE to set session phase on activity events * feat(chat): split TurnGroupingContext into UI/Streaming contexts Add separate UI state and streaming contexts to reduce re-renders. Skip animations for items visible in collapsed view when expanding. Track shown parts in collapsed mode to fade in progressively * feat(ui): cache turn groups with expand state and guard web activity Add isExpanded to the turn cache key to trigger updates correctly Expose isGroupExpanded from UI state so groups reflect expand/collapse Limit web server session activity fetch to web runtime only
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"productName": "OpenChamber",
|
|
"version": "1.5.7",
|
|
"identifier": "ai.opencode.openchamber",
|
|
"build": {
|
|
"beforeDevCommand": "bun run dev",
|
|
"beforeBuildCommand": "bun run build",
|
|
"devUrl": "http://127.0.0.1:1421",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "OpenChamber",
|
|
"transparent": false,
|
|
"width": 1280,
|
|
"height": 800,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"decorations": true,
|
|
"hiddenTitle": true,
|
|
"titleBarStyle": "Overlay",
|
|
"trafficLightPosition": {
|
|
"x": 17,
|
|
"y": 26
|
|
},
|
|
"visible": false,
|
|
"backgroundThrottling": "disabled"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"macOSPrivateApi": true
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"icon": [
|
|
"icons/icon.icns",
|
|
"icons/icon.png"
|
|
],
|
|
"macOS": {
|
|
"exceptionDomain": "localhost",
|
|
"minimumSystemVersion": "14.0",
|
|
"signingIdentity": null,
|
|
"entitlements": "./entitlements.plist",
|
|
"infoPlist": "Info.plist",
|
|
"dmg": {
|
|
"appPosition": {
|
|
"x": 180,
|
|
"y": 170
|
|
},
|
|
"applicationFolderPosition": {
|
|
"x": 480,
|
|
"y": 170
|
|
},
|
|
"windowSize": {
|
|
"width": 660,
|
|
"height": 400
|
|
}
|
|
}
|
|
},
|
|
"createUpdaterArtifacts": true
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"endpoints": [
|
|
"https://github.com/btriapitsyn/openchamber/releases/latest/download/latest.json"
|
|
],
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEU0NjI5NDJGNEU0QzFEMTYKUldRV0hVeE9MNVJpNUdRemdsbm8wQ2YxQkU4KzBOOEg3TkpXZzIzb244N3Y0R3I4N2FtUk1NMUEK"
|
|
}
|
|
}
|
|
}
|