aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist_control.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-06-30playlist: emit IDLE_OPTIONS when resetting single modeMax Kellermann1-0/+3
2009-05-28playlist: reset "current song" when playlist endsMax Kellermann1-0/+3
Commit f78cddb4 introduced a regression: when the playlist reached its end, MPD did not reset the "current song" pointer anymore after stop. Add a "current = -1" code line.
2009-05-06player_control: renamed playerSeek(), return boolMax Kellermann1-3/+3
Renamed playerSeek() to pc_seek() to get rid of CamelCase. Convert the return value to bool.
2009-04-25playlist_control: use GTimer in previousSongInPlaylist()Max Kellermann1-6/+4
To determine whether to rewind the current song or to go to the previous song, use a GTimer instead of manually diffing time(NULL).
2009-03-30implemented the 'consume' modeRomain Bignon1-14/+21
Consume mode removes each song played
2009-03-27renamed smartstop to single and changed behaviorRomain Bignon1-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-27implements the smartstop featureRomain Bignon1-0/+2
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-13all: Update copyright header.Avuton Olrich1-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-03-06playlist_control: fix requeue after seekMax Kellermann1-3/+3
The queue update after a seek was wrong: the queued song is cleared by a successful seek. This caused queue/cross-fading problems after a seek.
2009-02-10playlist: update queued song after seekingMax Kellermann1-3/+7
If a new song is queued before calling playerSeek(), then the player and the playlist enter an inconsistent state, because the player discards the playlist's "queued" song in favor of the seeked song. Call playlist_update_queued_song() after playerSeek().
2009-02-04playlist: added G_LOG_DOMAINMax Kellermann1-1/+6
Removed the explicit "playlist:" prefix from all log messages.
2009-02-04playlist: moved code to playlist_control.cMax Kellermann1-0/+249
Moved handlers for control commands (play, stop, next, prev) to playlist_control.c.