aboutsummaryrefslogtreecommitdiff
path: root/src/command.c
Commit message (Collapse)AuthorAge
* audio_format: added function audio_format_to_string()Max Kellermann2009-11-14
| | | | | Unified function for converting an audio_format object to a string, for log messages and for the "status" command.
* include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* command: added command "decoders"Max Kellermann2009-11-07
| | | | | This command prints a list of decoder plugins and their suffixes / MIME types.
* sticker comments in code and example configuration fileRomain Bignon2009-11-04
| | | | Signed-off-by: Romain Bignon <romain@peerfuse.org>
* command: omitting the range end is possibleMax Kellermann2009-10-18
| | | | | When the range end is missing, then the maximum possible value is assumed.
* command: use GLib limit macros in check_range()Max Kellermann2009-10-18
| | | | These are portable and don't require limits.h.
* command: allow changing replay gain mode on-the-flyMax Kellermann2009-10-17
| | | | | The new command "replay_gain_mode" allows the user to switch the replay gain mode on-the-fly. No more mpd.conf editing.
* command: "load" supports remote playlists (m3u, xspf, lastfm://)Max Kellermann2009-10-13
| | | | | | This patch integrates the playlist plugin API to the MPD core. We'll be able to do much more in the future with that API, that's just the beginning.
* song: renamed attribute "url" to "uri"Max Kellermann2009-10-13
|
* tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann2009-10-13
|
* player_control: no CamelCaseMax Kellermann2009-10-08
|
* player_control: bundle "get" functions in pc_get_status()Max Kellermann2009-10-08
| | | | | | 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.
* player_control: allocate getPlayerErrorStr() resultMax Kellermann2009-10-08
| | | | This lets us eliminate the static fixed-size buffer.
* command: range support for "delete"Max Kellermann2009-09-30
|
* command: relax requirements for unquoted wordsMax Kellermann2009-09-25
| | | | | | 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.
* command: added command "rescan"Max Kellermann2009-09-24
| | | | | "rescan" is the same as "update", but it discards existing songs in the database.
* update: pass const string to update_enqueue()Max Kellermann2009-09-24
| | | | | Duplicate the path string within update.c, do not expect an allocated string as parameter.
* update: renamed directory_update_init() to update_enqueue()Max Kellermann2009-09-24
|
* command: add "findadd" command.Anton Khirnov2009-08-25
|
* command: moved command_process_list() to client.cMax Kellermann2009-07-29
|
* playlist: CamelCaseIsBadCourtney Cavin2009-07-28
| | | | Renamed all playlist functions to non-CamelCase.
* command: use the tokenizer libraryMax Kellermann2009-07-19
|
* playlist: no CamelCaseMax Kellermann2009-07-14
|
* volume: moved range check to handle_setvol()Max Kellermann2009-07-06
| | | | | | 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).
* volume, mixer: removed the "relative" parameterMax Kellermann2009-07-06
| | | | | Since the "volume" command has been removed, nobody uses relative volumes anymore.
* command: removed the "volume" commandMax Kellermann2009-07-06
| | | | | This command has been deprecated more than 5 years ago (0.10.0). Its implementation is a kludge, let's remove it now.
* command: added new "status" line with more precise "elapsed time"Max Kellermann2009-06-25
|
* command: added "sticker delete" commandMax Kellermann2009-04-28
|
* command: use g_ascii_strcasecmp() instead of strcasecmp()Max Kellermann2009-04-28
| | | | | strcasecmp() is locale dependent, making it a bad choice for internal string comparisons.
* command: added command "sticker find"Max Kellermann2009-04-01
| | | | | This command allows clients to search for stickers with a specified name.
* Move db_get_song into sub-handlers. (FReq 2112)Eric Wollesen2009-04-01
| | | | | | | | 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]
* sticker_print: new library for sending stickers to a clientMax Kellermann2009-04-01
|
* do not consider single mode with "next" commandRomain Bignon2009-03-31
| | | | | | 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
* command: command_error() is not necessary for export.Avuton Olrich2009-03-30
|
* implemented the 'consume' modeRomain Bignon2009-03-30
| | | | Consume mode removes each song played
* renamed smartstop to single and changed behaviorRomain Bignon2009-03-27
| | | | | When single mode is enabled, after current song it stops playback, or it replay same song if repeat mode is activated.
* implements the smartstop featureRomain Bignon2009-03-27
| | | | | | | | | 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
* queue/playlist/command: move rangeJeffrey Middleton2009-03-26
| | | | | | | | | | | 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]
* log: removed DEBUG() and FATAL()Max Kellermann2009-03-15
| | | | Use GLib the logging functions g_debug(), g_error() instead.
* command: return COMMAND_RETURN_OK in handle_addid()Max Kellermann2009-03-14
| | | | | | 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.
* command: handle the addToPlaylist() result properlyMax Kellermann2009-03-14
| | | | | addToPlaylist() has a "enum playlist_result" return value. Convert that to "enum command_return" properly.
* command: use sticker_song_get() instead of sticker_song_list_values()Max Kellermann2009-03-14
|
* volume: use bool instead of intMax Kellermann2009-03-14
| | | | | Return true/false on success/failure, instead of 0/-1. Pass true/false instead of 1/0 for the "rel" boolean parameter.
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | 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.
* Move from the opaque GPtrArray to GHashTable for sticker lists.Eric Wollesen2009-03-11
|
* Add sticker list command.Eric Wollesen2009-03-03
| | | | | [mk: merged memory leak patch; fixed indentation (tabs); fixed documentation typo]
* tag: no CamelCaseMax Kellermann2009-02-27
| | | | Renamed numOfItems to num_items.
* ls: moved generic URI utilities to uri.cMax Kellermann2009-02-25
| | | | | "ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later.
* added the shufflerange commandRomain Bignon2009-02-13
| | | | This command shuffles a range of songs.
* audio: moved code to output_command.cMax Kellermann2009-02-11
| | | | | | 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.