Commit 8dcb1f80 authored by Max Kellermann's avatar Max Kellermann

db/proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort"

Closes #284
parent a8b9e5b9
ver 0.20.21 (not yet released) ver 0.20.21 (not yet released)
* database * database
- proxy: add "password" setting - proxy: add "password" setting
- proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort"
ver 0.20.20 (2018/05/22) ver 0.20.20 (2018/05/22)
* protocol * protocol
......
...@@ -171,6 +171,13 @@ static constexpr struct { ...@@ -171,6 +171,13 @@ static constexpr struct {
{ TAG_MUSICBRAINZ_RELEASETRACKID, { TAG_MUSICBRAINZ_RELEASETRACKID,
MPD_TAG_MUSICBRAINZ_RELEASETRACKID }, MPD_TAG_MUSICBRAINZ_RELEASETRACKID },
#endif #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 } { TAG_NUM_OF_ITEM_TYPES, MPD_TAG_COUNT }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment