From 41e471e50e2d5b84c091f0574c0a0ee768092653 Mon Sep 17 00:00:00 2001 From: "James D. Smith" Date: Wed, 15 Sep 2021 21:21:38 -0600 Subject: File properties plugin: Add disc number. Change-Id: I98c9ccdffdaae8c5c9117212365ae82b9bf2147c --- apps/lang/english.lang | 14 ++++++++++++++ apps/plugins/properties.c | 6 +++++- 2 files changed, 19 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/lang/english.lang b/apps/lang/english.lang index 2083faf890..d73f555ebb 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -16038,3 +16038,17 @@ *: "Track number" + + id: LANG_PROPERTIES_DISCNUM + desc: in properties plugin + user: core + + *: "[Discnum]" + + + *: "[Discnum]" + + + *: "Disc number" + + diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index b3955a286a..e2c83217a4 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -40,6 +40,7 @@ char str_album[MAX_PATH]; char str_genre[MAX_PATH]; char str_comment[MAX_PATH]; char str_year[MAX_PATH]; +char str_discnum[MAX_PATH]; char str_tracknum[MAX_PATH]; char str_duration[32]; @@ -65,6 +66,7 @@ static const unsigned char* const props_file[] = ID2P(LANG_PROPERTIES_GENRE), str_genre, ID2P(LANG_PROPERTIES_COMMENT), str_comment, ID2P(LANG_PROPERTIES_YEAR), str_year, + ID2P(LANG_PROPERTIES_DISCNUM), str_discnum, ID2P(LANG_PROPERTIES_TRACKNUM), str_tracknum, ID2P(LANG_PROPERTIES_DURATION), str_duration, }; @@ -145,9 +147,11 @@ static bool file_properties(const char* selected_file) "%s", id3.comment ? id3.comment : ""); rb->snprintf(str_year, sizeof str_year, "%s", id3.year_string ? id3.year_string : ""); + rb->snprintf(str_discnum, sizeof str_discnum, + "%s", id3.disc_string ? id3.disc_string : ""); rb->snprintf(str_tracknum, sizeof str_tracknum, "%s", id3.track_string ? id3.track_string : ""); - num_properties += 9; + num_properties += 10; if (dur > 0) { -- cgit v1.2.3