From 747664b23cce50e34477fc47a8064bcd1102a621 Mon Sep 17 00:00:00 2001 From: ildyria Date: Sun, 30 Aug 2026 21:27:33 +0200 Subject: [PATCH] Version 7.8.2 --- .../docs/docs/getting-started/releases.md | 20 +++++++++++++++++++ src/data/releases.ts | 2 ++ 2 files changed, 22 insertions(+) diff --git a/src/content/docs/docs/getting-started/releases.md b/src/content/docs/docs/getting-started/releases.md index 03f5b28..b1d5301 100644 --- a/src/content/docs/docs/getting-started/releases.md +++ b/src/content/docs/docs/getting-started/releases.md @@ -11,6 +11,26 @@ sidebar: ## Version 7 +### v7.8.2 + +Released on August 30th, 2026 + +#### Hotfix + +This is the second hotfix of the previous release... If you had the title ordering set to lexicographic on phtoos in an album (not global config), you would not be able to open those albums. + +* `fix` #4685 : Fix photo ordering on albums by @ildyria. + +### v7.8.1 + +Released on August 30th, 2026 + +#### Hotfix + +This is a hotfix of the previous release. If you had the title ordering set to lexicographic on sub-albums in an album (not global config), you would not be able to open those albums. + +* `fix` #4682 : Fix missing album migration by @ildyria. + ### v7.8.0 Released on August 29th, 2026 diff --git a/src/data/releases.ts b/src/data/releases.ts index c992b0c..9617980 100644 --- a/src/data/releases.ts +++ b/src/data/releases.ts @@ -8,6 +8,8 @@ export interface Release { // Release data extracted from releases.md export const releases: Release[] = [ + { version: 'v7.8.2', date: 'Aug 30, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Fixes missing migration on album configuration for photo ordering'] }, + { version: 'v7.8.1', date: 'Aug 30, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Fixes missing migration on album configuration for sub-album ordering'] }, { version: 'v7.8.0', date: 'Aug 29, 2026', title: 'Dropping ordering by Descriptions', type: 'enhancement', highlights: ['Improved support for title ordering', 'Dropped sort by description', 'Metadata persistence in photos files'] }, { version: 'v7.7.5', date: 'Aug 23, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Fixes overflow on album size computation', 'fixes timezone confusion while saving dates'] }, { version: 'v7.7.4', date: 'Aug 19, 2026', title: 'Fixes', type: 'security', highlights: ['Fix video frame detection', 'Fix security issue'] },