Skip to content

Commit d2237ca

Browse files
authored
Version 7.2.1 (#272)
1 parent 50f1da6 commit d2237ca

File tree

3 files changed

+36
-7
lines changed

3 files changed

+36
-7
lines changed

docs/releases.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,37 @@
3030

3131
## Version 7
3232

33+
### v7.2.1
34+
35+
Released on Jan 24th, 2026
36+
37+
#### Fixes and small features
38+
39+
A small patch to fix a few issues. We also added the ability to filter photos by their star rating in the album view.
40+
41+
#### Most notable changes
42+
43+
`klo` refers to *Keep the Light On*. In other words, basic software updates.
44+
45+
46+
* `klo` #4004 : Improve docker compose template by @ildyria.
47+
> Improve the docker-compose template use yaml template to avoid duplication.
48+
> Added a minimal running example to help users dry test Lychee locally.
49+
* `fix` #4005 : Fix downloading image directly from smart album by @ildyria.
50+
> Fix the issue that downloading an image directly from a smart album was not working as expected.
51+
* `fix` #4007 : Hide list button if there are no albums by @ildyria.
52+
> When there are no albums, it does not make sense to display the list view button. We now hide it in such case.
53+
* `klo` #4014 : Add documentation on tuning the timeouts in docker-compose.yaml by @ildyria.
54+
> We added a small section in our documentation to explain how to tune the timeouts in the docker-compose file.
55+
* `fix` #4012 : Fix renamer rule test by @ildyria.
56+
> The testing of renaming rules in the renamer module was not working due to missing parameters. This is now fixed.
57+
* `fix` #4015 : Hide more warnings by @ildyria.
58+
> When using the docker image and queues, some of the warnings do not make sense anymore. We now hide them to avoid confusion.
59+
* `fix` #4017 : Fix issue with filesize being 0 and add more coverage by @ildyria.
60+
> In some edge cases, the filesize of a photo was 0, leading to errors when displaying sizes. This is now fixed.
61+
* `new` #3978 : Filtering on rating by @ildyria.
62+
> You can now filter photos by their rating in the album view.
63+
3364
### v7.2.0
3465

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

4475
#### Most notable changes
4576

46-
`klo` refers to *Keep the Light On*. In other words, basic software updates.
47-
48-
4977
* `fix` 3980 : Fix #3714 by @ildyria.
5078
> We fix the issue that sub-albums were not supporting the set aspect ratio.
5179
* `new` 3981 : Add support for hidden display of shared albums by @ildyria.

src/components/widgets/Announcement.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
>NEW</span
1111
>
1212
<a
13-
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.2.0"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.2.0 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.2.1"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.2.1 is now available! »</a
1515
>
1616
<!-- <a
1717
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.10.4"

src/pages/roadmap.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const metadata = {
88
99
// Release data extracted from releases.md
1010
const releases = [
11+
{ 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'] },
1112
{ 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'] },
1213
{ 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'] },
1314
{ 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' ] },
@@ -158,11 +159,11 @@ const getReleaseTypeBadge = (type: string) => {
158159
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
159160
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
160161
<div class="space-y-2">
161-
<div class="text-4xl font-bold text-primary">7.2.0</div>
162+
<div class="text-4xl font-bold text-primary">7.2.1</div>
162163
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
163164
</div>
164165
<div class="space-y-2">
165-
<div class="text-4xl font-bold text-primary">109</div>
166+
<div class="text-4xl font-bold text-primary">110</div>
166167
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
167168
</div>
168169
<div class="space-y-2">

0 commit comments

Comments
 (0)