From 7882e093b23f186f089abb91c245787cc2e04a62 Mon Sep 17 00:00:00 2001 From: "James D. Smith" Date: Wed, 15 Sep 2021 20:27:31 -0600 Subject: File properties plugin: Add album artist. Change-Id: I150e11ba309953959d374898a63d4250a90651bb --- apps/plugins/properties.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'apps/plugins/properties.c') diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index 0fa83c0b56..5e2ab5101c 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -34,6 +34,7 @@ char str_time[64]; char str_title[MAX_PATH]; char str_artist[MAX_PATH]; +char str_albumartist[MAX_PATH]; char str_album[MAX_PATH]; char str_duration[32]; @@ -52,6 +53,7 @@ static const unsigned char* const props_file[] = ID2P(LANG_PROPERTIES_DATE), str_date, ID2P(LANG_PROPERTIES_TIME), str_time, ID2P(LANG_PROPERTIES_ARTIST), str_artist, + ID2P(LANG_PROPERTIES_ALBUMARTIST), str_albumartist, ID2P(LANG_PROPERTIES_TITLE), str_title, ID2P(LANG_PROPERTIES_ALBUM), str_album, ID2P(LANG_PROPERTIES_DURATION), str_duration, @@ -119,11 +121,13 @@ static bool file_properties(const char* selected_file) long dur = id3.length / 1000; /* seconds */ rb->snprintf(str_artist, sizeof str_artist, "%s", id3.artist ? id3.artist : ""); + rb->snprintf(str_albumartist, sizeof str_albumartist, + "%s", id3.albumartist ? id3.albumartist : ""); rb->snprintf(str_title, sizeof str_title, "%s", id3.title ? id3.title : ""); rb->snprintf(str_album, sizeof str_album, "%s", id3.album ? id3.album : ""); - num_properties += 3; + num_properties += 4; if (dur > 0) { -- cgit v1.2.3