From 22d669da181ba268d4fdcdd3bda33f64192f3701 Mon Sep 17 00:00:00 2001 From: "James D. Smith" Date: Fri, 4 Jan 2019 19:18:15 -0700 Subject: [PATCH] Add APE mapping for album artist. "De-facto" field mappings are available at http://wiki.hydrogenaud.io/index.php?title=Tag_Mapping. --- NEWS | 2 ++ src/tag/ApeTag.cxx | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 478a15353..8433e3d32 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ ver 0.21.5 (not yet released) +* tags + - ape: map "Album Artist" ver 0.21.4 (2019/01/04) * database diff --git a/src/tag/ApeTag.cxx b/src/tag/ApeTag.cxx index b05162f23..443bd835a 100644 --- a/src/tag/ApeTag.cxx +++ b/src/tag/ApeTag.cxx @@ -29,6 +29,7 @@ #include static constexpr struct tag_table ape_tags[] = { + { "album artist", TAG_ALBUM_ARTIST }, { "year", TAG_DATE }, { nullptr, TAG_NUM_OF_ITEM_TYPES } };