From 83fd822e8b9a4dd1132a2cec324c4171d8ca2946 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 25 Nov 2014 17:07:08 +0100 Subject: [PATCH] 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). --- NEWS | 2 ++ src/tag/ApeTag.cxx | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 96cd0cd46..846b059c1 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ ver 0.20 (not yet released) * protocol - "commands" returns playlist commands only if playlist_directory configured - "search"/"find" have a "window" parameter +* tags + - ape: drop support for non-standard tag "album artist" * output - pulse: set channel map to WAVE-EX diff --git a/src/tag/ApeTag.cxx b/src/tag/ApeTag.cxx index f714a1624..4e3a8b187 100644 --- a/src/tag/ApeTag.cxx +++ b/src/tag/ApeTag.cxx @@ -30,7 +30,6 @@ #include const struct tag_table ape_tags[] = { - { "album artist", TAG_ALBUM_ARTIST }, { "year", TAG_DATE }, { nullptr, TAG_NUM_OF_ITEM_TYPES } };