# HG changeset patch # User nenolod # Date 1170657540 28800 # Node ID 5fcdef6e3754b6ce10e12bcbf39af0176d99c82e # Parent 960acc94fcb7a1459d47826db336afbc943f2600 [svn] - fix audacious -s, closes #778. diff -r 960acc94fcb7 -r 5fcdef6e3754 ChangeLog --- 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 + 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 revision [3956] - define __AUDACIOUS_INPUT_PLUGIN_API__ to 2 by request of shd diff -r 960acc94fcb7 -r 5fcdef6e3754 src/audacious/build_stamp.c --- 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 -const gchar *svn_stamp = "20070203-3956"; +const gchar *svn_stamp = "20070204-3958"; diff -r 960acc94fcb7 -r 5fcdef6e3754 src/audacious/main.c --- 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},