aboutsummaryrefslogtreecommitdiffstats
path: root/doc/protocol.xml (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-27renamed smartstop to single and changed behaviorRomain Bignon1-5/+6
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/+21
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-26queue/playlist/command: move rangeJeffrey Middleton1-3/+7
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-26doc: updated ranged playlist commandsJeffrey Middleton1-6/+10
Clearly specified the format (song1:song2) for range argumentst, and added the range capability of the playlistinfo command.
2009-03-26doc: Fixed moveid descriptionJeffrey Middleton1-2/+2
moveid uses an index, not a songid, for its second argument
2009-03-03Add sticker list command.Eric Wollesen1-0/+15
[mk: merged memory leak patch; fixed indentation (tabs); fixed documentation typo]
2009-02-13added the shufflerange commandRomain Bignon1-0/+3
This command shuffles a range of songs.
2009-01-19command: added "sticker" commandMax Kellermann1-0/+67
The "sticker" command allows clients to query or manipulate the sticker database. This patch implements the sub-commands "get" and "set"; more will follow soon (enumeration), as well as extended "lsinfo" / "playlistinfo" versions.
2008-12-24doc: fix "playlistdelete" documentationMax Kellermann1-2/+2
"playlistdelete" takes a song position, not a song id. There are no song ids in stored playlists.
2008-11-23command: added documentation for idle subscriptionsMarc Pavot1-0/+6
2008-11-20doc: merged protocol documentation from the wikiMonika Brinkert1-31/+282
Over the years, a lot of commands have been added to MPD which were documented only in the wiki (http://mpd.wikia.com/wiki/Protocol_Reference). Merge all missing commands from there.
2008-11-20doc: rephrase descriptionsMonika Brinkert1-58/+62
Correct lots of grammar and spelling errors. Unify some phrases.
2008-11-20doc: improved XML decorationsMonika Brinkert1-118/+108
Wrapped keywords in DocBook tags where appropriate.
2008-11-20doc: fix "Repeat" typo in protocol.xmlMax Kellermann1-1/+1
The attribute value must be lower case: <arg rep="repeat">
2008-11-19doc: converted doc/COMMANDS to DocBookMax Kellermann1-0/+1064
The goal is to have one structured document which is the authoritative protocol specification. The documentation which currently resides in the wiki will be merged.