Proposed changes (all with proposal, design, specs, tasks): - app-navigation (9 tasks) — nav bars for both apps - planner-landing-page (7 tasks) — standalone landing page - planner-multiplayer-awareness (13 tasks) — participants, cursors, names - changelog (13 tasks) — public changelog with "what's new" - transactional-emails (15 tasks) — magic link + welcome emails - planner-features (18 tasks) — no-go areas, notes, recovery, rate limits - komoot-import (23 tasks) — Komoot tour import - route-features (37 tasks) — sharing, multi-day, spatial, photos Also adds docs/old-trails-analysis.md with feature analysis from the older trails project. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1.3 KiB
1.3 KiB
1. Changelog Data Layer
- 1.1 Create
apps/journal/changelog/directory with a sample entry (2026-03-25.md) covering the initial launch - 1.2 Set up Vite
import.meta.globto load all.mdfiles from the changelog directory with frontmatter parsing - 1.3 Create
apps/journal/app/lib/changelog.server.tswith functions: getAllEntries(), getEntry(date) returning parsed markdown + frontmatter
2. Routes
- 2.1 Add
/changelogroute showing all entries (date, title, preview) newest-first - 2.2 Add
/changelog/:dateroute rendering full markdown entry - 2.3 Add Open Graph meta tags on entry pages (og:title, og:description, og:url)
- 2.4 Add both routes to
routes.ts
3. What's New Indicator
- 3.1 Add "Changelog" link to Journal nav bar
- 3.2 Track
changelog:lastSeenin localStorage, show dot when newest entry is newer - 3.3 Clear indicator when user visits /changelog
4. Content
- 4.1 Write initial changelog entry for the launch (features shipped in Phase 1)
- 4.2 Add markdown rendering (react-markdown or built-in) for entry content
5. Verify
- 5.1 Verify /changelog lists entries correctly
- 5.2 Verify /changelog/:date renders full entry with OG tags
- 5.3 Verify "What's New" dot appears and dismisses