ApeTag: drop support for non-standard tag "album artist"

This was used by proprietary software.  MPD adopted it a few years
ago, which turns out to be a mistake, because it now creates problems
for some MPD users (http://bugs.musicpd.org/view.php?id=4168).
This commit is contained in:
Max Kellermann 2014-11-25 17:07:08 +01:00
parent dd3752956a
commit 83fd822e8b
2 changed files with 2 additions and 1 deletions

2
NEWS
View File

@ -2,6 +2,8 @@ ver 0.20 (not yet released)
* protocol * protocol
- "commands" returns playlist commands only if playlist_directory configured - "commands" returns playlist commands only if playlist_directory configured
- "search"/"find" have a "window" parameter - "search"/"find" have a "window" parameter
* tags
- ape: drop support for non-standard tag "album artist"
* output * output
- pulse: set channel map to WAVE-EX - pulse: set channel map to WAVE-EX

View File

@ -30,7 +30,6 @@
#include <string.h> #include <string.h>
const struct tag_table ape_tags[] = { const struct tag_table ape_tags[] = {
{ "album artist", TAG_ALBUM_ARTIST },
{ "year", TAG_DATE }, { "year", TAG_DATE },
{ nullptr, TAG_NUM_OF_ITEM_TYPES } { nullptr, TAG_NUM_OF_ITEM_TYPES }
}; };