-
Notifications
You must be signed in to change notification settings - Fork 24
update #272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update #272
Conversation
📝 WalkthroughWalkthroughAdds a v7.2.1 patch release entry (Jan 24, 2026) across docs and UI: release notes, roadmap data, and announcement widget updated to reflect version 7.2.1 and increment total releases. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 1✅ Passed checks (1 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Nitpick comments (1)
src/pages/roadmap.astro (1)
162-167: Avoid hard‑coding “Latest Version” and “Total Releases.”These values will drift from
releasesas soon as another entry is added or reordered. Recommend deriving them from the array (Line 162, Line 166).♻️ Suggested refactor
const releases = [ { version: 'v7.2.1', date: 'Jan 24, 2026', title: 'Fixes and small features', type: 'bugfix', highlights: ['Filter photos by star rating', 'Fixed downloading from smart albums', 'Fixed renamer rule test', 'Hide warnings in docker with queues'] }, { version: 'v7.2.0', date: 'Jan 21, 2026', title: 'Speed improvement and UI updates', type: 'major', highlights: ['Order photos by star rating', 'Rating smart albums (1-5 stars, Best pictures)', 'Hidden display of shared albums', 'Refactored deletion for large galleries'] }, ... ]; + +const latestRelease = releases[0]; +const latestVersion = latestRelease?.version?.replace(/^v/, '') ?? '—'; +const totalReleases = releases.length;- <div class="text-4xl font-bold text-primary">7.2.1</div> + <div class="text-4xl font-bold text-primary">{latestVersion}</div> ... - <div class="text-4xl font-bold text-primary">110</div> + <div class="text-4xl font-bold text-primary">{totalReleases}</div>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Summary by CodeRabbit
Documentation
New Features
Bug Fixes
✏️ Tip: You can customize this high-level summary in your review settings.