Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 31 additions & 3 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,37 @@

## Version 7

### v7.2.1

Released on Jan 24th, 2026

#### Fixes and small features

A small patch to fix a few issues. We also added the ability to filter photos by their star rating in the album view.

#### Most notable changes

`klo` refers to *Keep the Light On*. In other words, basic software updates.


* `klo` #4004 : Improve docker compose template by @ildyria.
> Improve the docker-compose template use yaml template to avoid duplication.
> Added a minimal running example to help users dry test Lychee locally.
* `fix` #4005 : Fix downloading image directly from smart album by @ildyria.
> Fix the issue that downloading an image directly from a smart album was not working as expected.
* `fix` #4007 : Hide list button if there are no albums by @ildyria.
> When there are no albums, it does not make sense to display the list view button. We now hide it in such case.
* `klo` #4014 : Add documentation on tuning the timeouts in docker-compose.yaml by @ildyria.
> We added a small section in our documentation to explain how to tune the timeouts in the docker-compose file.
* `fix` #4012 : Fix renamer rule test by @ildyria.
> The testing of renaming rules in the renamer module was not working due to missing parameters. This is now fixed.
* `fix` #4015 : Hide more warnings by @ildyria.
> When using the docker image and queues, some of the warnings do not make sense anymore. We now hide them to avoid confusion.
* `fix` #4017 : Fix issue with filesize being 0 and add more coverage by @ildyria.
> In some edge cases, the filesize of a photo was 0, leading to errors when displaying sizes. This is now fixed.
* `new` #3978 : Filtering on rating by @ildyria.
> You can now filter photos by their rating in the album view.

### v7.2.0

Released on Jan 21st, 2026
Expand All @@ -43,9 +74,6 @@ One test instance database supports more than 3 million size variants and 400,00

#### Most notable changes

`klo` refers to *Keep the Light On*. In other words, basic software updates.


* `fix` 3980 : Fix #3714 by @ildyria.
> We fix the issue that sub-albums were not supporting the set aspect ratio.
* `new` 3981 : Add support for hidden display of shared albums by @ildyria.
Expand Down
4 changes: 2 additions & 2 deletions src/components/widgets/Announcement.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
>NEW</span
>
<a
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.2.0"
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.2.0 is now available! »</a
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.2.1"
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.2.1 is now available! »</a
>
<!-- <a
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.10.4"
Expand Down
5 changes: 3 additions & 2 deletions src/pages/roadmap.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const metadata = {

// Release data extracted from releases.md
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'] },
{ version: 'v7.1.2', date: 'Jan 14, 2026', title: 'Hot fixes and HEIF support', type: 'feature', highlights: ['HEIF image support (convert to JPEG)', 'Fixed lexicographical sorting', 'Fixed chown issues'] },
{ version: 'v7.1.1', date: 'Jan 13, 2026', title: 'Synology & Menu fixes', type: 'bugfix', highlights: ['Fixed Synology write permission issues', 'Fixed context-menu not appearing' ] },
Expand Down Expand Up @@ -158,11 +159,11 @@ const getReleaseTypeBadge = (type: string) => {
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="space-y-2">
<div class="text-4xl font-bold text-primary">7.2.0</div>
<div class="text-4xl font-bold text-primary">7.2.1</div>
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
</div>
<div class="space-y-2">
<div class="text-4xl font-bold text-primary">109</div>
<div class="text-4xl font-bold text-primary">110</div>
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
</div>
<div class="space-y-2">
Expand Down