-
Notifications
You must be signed in to change notification settings - Fork 122
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
How to organize the new homepage? #362
Comments
Personally I'm only on the album page, but it's not perfect for two reasons:
I know this is not very scalable since loading all the albums could be very long in huge DB, but I hope it can give you some ideas. |
When using Sonerezh, I mostly use:
I find the artists page is useless without at least a way to filter artists by the first letter (or a quick filter textbox). I like @Nizhile idea to have recently added/played items on a user homepage. |
@fcharlier , if you're a bit adventurous, you can use this patch on a clean 1.2.5 install. It works only with Mysql database. Note that once patched, you need to use This patch replaces the list of all songs by the list of latest five songs played. Hence users will at first have an empty homepage. Note also that there is no limit on the played table: if you have a lot of users, it might become very big without any mechanism to purge it. Moreover, the request to the database is rather not optimal. |
If you want to get a feel of what last imported albums looks like on home page, you can use this patch on a clean 1.2.5 install. Note that the patch currently remove pagination on the songs list: only the first page will be available. WARNING If you use it with the patch from my previous comment you will probably mess up your sonerezh install (files index.ctp and SongsController.php). |
I like the Spotify/Deezer UX. Everything is in one page. In Sonerezh, we could remove all the pages and, by default display the most played songs/albums, have a list of a few albums that weren't listened that much (maybe a random of 5 albums in the lower 10% albums). Then a menu on the left that allows to efficiently search for anything (song, artist, album), as well as all the playlists created. |
Hi, I'm glad to see that there is some discussions about what's missing or what's weird on Sonerezh 👍!
Anyway, great soft and keep up the good work 😄 |
Most listened songs or bands would be nice, but to be honest, on of the best features of the gui is its lovely simplicity No other player really does this. I would suggest a filtering of sorts in the Artists and Albums pages as noted by MightyCreak above. Maybe the playlist viewer could be a more integral part of the first screen? keep up the good work :) |
The next major release of Sonerezh (2.0.0) will offer a lot of new possibilities to implement new features, and I would like to refactor the home page (the page where you are redirected to once you're logged in) for Sonerezh 2.1.0.
By now this page only displays a list of songs but it is unusable when you have hundreds (or thousands) of tracks in your collection…
In place, I think we could have a page with data related to the current user:
Feel free to propose your ideas and I'll try to implement the best of them for Sonerezh 2.1 or 2.2. :)
The text was updated successfully, but these errors were encountered: