diff --git a/NEWS b/NEWS index 1c7d4dc1e..7068149c6 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ ver 0.15.15 (2010/??/??) * input: - rewind: fix assertion failure +* output: + - shout: artist comes first in stream title ver 0.15.14 (2010/11/06) diff --git a/src/output/shout_plugin.c b/src/output/shout_plugin.c index 4412d26ff..dbc56f337 100644 --- a/src/output/shout_plugin.c +++ b/src/output/shout_plugin.c @@ -483,7 +483,7 @@ shout_tag_to_metadata(const struct tag *tag, char *dest, size_t size) } } - snprintf(dest, size, "%s - %s", title, artist); + snprintf(dest, size, "%s - %s", artist, title); } static void my_shout_set_tag(void *data,