# HG changeset patch # User kiyoshi # Date 1165744415 28800 # Node ID 92848bda520d4f9441dcf22569d162e7ba56d699 # Parent 6f97100467cf1ec60eb44c24ed876af30cb1dfa3 [svn] Move supported formats to plugin info, rename plugin to 'Game console audio module decoder'. diff -r 6f97100467cf -r 92848bda520d ChangeLog --- a/ChangeLog Sun Dec 10 01:14:33 2006 -0800 +++ b/ChangeLog Sun Dec 10 01:53:35 2006 -0800 @@ -1,3 +1,11 @@ +2006-12-10 09:14:33 +0000 Yoshiki Yazawa + revision [776] + - add missing code + + trunk/src/scrobbler/configure.c | 19 ++++++++++++++++++- + 1 file changed, 18 insertions(+), 1 deletion(-) + + 2006-12-09 16:32:41 +0000 Yoshiki Yazawa revision [772] - replace g_usleep() with g_cond_timed_wait() diff -r 6f97100467cf -r 92848bda520d src/console/Audacious_Driver.cxx --- a/src/console/Audacious_Driver.cxx Sun Dec 10 01:14:33 2006 -0800 +++ b/src/console/Audacious_Driver.cxx Sun Dec 10 01:53:35 2006 -0800 @@ -443,6 +443,7 @@ { aboutbox = xmms_show_message(_("About the Console Music Decoder"), _("Console music decoder engine based on Game_Music_Emu 0.5.2.\n" + "Supported formats: AY, GBS, GYM, HES, KSS, NSF, NSFE, SAP, SPC, VGM, VGZ\n" "Audacious implementation by: William Pitcock , \n" " Shay Green "), _("Ok"), @@ -486,6 +487,6 @@ extern "C" InputPlugin *get_iplugin_info(void) { - console_ip.description = g_strdup_printf(_("AY, GBS, GYM, HES, KSS, NSF, NSFE, SAP, SPC, VGM, VGZ module decoder")); + console_ip.description = g_strdup_printf(_("Game console audio module decoder")); return &console_ip; }