-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
246 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
import { Icon } from 'astro-icon/components'; | ||
const { icon = '', classes = {} } = Astro.props; | ||
--- | ||
<div class={`inline-block rounded-full mt-1 w-5 h-5 ${classes?.icon_bg ?? 'bg-sky-100 dark:bg-sky-800'}`}> | ||
<Icon name={icon ? icon : 'tabler:check'} class={`w-5 h-5 font-bold p-1 ${classes?.icon ?? 'text-primary dark:text-neutral-300'}`} /> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
publishDate: 2024-10-13T21:46:00Z | ||
author: ildyria | ||
title: 'Bite-size v6: Updates and timelines' | ||
excerpt: Bite-size v6 is a series of small post showing the progress made on the development of the future version of Lychee. | ||
image: https://images.unsplash.com/photo-1495020689067-958852a7765e?q=80&w=3538&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D | ||
category: Active Development | ||
tags: | ||
- lychee | ||
- vuejs | ||
- v6 | ||
--- | ||
|
||
It has been a week since the release of the beta and I do get questions such as "*when will we see a production build?*"" | ||
|
||
This an hard to answer question. One one hand, we could merge the changes and ship 6.0.0 today. | ||
Why don't we do it? Because there has not been a thorough review process on it the [Pull Request #2504](https://github.com/LycheeOrg/Lychee/pull/2504) yet. | ||
|
||
At LycheeOrg we strive for quality, and while I am confident in my abilities, everyone has a blind spot. | ||
For this reason, I am waiting for the feedback of our Beta users, in order to fix their findings. | ||
|
||
Over the past week, I got a lot of feedback from Tino Hager (big thanks), so I still have a few things to work on, namely: | ||
|
||
- [ ] : rotation - refresh visual. | ||
- [ ] : Album selection when only one album exists => edge case list is empty. | ||
- [ ] : Drag & drop photo. | ||
- [ ] : Ctrl + V pasting photos to upload. | ||
- [ ] : Upload button when album is empty. | ||
|
||
I already solved a lot of his previous notes, and will happily continue doing it again in the future. | ||
|
||
Now to the question, can I already use the docker `alpha` branch in production? | ||
I am doing it, but I know lychee like the palm of my hand, YMMV. :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters