From 16781807eabac2449c096f7cbca91bc4bc69a52c Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Sun, 5 Jun 2005 21:34:21 +0000 Subject: [PATCH] Added support for %date% and %genre% - from qball git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3319 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/strfsong.c | 4 ++++ 1 file changed, 4 insertions(+) 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, "://") ) -- 2.30.2