Skip to content

Commit 6e1a879

Browse files
ildyriad7415
andauthored
version 6.6.0 (#200)
--------- Co-authored-by: Martin Stone <[email protected]>
1 parent ac4580c commit 6e1a879

File tree

3 files changed

+62
-9
lines changed

3 files changed

+62
-9
lines changed

docs/releases.md

+38-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,44 @@
3030

3131
## Version 6
3232

33+
### v6.6.0
34+
35+
Released on May 1, 2025
36+
37+
#### Legacy is gone and improved image security
38+
39+
To put it simply, we are getting rid of the legacy v4 code.
40+
This change is significant for two reasons. First of all, it means that the API v1 is now completely gone.
41+
But more importantly, this is a big change for us, as we have been using the v4 codebase as a safety net for a long time.
42+
If something breaks, there will no longer be an easy flag that disables the complete vue-js front-end and fallbacks to the v4 codebase.
43+
44+
This fallback process has been extremely useful to us when we deployed the version 5, and in early version 6. However we are now satisfied with the current state of the front-end and we no longer think that the fallback to v4 is needed.
45+
46+
One may wonder why we decided to do this change, and to that there are two big reasons:
47+
48+
- We no longer will need to maintain a legacy compatibility. Cleaning old code bases is part of the life cycle of a project, and we are now at the point where we can do this.
49+
- We are planning to refactor the way images are attached to albums. We decided to go in the direction of a many-to-many relationship. In layman terms, this means that a photo can be in multiple albums at the same time. This behaviour is not compatible with the API v1 definitions. This relationship change is going to have significant impact on the way photos access rights are handled, but we are confident this will also enable us to provide more interesting features in the future.
50+
51+
Now moving on from this 45 000 lines of code removal, we also simplified the way photos are shared. In the past in order to avoid hot-links we had to create symbolic links that expired. This was a bit of a hack. We now provide the option to use signed urls. This ensures that the photo is only available for a limited amount of time. Our SE users will also be happy to know that the url of the photo can also be encrypted, making sure that nobody can access the photo by guessworks.
52+
53+
`klo` refers to *Keep the Light On*. In other words, basic software updates.
54+
55+
* `new` #3296 : Propose revising the footer text as it could be misunderstood by @Novapixel1010.
56+
> Small change aimed to clarify that Lychee org is not hosting the pictures but that Lychee is a software that allows users
57+
> to have their own self-hosted gallery.
58+
* `klo` #3291 : Remove legacy v4 by @ildyria.
59+
> There is no coming back...
60+
* `new` #3211 : Drop random symlinks functionality for a more streamlined system by @ildyria.
61+
> Remove the symbolic link functionality, this feature provides a more modern and secure way to share photos links.
62+
* `fixes` #3289 : Fixes sharing access rights. by @ildyria.
63+
> When trying to share multiple albums with multiple users, all the accessible albums could be selected even though the user
64+
> was not allowed to edit them. We now only list the albums that are owned by the user.
65+
66+
#### New Contributors
67+
68+
* @Novapixel1010 made their first contribution in https://github.com/LycheeOrg/Lychee/pull/3296
69+
70+
3371
### v6.5.3
3472

3573
Released on Apr 27, 2025
@@ -40,8 +78,6 @@ This small release is mostly targeted at fixing a few bugs. Though if you are a
4078
you will want to upgrade to this version as soon as possible as it solves the error 500 when the metrics
4179
module is enabled and trying to open album with recently uploaded photos.
4280

43-
`klo` refers to *Keep the Light On*. In other words, basic software updates.
44-
4581
* `new` #3263 : Allow description to be used in photo thumb (expert setting) by @ildyria
4682
> A small request from one of our user. This allows to display the description of the photo instead of
4783
> its title and date of capture in the thumbnail album view. This text is formatted with markdown and the display

src/components/widgets/Announcement.astro

+2-2
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/v6.5.3"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 6.5.3 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.6.0"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 6.6.0 is now available! »</a
1515
>
1616
<a
1717
target="_blank"

src/pages/get-supporter-edition.astro

+22-5
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ const metadata = {
8181
// },
8282
{
8383
description: 'Same features as the Free Edition.',
84+
classes: { icon: 'bg-green-700 rounded-full text-white' }
8485
},
8586
{
8687
description: 'Statistics on your library.',
@@ -94,6 +95,10 @@ const metadata = {
9495
description: 'Anonymous uploads.',
9596
icon: 'tabler:plus',
9697
},
98+
{
99+
description: 'Secured image links.',
100+
icon: 'tabler:plus',
101+
},
97102
{
98103
description: 'Extended customizations.',
99104
icon: 'tabler:plus',
@@ -120,10 +125,12 @@ const metadata = {
120125
/>
121126

122127
<FeaturesList
123-
title="Full comparison"
128+
title="Full comparison<sup class='text-xl'>*</sup>"
124129
tagline="the essentials and a few more"
125130
products={['Free', 'Lychee <span class="text-sky-600 dark:text-sky-300">SE</span>']}
126-
extra="<sup>*</sup>A lot of default values are still in English. Any pull requests with translation to your own language would help.<br><sup>*</sup><sup>*</sup> This option is not available on <span class='text-sky-600 dark:text-sky-300'>SE</span> as they are already hidden."
131+
extra="<sup>*</sup> This table is summary of Lychee's functionalities and does not represent the large amount of configurations available.<br>\
132+
<sup>**</sup> A lot of default values are still in English. Any pull requests with translation to your own language would help.<br>\
133+
<sup>***</sup> This option is not available on <span class='text-sky-600 dark:text-sky-300'>SE</span> as they are already hidden."
127134
specs={[
128135
{
129136
feature: 'Global',
@@ -147,11 +154,11 @@ const metadata = {
147154
available: [true, true],
148155
},
149156
{
150-
feature: 'Multiple languages supported<sup>*</sup>',
157+
feature: 'Multiple languages supported<sup>*</sup><sup>*</sup>',
151158
available: [true, true],
152159
},
153160
{
154-
feature: 'Hide Lychee <span class="text-sky-600 dark:text-sky-300">SE</span> call for actions <sup>*</sup><sup>*</sup>',
161+
feature: 'Hide Lychee <span class="text-sky-600 dark:text-sky-300">SE</span> call for actions <sup>*</sup><sup>*</sup><sup>*</sup>',
155162
available: [true, false],
156163
isV6: true,
157164
},
@@ -191,6 +198,16 @@ const metadata = {
191198
available: [true, true],
192199
isV6: true,
193200
},
201+
{
202+
feature: 'Hotlink protection',
203+
available: [true, true],
204+
isV6: true,
205+
},
206+
{
207+
feature: 'AES-Secured links',
208+
available: [false, true],
209+
isV6: true,
210+
},
194211
{
195212
feature: 'Statistics (download,share, etc.)',
196213
available: [false, true],
@@ -410,7 +427,7 @@ const metadata = {
410427

411428
<FAQs
412429
title="FAQs"
413-
subtitle="With the new <span class='font-bold dark:text-neutral-200'>Lychee <span class='text-sky-600 dark:text-sky-300'>SE</span></span> coming soon, we understand that you must have some questions. We try to answer some of them here."
430+
subtitle="With the new <span class='font-bold dark:text-neutral-200'>Lychee <span class='text-sky-600 dark:text-sky-300'>SE</span></span> readily available, we understand that you must have some questions. We try to answer some of them here."
414431
columns={1}
415432
items={[
416433
{

0 commit comments

Comments
 (0)