feat(onboarding): built-in engine upgrade announcement and onboarding/picker polish#251
Merged
Conversation
…soning cell Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…upgraders Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…the download strip Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
… flashes Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…ced highlight Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…dow flashes Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…ease tag Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…aders Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…tings Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…e.co Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…to Discover Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…-c7c5aa Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com> # Conflicts: # src/components/StarterMatrix.tsx # src/components/__tests__/StarterMatrix.test.tsx
… and update text in BuiltinAnnouncementStep Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…tid was dropped Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
…odel Signed-off-by: Logan Nguyen <lg.131.dev@gmail.com>
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.
Overview
A one-time "Local AI, now built in" announcement for users upgrading from a pre-0.15 (Ollama-only) install, so they discover the bundled engine and can adopt it or stay on Ollama. Brand-new installs never see it. Bundled with the announcement is a round of onboarding and model-picker fit-and-finish.
What's included
Upgrade announcement
Onboarding transitions
flexShrink: 0) so a card measured mid-resize can no longer lock the picker to a narrow width.Starter picker
Ask-bar model picker
Settings
open_settings_windowcommand plus a navigation event so the picker links land on the Discover model browser rather than the default Providers view.How it works
The announcement routing is a pure
decide_startup_route(stage, ax, sr, announced, pending)over a per-install latch. The post-permission stage is unreliable (a relaunch writes Intro, a TCC reset clobbers the stage), so the upgrader is detected at the one reliable moment (first 0.15 launch, before the permission flow runs) and the announcement then fires off that latch wherever the user lands. Transition flashes are hidden by driving the overlay panel to alpha 0 across each resize and content swap and fading it back once the new screen has settled, with the backend timer as the safety net.Testing
100% frontend and backend coverage maintained, and
bun run validate-buildis clean. The onboarding transition timing (a frame-level effect that unit tests cannot observe) was verified in the running app.Note
This branch merges the latest
main, including #250 (cross-window download sync). The merge keeps main's pilledreasoning_alwayscell in the starter matrix over this branch's earlier plain-text treatment.