# HG changeset patch # User nenolod # Date 1178943627 25200 # Node ID 4df1d5552a4d14ba7a22e6d01d499d6d5ea1c1da # Parent 96e7c038597380fa85af91498ca7816bc24d1232 [svn] - map to right handlers diff -r 96e7c0385973 -r 4df1d5552a4d ChangeLog --- a/ChangeLog Fri May 11 21:19:21 2007 -0700 +++ b/ChangeLog Fri May 11 21:20:27 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-12 04:19:21 +0000 William Pitcock + revision [4524] + - add stop, pause, next, prev, play functions + + trunk/contrib/xchat-audacious.py | 22 ++++++++++++++++++++++ + 1 file changed, 22 insertions(+) + + 2007-05-12 03:37:03 +0000 Yoshiki Yazawa revision [4522] - auddrct: more calls implemented (part 5) diff -r 96e7c0385973 -r 4df1d5552a4d contrib/xchat-audacious.py --- a/contrib/xchat-audacious.py Fri May 11 21:19:21 2007 -0700 +++ b/contrib/xchat-audacious.py Fri May 11 21:20:27 2007 -0700 @@ -50,8 +50,8 @@ xchat.hook_command("NP", command_np, help="Displays current playing song.") xchat.hook_command("NEXT", command_next, help="Advances in Audacious' playlist.") xchat.hook_command("PREV", command_prev, help="Goes backwards in Audacious' playlist.") -xchat.hook_command("PAUSE", command_np, help="Toggles paused status.") -xchat.hook_command("STOP", command_np, help="Stops playback.") -xchat.hook_command("PLAY", command_np, help="Begins playback.") +xchat.hook_command("PAUSE", command_pause, help="Toggles paused status.") +xchat.hook_command("STOP", command_stop, help="Stops playback.") +xchat.hook_command("PLAY", command_play, help="Begins playback.") -print "xchat-audacious $Id: xchat-audacious.py 4524 2007-05-12 04:19:21Z nenolod $ loaded" +print "xchat-audacious $Id: xchat-audacious.py 4526 2007-05-12 04:20:27Z nenolod $ loaded" diff -r 96e7c0385973 -r 4df1d5552a4d src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Fri May 11 21:19:21 2007 -0700 +++ b/src/audacious/build_stamp.c Fri May 11 21:20:27 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070512-4522"; +const gchar *svn_stamp = "20070512-4524";