Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mobile header fixed #151

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Binary file added public/blog/v6/20240930-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog/v6/20240930-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog/v6/20240930-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog/v6/20240930-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/blog/v6/20240930-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions src/content/post/2024-09-30-v6-header.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
publishDate: 2024-09-30T22:44:00Z
author: ildyria
title: 'Bite-size v6: Header fixes'
excerpt: Bite-size v6 is a series of small post showing the progress made on the development of the future version of Lychee.
image: /blog/v6/20240930-1.png
category: Active Development
tags:
- lychee
- vuejs
- v6
---

In my previous post, I mentionned I was not happy with the header, especially on mobile devices. I am happy to say that I found a nice compromise.

<div class="flex gap-2 -my-5">
<div>
![in mobile view](/blog/v6/20240930-2.png)
</div>
<div>
![in mobile view menu open](/blog/v6/20240930-3.png)
</div>
</div>

When switching the mobile, the long title is replaced by "Albums" and all the buttons are placed in a speed dial menu.
ildyria marked this conversation as resolved.
Show resolved Hide resolved

Similarly when logged out.
<div class="flex gap-2 -my-10">
<div class="w-4/6">
![in mobile view](/blog/v6/20240930-4.png)
</div>
<div class="w-2/6">
![in mobile view](/blog/v6/20240930-5.png)
</div>
</div>
The *"Return to home"* Link is replaced with a house button and the long title replaced by the translated Albums.

After checking most of the functions, I noticed that we are still missing the followings:
ildyria marked this conversation as resolved.
Show resolved Hide resolved

- [ ] The support of gps tracks
- [ ] The selection of header image in albums (plus misc I may have forgotten).
- [ ] Easy set/unset of visible smart albums (and probably fix some v5 bugs in the *unsorted* one).
- [ ] The support of Dropbox
- [ ] More easy to the eye in the Settings page.
Loading