feat: add adaptive live meeting workspace - #382
Draft
Lob0Garou wants to merge 7 commits into
Draft
Conversation
… Guide (Natively-AI-assistant#380) Zoom is the one major meeting app whose screen-capture mode setting must be manually switched to "Advanced capture with window filtering" for the overlay to stay hidden; Google Meet, Teams, and QuickTime already honor the stealth flag automatically. Surface this in both the README FAQ and the in-app Help & Guide (Stealth & Window Control section) instead of leaving it undocumented. Co-authored-by: Hardening v2.7 <hardening@natively.software> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
Segment interim and final speech updates, bound transcript growth, and throttle accessible live announcements.
Preserve per-pane scroll position and expose explicit follow-live controls for transcript and copilot content.
Introduce responsive transcript and copilot panes with independent navigation, readable segments, and compact overlay controls.
Wire segmented transcript state into the overlay, preserve session reset behavior, and cover the two-column layout across Windows display scales.
Keep render pure, guard session-scoped resets, refresh channel announcement inputs, and preserve explicit layout remeasurement on workspace changes.
|
| Filename | Overview |
|---|---|
| src/lib/transcriptSegments.mjs | Adds bounded speaker-aware transcript state and preserves repeated final utterances. |
| src/components/NativelyInterface.tsx | Integrates transcript events, adaptive panes, scroll restoration, and session resets. |
| src/components/ui/AdaptiveMeetingWorkspace.tsx | Adds compact tabs, split-pane presentation, focus handling, and unread state. |
| src/lib/tests/transcriptSegments.test.mjs | Covers repeated finals, partial transitions, speaker ordering, history limits, and resets. |
Reviews (2): Last reviewed commit: "fix: preserve repeated transcript finals" | Re-trigger Greptile
Remove lossy text-and-time deduplication and strip machine-specific startup and audio changes that do not belong in the adaptive workspace PR.
Author
|
Addressed both review findings in 8e685a8. The machine-specific sandbox/ABI/audio hunks were out of scope and are removed entirely (electron/main.ts now has no PR diff). Lossy text/time deduplication was removed so repeated finals such as consecutive 'sim' responses are preserved. Added regression coverage; 34 focused tests, both builds, typecheck, and all 18 Electron display-scale scenarios pass. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
UX behavior
Ao vivoandCopilototabsReview structure
The feature is intentionally split into six focused commits:
Validation
npm run typecheck:electronnpm run buildnpm run build:electrongit diff --checkelectron/main.tshas no diff in this PR; startup, sandbox, ABI, and audio lifecycle changes are out of scopeScope note
This is a large but cohesive UI feature. It is opened as a draft and organized into focused commits so maintainers can review the pure state policies before the components and final integration.