feat(desktop): add what's new upgrade wizard#191
Draft
AkaraChen wants to merge 1 commit into
Draft
Conversation
…s for consent
Generalises the welcome wizard from a fixed three-step feature
tour into a step-driven flow that composes feature, what's-new,
and consent steps. The wizard opens on launch when any of the
three are pending and walks the user through them in order.
Step assembly per user state:
First-time user (hasSeenWelcome=false):
feature × 3 → consent
Existing user with new release (no whatsNew acked yet):
whats-new → consent (only if not yet acked)
Existing user already on this version, consent already acked:
nothing — wizard stays closed
Persistence:
- New `consentAcked` boolean in the desktop store, distinct from
`analyticsConsent`. Existing users' consent value defaults to
"granted" (status quo) but consentAcked stays false until they
explicitly see and dismiss the consent step. That's what triggers
the one-time re-prompt without flipping anyone's setting.
- New `lastSeenWhatsNewVersion` tracks the highest release entry
the user has acknowledged. The wizard only surfaces entries
strictly newer than this. First-time-seeing-notes users (lastSeen
is null) only get the latest entry to avoid burying them in
history.
Wizard rendering:
- WizardStepBody dispatches on step.type. Feature steps keep the
existing two-column list+illustration layout. What's-new shows a
single column "What's new in {version}" header plus a stacked
list of {icon, title, description} items, sourced from
src/lib/whats-new.ts (mock data for now). Consent shows a
centred checkbox card.
- Footer logic adapts: shows "Get Started" on the last step when
the wizard included feature steps (and triggers the product
tour), otherwise "Finish" without the tour.
- Settings → "Show Welcome" replays the full feature wizard
regardless of stored flags, matching the existing affordance.
Adds 11 new i18n keys × en/zh-Hans/zh-Hant covering the consent
section label, the v0.2.0 mock release notes, and the what's-new
header copy.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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
Stack
Base: #189 / feat/posthog-setup
Test Plan