Skip to content

Conversation

@ildyria
Copy link
Member

@ildyria ildyria commented Jan 25, 2026

Summary by CodeRabbit

  • Documentation

    • Added v7.2.1 patch release notes (Released Jan 24, 2026) and updated latest version to 7.2.1
    • Updated announcement to display the new version availability
  • New Features

    • Filter photos by star rating
  • Bug Fixes

    • Fixed downloading from smart albums
    • Fixed renamer rule testing
    • Suppressed warnings in Docker with queues

✏️ Tip: You can customize this high-level summary in your review settings.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 25, 2026

📝 Walkthrough

Walkthrough

Adds 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

Cohort / File(s) Change Summary
Release Documentation
docs/releases.md
Adds v7.2.1 patch release section with fixes and small features; shortens v7.2.0 preface and removes one legacy note
Release Metadata
src/pages/roadmap.astro
Appends v7.2.1 object to releases, updates latest version display to 7.2.1, and increments total releases to 110
UI Components
src/components/widgets/Announcement.astro
Updates announcement text and version reference from 7.2.0 to 7.2.1

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

🐇 A tiny patch with hops so spry,
Seven-two-one beneath the sky.
Filters, fixes, downloads mend,
A rabbit cheers — release to send! 🎉

🚥 Pre-merge checks | ✅ 1
✅ Passed checks (1 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ 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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a 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 releases as 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>
@ildyria ildyria merged commit d2237ca into master Jan 25, 2026
2 checks passed
@ildyria ildyria deleted the version-7.2.1 branch January 25, 2026 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants