# HG changeset patch # User nenolod # Date 1178943669 25200 # Node ID e5c1674fa767b892f2b44ed6db09c5ede934654e # Parent 4df1d5552a4d14ba7a22e6d01d499d6d5ea1c1da [svn] - add XCHAT.eat_all diff -r 4df1d5552a4d -r e5c1674fa767 ChangeLog --- a/ChangeLog Fri May 11 21:20:27 2007 -0700 +++ b/ChangeLog Fri May 11 21:21:09 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-12 04:20:27 +0000 William Pitcock + revision [4526] + - map to right handlers + + trunk/contrib/xchat-audacious.py | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + + 2007-05-12 04:19:21 +0000 William Pitcock revision [4524] - add stop, pause, next, prev, play functions diff -r 4df1d5552a4d -r e5c1674fa767 contrib/xchat-audacious.py --- a/contrib/xchat-audacious.py Fri May 11 21:20:27 2007 -0700 +++ b/contrib/xchat-audacious.py Fri May 11 21:21:09 2007 -0700 @@ -34,18 +34,23 @@ def command_next(word, word_eol, userdata): bus.get_object('org.atheme.audacious', '/org/atheme/audacious').Next() + return xchat.EAT_ALL def command_prev(word, word_eol, userdata): bus.get_object('org.atheme.audacious', '/org/atheme/audacious').Reverse() + return xchat.EAT_ALL def command_pause(word, word_eol, userdata): bus.get_object('org.atheme.audacious', '/org/atheme/audacious').Pause() + return xchat.EAT_ALL def command_stop(word, word_eol, userdata): bus.get_object('org.atheme.audacious', '/org/atheme/audacious').Stop() + return xchat.EAT_ALL def command_play(word, word_eol, userdata): bus.get_object('org.atheme.audacious', '/org/atheme/audacious').Play() + return xchat.EAT_ALL xchat.hook_command("NP", command_np, help="Displays current playing song.") xchat.hook_command("NEXT", command_next, help="Advances in Audacious' playlist.") @@ -54,4 +59,4 @@ 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 4526 2007-05-12 04:20:27Z nenolod $ loaded" +print "xchat-audacious $Id: xchat-audacious.py 4528 2007-05-12 04:21:09Z nenolod $ loaded" diff -r 4df1d5552a4d -r e5c1674fa767 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Fri May 11 21:20:27 2007 -0700 +++ b/src/audacious/build_stamp.c Fri May 11 21:21:09 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070512-4524"; +const gchar *svn_stamp = "20070512-4526";