# HG changeset patch # User chainsaw # Date 1171894283 28800 # Node ID cea3528b2996e93952ae05052adec5f09d72d6f8 # Parent 864c12eafb49512dc79f76ff2cad39f9c21d2352 [svn] Fix --play-pause commandline option, by Alex "Monkey" Maclean in #gentoo-x86 diff -r 864c12eafb49 -r cea3528b2996 ChangeLog --- a/ChangeLog Mon Feb 19 00:16:28 2007 -0800 +++ b/ChangeLog Mon Feb 19 06:11:23 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-19 08:16:28 +0000 Yoshiki Yazawa + revision [4110] + - mtime should be initialized to -1, otherwise 0 will be recorded for not yet scanned entries. it means static and will suppress on-demand scanning. + + trunk/src/audacious/titlestring.c | 1 + + 1 file changed, 1 insertion(+) + + 2007-02-19 06:33:03 +0000 Yoshiki Yazawa revision [4108] - update playlist->tail when an entry has been removed. diff -r 864c12eafb49 -r cea3528b2996 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Mon Feb 19 00:16:28 2007 -0800 +++ b/src/audacious/build_stamp.c Mon Feb 19 06:11:23 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070219-4108"; +const gchar *svn_stamp = "20070219-4110"; diff -r 864c12eafb49 -r cea3528b2996 src/audacious/main.c --- a/src/audacious/main.c Mon Feb 19 00:16:28 2007 -0800 +++ b/src/audacious/main.c Mon Feb 19 06:11:23 2007 -0800 @@ -852,7 +852,7 @@ {"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.stop, N_("Stop current song"), NULL}, - {"play-pause", 't', 0, G_OPTION_ARG_NONE, &options.pause, N_("Pause if playing, play otherwise"), NULL}, + {"play-pause", 't', 0, G_OPTION_ARG_NONE, &options.play_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}, {"enqueue", 'e', 0, G_OPTION_ARG_NONE, &options.enqueue, N_("Don't clear the playlist"), NULL},