Implement VatioBoard OS v1 with shell apps, launcher, TTS, and persistent UX#26
Merged
Conversation
…rified. I tightened the app service contract so runtime services require both manifest.services and matching permissions, fixed the Speed full-suite initialization edge, and updated docs/handoff with the latest verification results.
…added src/apps/calculator/ as a wrapper around the existing widget, wired it to vatio.calculator, and preserved the old shell window ID calculator, legacy tool ID calculator, floating-tool/start-menu/taskbar behavior, visibility, position, and direct widget compatibility.
… OS shell-window app, following the Calculator pattern and preserving legacy behavior.
…pp wrapper under src/apps/speed-alerts, without changing the existing panel UI or legacy launch contract.
…pper under src/apps/player. The app shell now creates the persistent player through createPlayerApp(), which resolves vatio.player via shellAppRuntimeManager, keeps the existing shared audio-runtime singleton, and preserves queue/session restore, Media Session, background audio, pinned/local media, shell-window behavior, and direct widget compatibility.
…ll-window app wrapper.
…Launcher().openApp(appId) can now instantiate lazy shell-window app entries from a fresh shell manager, instead of requiring a wrapper to have registered the window first.
…hout rewriting the Board controller. vatio.board now loads through src/apps/board/, while src/app/views/BoardView.ts remains a compatibility re-export.
…library/ without rewriting src/library/library.ts.
…rough src/apps/replay/, while src/app/views/ReplayView.ts remains a compatibility re-export. The existing Replay controller/UI stayed intact.
…hout rewriting src/accel/accel.ts.
…ross Speed, Board, Library, Replay, and Accel, added shared test helpers, added cross-app contract coverage, audited runtime seams, and documented the final route-app contract.
…voke logic was added, and I did not change Player, Speed Alerts, GPS, or audio lifecycle behavior.
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.
This PR introduces the VatioBoard OS platform layer and migrates the application experience from legacy page/tool wiring into first-class route apps, shell-window apps, runtime services, and manifest-driven launch behavior.
Major changes include:
vb-account-panelintegrationNotes
This is a large architectural PR. The main intent is to establish VatioBoard OS as the durable foundation for future apps while preserving existing legacy behavior through compatibility wrappers and focused migration seams.