aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-13tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann1-3/+3
2009-10-08player_control: no CamelCaseMax Kellermann1-8/+8
2009-10-08player_control: bundle "get" functions in pc_get_status()Max Kellermann1-8/+13
The new player_status struct replaces a bunch of playerGetX() functions. When we add proper locking to the player_control struct, we will only need to lock once for the "status" command.
2009-10-08player_control: allocate getPlayerErrorStr() resultMax Kellermann1-2/+5
This lets us eliminate the static fixed-size buffer.
2009-09-30command: range support for "delete"Max Kellermann1-3/+3
2009-09-25command: relax requirements for unquoted wordsMax Kellermann1-1/+1
Allow most printable characters in unquoted words. The tokenizer patch introduced very strict requirements for command parameters - those were undocumented, and we're reverting the strictness now.
2009-09-24command: added command "rescan"Max Kellermann1-1/+23
"rescan" is the same as "update", but it discards existing songs in the database.
2009-09-24update: pass const string to update_enqueue()Max Kellermann1-2/+2
Duplicate the path string within update.c, do not expect an allocated string as parameter.
2009-09-24update: renamed directory_update_init() to update_enqueue()Max Kellermann1-1/+1
2009-08-25command: add "findadd" command.Anton Khirnov1-0/+25
2009-07-29command: moved command_process_list() to client.cMax Kellermann1-26/+3
2009-07-28playlist: CamelCaseIsBadCourtney Cavin1-21/+21
Renamed all playlist functions to non-CamelCase.
2009-07-19command: use the tokenizer libraryMax Kellermann1-4/+50
2009-07-14playlist: no CamelCaseMax Kellermann1-12/+12
2009-07-06volume: moved range check to handle_setvol()Max Kellermann1-0/+5
Converted the range checks in volume_level_change() to assertions. Changed all volume types to "unsigned", expect for those which must be able to indicate error (-1).
2009-07-06volume, mixer: removed the "relative" parameterMax Kellermann1-1/+1
Since the "volume" command has been removed, nobody uses relative volumes anymore.
2009-07-06command: removed the "volume" commandMax Kellermann1-22/+1
This command has been deprecated more than 5 years ago (0.10.0). Its implementation is a kludge, let's remove it now.
2009-06-25command: added new "status" line with more precise "elapsed time"Max Kellermann1-0/+2
2009-04-28command: added "sticker delete" commandMax Kellermann1-0/+22
2009-04-28command: use g_ascii_strcasecmp() instead of strcasecmp()Max Kellermann1-1/+1
strcasecmp() is locale dependent, making it a bad choice for internal string comparisons.
2009-04-01command: added command "sticker find"Max Kellermann1-0/+41
This command allows clients to search for stickers with a specified name.
2009-04-01Move db_get_song into sub-handlers. (FReq 2112)Eric Wollesen1-9/+27
db_get_song was being called once for all sub-handlers, but with the addition of the find command, we don't have a URI coming in, so doing db_get_song once won't work anymore. [mk: fixed initialization order]
2009-04-01sticker_print: new library for sending stickers to a clientMax Kellermann1-10/+3
2009-03-31do not consider single mode with "next" commandRomain Bignon1-0/+7
This is a little ugly, but as nextSongInPlaylist is both called when queued is update (in case playlist ended) and for user "next" command, there isn't any other (simple) solution
2009-03-30command: command_error() is not necessary for export.Avuton Olrich1-1/+1
2009-03-30implemented the 'consume' modeRomain Bignon1-1/+23
Consume mode removes each song played
2009-03-27renamed smartstop to single and changed behaviorRomain Bignon1-6/+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/+22
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/+5
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-15log: removed DEBUG() and FATAL()Max Kellermann1-4/+3
Use GLib the logging functions g_debug(), g_error() instead.
2009-03-14command: return COMMAND_RETURN_OK in handle_addid()Max Kellermann1-1/+1
At the last line of handle_addid(), the playlist_result value has already been evaluated. Don't return this variable, it's the wrong type.
2009-03-14command: handle the addToPlaylist() result properlyMax Kellermann1-1/+2
addToPlaylist() has a "enum playlist_result" return value. Convert that to "enum command_return" properly.
2009-03-14command: use sticker_song_get() instead of sticker_song_list_values()Max Kellermann1-11/+10
2009-03-14volume: use bool instead of intMax Kellermann1-8/+14
Return true/false on success/failure, instead of 0/-1. Pass true/false instead of 1/0 for the "rel" boolean parameter.
2009-03-13all: Update copyright header.Avuton Olrich1-6/+7
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-11Move from the opaque GPtrArray to GHashTable for sticker lists.Eric Wollesen1-20/+13
2009-03-03Add sticker list command.Eric Wollesen1-1/+29
[mk: merged memory leak patch; fixed indentation (tabs); fixed documentation typo]
2009-02-27tag: no CamelCaseMax Kellermann1-1/+1
Renamed numOfItems to num_items.
2009-02-25ls: moved generic URI utilities to uri.cMax Kellermann1-0/+1
"ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later.
2009-02-13added the shufflerange commandRomain Bignon1-2/+7
This command shuffles a range of songs.
2009-02-11audio: moved code to output_command.cMax Kellermann1-9/+13
The output_command library provides a command interface to the audio outputs. It assumes the input comes from an untrusted source (i.e. the client) and verifies all parameters.
2009-02-10audio: moved protocol code to output_print.cMax Kellermann1-0/+1
2009-02-09playlist: provide information about "next song"Vladimir S Eremin1-0/+10
In random mode, this patch allows clients to see the "next song" in the queue.
2009-02-04playlist_save: added spl_save_playlist()Max Kellermann1-1/+1
spl_save_playlist() is a wrapper for spl_save_queue().
2009-02-04playlist_print: added wrappers for printing the queueMax Kellermann1-31/+13
Hide the details of the playlist behind wrapper functions.
2009-02-04playlist_print: use bool instead of intMax Kellermann1-8/+12
Return true on success, instead of 0. Converted the "detail" parameter to bool.
2009-02-04playlist_print: no CamelCaseMax Kellermann1-2/+2
Renamed one function.
2009-02-04playlist: renamed global "playlist" variable to "g_playlist"Max Kellermann1-40/+41
Export the "g_playlist" variable, and pass it to all playlist functions. This way, we can split playlist.c easier into separate parts. The code which initializes the singleton variable is moved to playlist_global.c.
2009-01-25playlist: moved savePlaylist() and loadPlaylsit() to playlist_save.cMax Kellermann1-2/+3
2009-01-24queue_print, dbUtils: use struct locate_item_listMax Kellermann1-7/+6
Changed the function prototypes to get locate_item_list objects instead of num_items/items.