[sorting] Add Added option to root sort for albums
All checks were successful
CI / test (push) Successful in 1m19s
CI / deploy (push) Successful in 1m52s

This commit is contained in:
2026-06-29 14:54:38 -04:00
parent a60ecc941d
commit e3d5d30cb8
3 changed files with 13 additions and 0 deletions

View File

@ -12,6 +12,14 @@ Built and maintained by James Barnsley.
.. image:: https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square
:target: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=james%40barnsley%2enz&lc=NZ&item_name=James%20Barnsley&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
Fork notes (by powellc)
**********
- Add support for mopidy-smartlists
- Add support for filtering the root Album view by release date
- Add default "Added" sorting to the drop down sort menu
- General test clean up
Features
********

View File

@ -90,6 +90,7 @@ fields:
followers: Followers
popularity: Popularity
date: Date
added: Added
time:
seconds:
short: secs

View File

@ -199,6 +199,10 @@ class Albums extends React.Component {
value: 'release_date',
label: i18n('fields.filters.date'),
},
{
value: 'added_at',
label: i18n('fields.filters.added'),
},
{
value: 'tracks',
label: i18n('fields.filters.tracks'),