Skip to content

Commit fa44d0b

Browse files
authored
version 7.1.1 (#263)
1 parent 2fabdf6 commit fa44d0b

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

docs/releases.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@
3030

3131
## Version 7
3232

33+
### v7.1.1
34+
35+
Released on Jan 13th, 2026
36+
37+
#### Hot fixes: Synology & menu issues
38+
39+
Small but important release to fix two important issues that were reported by our users. On Synology, the container kept rebooting due to write permission issues in dropped privilege mode. We fixed this by ensuring that the entrypoint script creates the necessary directories with the correct permissions. On the front-end the context menu was not appearing on the photos, this is also resolved.
40+
41+
* `fix` #3962 : Fixed Synology issues by @ildyria.
42+
* `fix` #3971 : Fix menu not appearing by @ildyria.
43+
44+
**Full Changelog**: https://github.com/LycheeOrg/Lychee/compare/v7.1.0...v7.1.1
45+
3346
### v7.1.0
3447

3548
Released on Jan 11th, 2026

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.1.0"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.1.0 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.1.1"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.1.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.1.1', date: 'Jan 13, 2026', title: 'Synology & Menu fixes', type: 'bugfix', highlights: ['Fixed Synology write permission issues', 'Fixed context-menu not appearing' ] },
1112
{ version: 'v7.1.0', date: 'Jan 11, 2026', title: 'Back to Debian, Caching & Pagination', type: 'major', highlights: ['Moved from Alpine to Debian docker', 'Pre-computed album covers & stats', 'Pagination for albums & photos', 'Drop privileges for PHP processes', 'Improved loading speed', 'Lexicographical sorting'] },
1213
{ version: 'v7.0.1', date: 'Jan 1, 2026', title: 'Minor fixes', type: 'bugfix', highlights: ['Fixed eternal darkmode issue'] },
1314
{ version: 'v7.0.0', date: 'Dec 31, 2025', title: 'FrankenPHP, Webshop & Ratings', type: 'major', highlights: ['🌟 Webshop (Pro Edition)', 'Star rating system', 'FrankenPHP with Laravel Octane', 'Worker mode for horizontal scaling', 'AVIF support', 'PHP 8.4 required'] },
@@ -155,11 +156,11 @@ const getReleaseTypeBadge = (type: string) => {
155156
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
156157
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
157158
<div class="space-y-2">
158-
<div class="text-4xl font-bold text-primary">7.1.0</div>
159+
<div class="text-4xl font-bold text-primary">7.1.1</div>
159160
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
160161
</div>
161162
<div class="space-y-2">
162-
<div class="text-4xl font-bold text-primary">106</div>
163+
<div class="text-4xl font-bold text-primary">107</div>
163164
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
164165
</div>
165166
<div class="space-y-2">

0 commit comments

Comments
 (0)