Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-01-24 | Queue*: move to queue/ | Max Kellermann | 1 | -0/+0 | |
2014-01-20 | Queue: rename struct queue to Queue | Max Kellermann | 1 | -5/+5 | |
Works around a build failure on Solaris because annoyingly, Solaris reserves the name "queue". This rename was pending anyway. | |||||
2014-01-20 | Queue: make the constructor "explicit" | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | 1 | -5/+5 | |
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. | |||||
2013-10-22 | Playlist: refresh new tags after database update | Max Kellermann | 1 | -5/+0 | |
Fixes regression from commit e96779d. | |||||
2013-10-22 | Queue: add method ModifyAtPosition() | Max Kellermann | 1 | -0/+11 | |
2013-10-22 | Queue: ModifyAtOrder() does not increment version | Max Kellermann | 1 | -1/+2 | |
Leave that to the caller, allowing it to modify multiple items at a time. | |||||
2013-10-19 | *: use references instead of pointers | Max Kellermann | 1 | -3/+3 | |
2013-10-15 | gcc.h: rename to Compiler.h | Max Kellermann | 1 | -1/+1 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -5/+8 | |
2013-01-08 | Queue: move code to new class IdTable | Max Kellermann | 1 | -11/+4 | |
2013-01-08 | Queue: rename internal types | Max Kellermann | 1 | -6/+6 | |
2013-01-08 | Queue: move HASH_MULT and Item into the Queue class | Max Kellermann | 1 | -29/+27 | |
2013-01-08 | Queue: move GenerateId() and others into the class | Max Kellermann | 1 | -0/+38 | |
2013-01-07 | Queue: don't include glib.h | Max Kellermann | 1 | -3/+1 | |
2013-01-07 | Queue: use C++ random instead of GLib's GRand | Max Kellermann | 1 | -1/+2 | |
2013-01-07 | Queue: move queue_shuffle_order_first() into the class | Max Kellermann | 1 | -0/+2 | |
2013-01-07 | Queue: move queue_shuffle_order_range() into the class | Max Kellermann | 1 | -0/+6 | |
2013-01-06 | Queue: use std::swap | Max Kellermann | 1 | -3/+3 | |
2013-01-06 | queue: convert all functions to methods | Max Kellermann | 1 | -231/+186 | |
2013-01-06 | Queue: add constructor and destructor | Max Kellermann | 1 | -13/+11 | |
2013-01-04 | playlist: convert to C++ | Max Kellermann | 1 | -3/+3 | |
2012-08-21 | queue_save: save song priorities | Max Kellermann | 1 | -1/+3 | |
2011-07-19 | queue: implement song "priorities" | Max Kellermann | 1 | -0/+33 | |
Sorts remaining songs by priority. This can be used for the much-demanded "queue feature". | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-10-13 | queue: no CamelCase | Max Kellermann | 1 | -5/+5 | |
Renamed idToPosition. | |||||
2009-03-30 | queue: queue_generate_id() is not necessary for export. | Avuton Olrich | 1 | -6/+0 | |
2009-03-30 | implemented the 'consume' mode | Romain Bignon | 1 | -0/+3 | |
Consume mode removes each song played | |||||
2009-03-27 | renamed smartstop to single and changed behavior | Romain Bignon | 1 | -2/+2 | |
When single mode is enabled, after current song it stops playback, or it replay same song if repeat mode is activated. | |||||
2009-03-27 | implements the smartstop feature | Romain Bignon | 1 | -0/+3 | |
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 | |||||
2009-03-26 | queue/playlist/command: move range | Jeffrey Middleton | 1 | -0/+6 | |
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] | |||||
2009-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -3/+4 | |
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. | |||||
2009-01-25 | queue: added queue_shuffle_order_last() | Max Kellermann | 1 | -0/+8 | |
This function shuffles the last song of a range. This is used by addSongToPlaylist(). | |||||
2009-01-23 | queue: added queue_shuffle_order() | Max Kellermann | 1 | -0/+7 | |
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. | |||||
2009-01-23 | queue: merged songs, songMod, positionToId into struct queue_item | Max Kellermann | 1 | -11/+19 | |
Move everything which belongs together into one common struct. This simplifies the implementation of several queue operations. | |||||
2009-01-22 | playlist: moved code to queue.c | Max Kellermann | 1 | -0/+314 | |
Attempt to untie the playlist.c knot: moved the playlist storage code to queue.c, struct queue. |