Mercurial > audlegacy
changeset 2750:4df1d5552a4d trunk
[svn] - map to right handlers
author | nenolod |
---|---|
date | Fri, 11 May 2007 21:20:27 -0700 |
parents | 96e7c0385973 |
children | e5c1674fa767 |
files | ChangeLog contrib/xchat-audacious.py src/audacious/build_stamp.c |
diffstat | 3 files changed, 13 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@sacredspiral.co.uk> + 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 <yaz@cc.rim.or.jp> revision [4522] - auddrct: more calls implemented (part 5)
--- 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"