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
31 changes: 31 additions & 0 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,37 @@

## Version 7

### v7.3.3

Released on Feb 15th, 2026

#### Bulgarian language, fixes and improvements

This is a small patch which brings a few fixes and improvements. The most notable one is the addition of Bulgarian translations, thanks to our new contributor `@tkulev`. Additionally, `@cdzombak` added the possibility to filter embedded albums/streams by author using the data-author attribute.
We also propose two new smart albums: "My rated pictures" and "My best rated pictures". The first one contains all the photos that you have rated, while the second one contains the best rated photos by you. Those albums are only visible to you and are a great way to quickly access your favorite photos.

This patch also contains a FrankenPHP update to fix some security issues. You can read more about it [here](https://github.com/php/frankenphp/releases/tag/v1.11.2)

#### Most notable changes

* `new` #4041 : Add 2 new smart albums: "My rated pictures" and "My best rated pictures" by @ildyria.
* `new` #4046 : Add setting to also hide GPS data by @ildyria.
* `fix` #4048 : Fix settings not being set for default album protection policy by @ildyria.
* `fix` #4049 : Fix delete warning in tags albums by @ildyria.
* `fix` #4070 : Fix migration failing when rerun by @ildyria.
* `new` #4080 : Adding Bulgarian translations by @tkulev.
* `fix` #4084 : Copy built album-embed assets into Docker images by @cdzombak.
* `new` #4083 : Allow filtering embedded albums/streams by author using data-author attribute by @cdzombak.
* `klo` #4085 : Move notes on embeds feature from .ai to docs/specs/4-architecture/feature by @cdzombak.
* `fix` #4086 : Bump frankenphp by @ildyria.
* `klo` #4091 : Fix docker compose in readme by @ildyria.
* `fix` #4092 : Fix zip first install by @ildyria.

#### New Contributors

* @tkulev made their first contribution in https://github.com/LycheeOrg/Lychee/pull/4080


### v7.3.2

Released on Jan 29th, 2026
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.3.2"
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.3.2 is now available! »</a
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.3.3"
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.3.3 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.3.3', date: 'Feb 15, 2026', title: 'Bulgarian and small features', type: 'bugfix', highlights: ['Bulgarian language', 'Rated smart albums', 'embed filters'] },
{ version: 'v7.3.2', date: 'Jan 29, 2026', title: 'Hotfix - Album interactions & migration', type: 'bugfix', highlights: ['Album interactions', 'Edge case of Migrations not applied'] },
{ version: 'v7.3.1', date: 'Jan 28, 2026', title: 'Hotfix - Docker', type: 'bugfix', highlights: ['Add php-ldap dependency to docker image'] },
{ version: 'v7.3.0', date: 'Jan 27, 2026', title: 'LDAP/AD support & UI improvements', type: 'feature', highlights: ['🌟 LDAP/Active Directory support (SE)', 'Photo details drawer open by default option', 'Fixed migration issues'] },
Expand Down Expand Up @@ -162,11 +163,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.3.2</div>
<div class="text-4xl font-bold text-primary">7.3.3</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">113</div>
<div class="text-4xl font-bold text-primary">114</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
8 changes: 8 additions & 0 deletions src/pages/support.astro
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ Processed 4742265 bytes, 4.742 megabytes (SI)
},
description: 'dev.',
},
{
title: 'tkulev (Tihomil Kulev)',
image: {
src: 'https://avatars.githubusercontent.com/u/149415?v=4',
alt: 'tkulev',
},
description: 'dev.',
},
// {
// title: 'RonnieTaz (Vicent Simon)',
// image: {
Expand Down