From: Kalle Wallin Date: Sun, 5 Jun 2005 21:34:21 +0000 (+0000) Subject: Added support for %date% and %genre% - from qball X-Git-Tag: v0.12_alpha1~425 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=16781807eabac2449c096f7cbca91bc4bc69a52c;p=ncmpc.git Added support for %date% and %genre% - from qball git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3319 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- diff --git a/src/strfsong.c b/src/strfsong.c index 4c2bf38..3f60875 100644 --- a/src/strfsong.c +++ b/src/strfsong.c @@ -174,6 +174,10 @@ _strfsong(gchar *s, temp = song->track ? utf8_to_locale(song->track) : NULL; else if (strncmp("%name%", p, n) == 0) temp = song->name ? utf8_to_locale(song->name) : NULL; + else if (strncmp("%date%", p, n) == 0) + temp = song->date ? utf8_to_locale(song->date) : NULL; + else if (strncmp("%genre%", p, n) == 0) + temp = song->genre ? utf8_to_locale(song->genre) : NULL; else if (strncmp("%shortfile%", p, n) == 0) { if( strstr(song->file, "://") )