1. 29 Mar, 2009 5 commits
  2. 28 Mar, 2009 8 commits
  3. 27 Mar, 2009 21 commits
  4. 26 Mar, 2009 6 commits
    • Max Kellermann's avatar
      pulse_mixer: adapted code style · 929c200c
      Max Kellermann authored
      Use the same code style as the rest of MPD.
      929c200c
    • Max Kellermann's avatar
      output_all: synchronize playback with player_control.notify · 207786ff
      Max Kellermann authored
      This patch fixes a longer delay when moving around songs in the
      playlist.  The main thread wants to enqueue a new "next" song into the
      player thread, but the player thread is waiting inside
      audio_output_all_wait() for the output threads.  Use
      player_control.notify there, so audio_output_all_wait() gets woken up
      by the main thread, too.
      207786ff
    • Max Kellermann's avatar
      playlist_state: fix playback restore in random mode · ed483766
      Max Kellermann authored
      The functions playPlaylist() and seekSongInPlaylist() expect a song
      position, not a song order number.  Don't convert the "current"
      variable with queue_position_to_order().
      ed483766
    • Jeffrey Middleton's avatar
      queue/playlist/command: move range · 13208bf5
      Jeffrey Middleton authored
      The move command now accepts a range for the first argument, in the same
      form as other range commands, e.g. move 15:17 3.  The first song in the
      range is placed at the destination position. Note that as with other
      range commands, the range is inclusive on the left only; this example
      would move only songs 15 and 16, not 17.
      
      [mk: fixed signed/unsigned warnings; use G_MAXUINT instead of
      UINT_MAX]
      13208bf5
    • Jeffrey Middleton's avatar
      doc: updated ranged playlist commands · 7684c446
      Jeffrey Middleton authored
      Clearly specified the format (song1:song2) for range argumentst, and
      added the range capability of the playlistinfo command.
      7684c446
    • Jeffrey Middleton's avatar
      doc: Fixed moveid description · 272a7d08
      Jeffrey Middleton authored
      moveid uses an index, not a songid, for its second argument
      272a7d08