db/proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort"
Closes #284
This commit is contained in:
parent
a8b9e5b9b9
commit
8dcb1f805d
1
NEWS
1
NEWS
|
@ -1,6 +1,7 @@
|
|||
ver 0.20.21 (not yet released)
|
||||
* database
|
||||
- proxy: add "password" setting
|
||||
- proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort"
|
||||
|
||||
ver 0.20.20 (2018/05/22)
|
||||
* protocol
|
||||
|
|
|
@ -170,6 +170,13 @@ static constexpr struct {
|
|||
#if LIBMPDCLIENT_CHECK_VERSION(2,10,0)
|
||||
{ TAG_MUSICBRAINZ_RELEASETRACKID,
|
||||
MPD_TAG_MUSICBRAINZ_RELEASETRACKID },
|
||||
#endif
|
||||
#if LIBMPDCLIENT_CHECK_VERSION(2,11,0)
|
||||
{ TAG_ARTIST_SORT, MPD_TAG_ARTIST_SORT },
|
||||
{ TAG_ALBUM_ARTIST_SORT, MPD_TAG_ALBUM_ARTIST_SORT },
|
||||
#endif
|
||||
#if LIBMPDCLIENT_CHECK_VERSION(2,12,0)
|
||||
{ TAG_ALBUM_SORT, MPD_TAG_ALBUM_SORT },
|
||||
#endif
|
||||
{ TAG_NUM_OF_ITEM_TYPES, MPD_TAG_COUNT }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue