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:
parent
dd3752956a
commit
83fd822e8b
2
NEWS
2
NEWS
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue