Mercurial > audlegacy
changeset 2475:5fcdef6e3754 trunk
[svn] - fix audacious -s, closes #778.
author | nenolod |
---|---|
date | Sun, 04 Feb 2007 22:39:00 -0800 |
parents | 960acc94fcb7 |
children | ccf4546cfd61 |
files | ChangeLog src/audacious/build_stamp.c src/audacious/main.c |
diffstat | 3 files changed, 11 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Feb 04 07:47:05 2007 -0800 +++ b/ChangeLog Sun Feb 04 22:39:00 2007 -0800 @@ -1,3 +1,12 @@ +2007-02-04 15:47:05 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [3958] + - add "%U" to arguments of audacious.desktop.in::exec. + Closes: bugs-meta #776, launchpad #83112 + + trunk/src/audacious/audacious.desktop.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-02-03 19:19:07 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [3956] - define __AUDACIOUS_INPUT_PLUGIN_API__ to 2 by request of shd
--- a/src/audacious/build_stamp.c Sun Feb 04 07:47:05 2007 -0800 +++ b/src/audacious/build_stamp.c Sun Feb 04 22:39:00 2007 -0800 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070203-3956"; +const gchar *svn_stamp = "20070204-3958";
--- a/src/audacious/main.c Sun Feb 04 07:47:05 2007 -0800 +++ b/src/audacious/main.c Sun Feb 04 22:39:00 2007 -0800 @@ -829,7 +829,7 @@ {"rew", 'r', 0, G_OPTION_ARG_NONE, &options.rew, N_("Skip backwards in playlist"), NULL}, {"play", 'p', 0, G_OPTION_ARG_NONE, &options.play, N_("Start playing current playlist"), NULL}, {"pause", 'u', 0, G_OPTION_ARG_NONE, &options.pause, N_("Pause current song"), NULL}, - {"stop", 's', 0, G_OPTION_ARG_NONE, &options.pause, N_("Stop current song"), NULL}, + {"stop", 's', 0, G_OPTION_ARG_NONE, &options.stop, N_("Stop current song"), NULL}, {"play-pause", 't', 0, G_OPTION_ARG_NONE, &options.pause, N_("Pause if playing, play otherwise"), NULL}, {"fwd", 'f', 0, G_OPTION_ARG_NONE, &options.fwd, N_("Skip forward in playlist"), NULL}, {"show-jump-box", 'j', 0, G_OPTION_ARG_NONE, &options.show_jump_box, N_("Display Jump to File dialog"), NULL},