X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fstrfsong.c;h=48567675d964882e41df3b6b8357da684ff4f2da;hb=8d06a993613f408a90be61adc88edd45e2fb2985;hp=35086e85de41afe083d2f43e71f58ebd7453f7a9;hpb=3615326834ab406f9ad360ec8287fee4743e8de0;p=ncmpc.git diff --git a/src/strfsong.c b/src/strfsong.c index 35086e8..4856767 100644 --- a/src/strfsong.c +++ b/src/strfsong.c @@ -208,6 +208,12 @@ _strfsong(gchar *s, temp = utf8_to_locale(mpd_song_get_uri(song)); else if (strncmp("%artist%", p, n) == 0) temp = song_tag_locale(song, MPD_TAG_ARTIST); + else if (strncmp("%albumartist", p, n) == 0) + temp = song_tag_locale(song, MPD_TAG_ALBUM_ARTIST); + else if (strncmp("%composer%", p, n) == 0) + temp = song_tag_locale(song, MPD_TAG_COMPOSER); + else if (strncmp("%performer%", p, n) == 0) + temp = song_tag_locale(song, MPD_TAG_PERFORMER); else if (strncmp("%title%", p, n) == 0) temp = song_tag_locale(song, MPD_TAG_TITLE); else if (strncmp("%album%", p, n) == 0)