1. 17 Mar, 2015 1 commit
  2. 01 Jan, 2015 1 commit
  3. 26 Nov, 2014 1 commit
  4. 23 Jan, 2014 1 commit
  5. 20 Jan, 2014 2 commits
  6. 13 Jan, 2014 1 commit
  7. 09 Jan, 2014 1 commit
    • Max Kellermann's avatar
      DetachedSong: fork of struct Song · 322b0616
      Max Kellermann authored
      From now on, struct Song will be used by the database only, and
      DetachedSong will be used by everybody else.  DetachedSong is easier
      to use, but Song has lower overhead.
      322b0616
  8. 21 Oct, 2013 3 commits
  9. 19 Oct, 2013 1 commit
  10. 15 Oct, 2013 1 commit
  11. 28 Jul, 2013 1 commit
  12. 08 Jan, 2013 4 commits
  13. 07 Jan, 2013 4 commits
  14. 06 Jan, 2013 3 commits
  15. 04 Jan, 2013 1 commit
  16. 21 Aug, 2012 1 commit
  17. 18 Jul, 2011 1 commit
  18. 29 Jan, 2011 1 commit
  19. 01 Jan, 2010 1 commit
  20. 13 Oct, 2009 1 commit
  21. 30 Mar, 2009 2 commits
  22. 27 Mar, 2009 2 commits
    • Romain Bignon's avatar
      renamed smartstop to single and changed behavior · e7519829
      Romain Bignon authored
      When single mode is enabled, after current song it stops playback,
      or it replay same song if repeat mode is activated.
      e7519829
    • Romain Bignon's avatar
      implements the smartstop feature · e46722b2
      Romain Bignon authored
      The smartstop feature is a way to tell mpd to stop playing after
      current song.
      This patche provides:
      - 'state' command returns 'smartstop' state (1 or 0)
      - 'smartstop' can activate or not the smartstop state
      - when song is terminated, mpd stops playing and smartstop is set to 0
      e46722b2
  23. 26 Mar, 2009 1 commit
    • 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
  24. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  25. 25 Jan, 2009 1 commit
  26. 22 Jan, 2009 2 commits
    • Max Kellermann's avatar
      queue: added queue_shuffle_order() · 3a1de741
      Max Kellermann authored
      The function shuffles the virtual order of songs, but does not move
      them physically.  This is used in random mode.
      
      The new function replaces playlist.c's randomizeOrder() function,
      which was aware of playlist.current and playlist.queued.  The latter
      is always -1 anyway, and the former as preserved by the caller, by
      converting playlist.current to a position, and then back to an order
      number.
      3a1de741
    • Max Kellermann's avatar
      queue: merged songs, songMod, positionToId into struct queue_item · aa9ffcd0
      Max Kellermann authored
      Move everything which belongs together into one common struct.  This
      simplifies the implementation of several queue operations.
      aa9ffcd0