Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-01-03 | Client: rename the struct client to class Client | Max Kellermann | 1 | -8/+8 | |
2013-01-03 | client: convert to C++ | Max Kellermann | 1 | -7/+3 | |
2013-01-03 | permission: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | sticker: convert to C++ | Max Kellermann | 1 | -3/+3 | |
2012-09-25 | command.h: move function prototypes to AllCommands.h | Max Kellermann | 1 | -0/+5 | |
2012-09-25 | rename CommandError.h to CommandError.hxx | Max Kellermann | 1 | -1/+0 | |
2012-09-25 | command: rename to AllCommands.cxx | Max Kellermann | 1 | -3/+5 | |
2012-09-25 | command: move remaining handlers to OtherCommands.cxx | Max Kellermann | 1 | -277/+1 | |
2012-08-29 | command: move code to *Commands.cxx | Max Kellermann | 1 | -1289/+8 | |
2012-08-29 | Stats: stats_print() returns void | Max Kellermann | 1 | -1/+2 | |
2012-08-21 | command: make "single" a bool | Max Kellermann | 1 | -1/+1 | |
2012-08-16 | DatabasePlugin: add method ReturnSong() | Max Kellermann | 1 | -0/+4 | |
Allow the plugin to allocate the GetSong() return value. | |||||
2012-08-14 | mapper: fix non-UTF8 music directory name | Max Kellermann | 1 | -1/+1 | |
Duplicate the music_dir variable: one encoded in UTF-8, and another one using the configured filesystem character set. This fixes an ancient MPD bug. | |||||
2012-08-08 | DatabasePrint: don't print Last-Modified if unknown | Max Kellermann | 1 | -1/+2 | |
2012-08-08 | time_print: new library, function time_print() | Max Kellermann | 1 | -16/+2 | |
Implements error checking for the gmtime_r() call, which was missing in two code locations. | |||||
2012-08-08 | DatabaseCommands: merge duplicate search/find code | Max Kellermann | 1 | -15/+10 | |
2012-08-08 | locate: add a per-item "fold_case" flag | Max Kellermann | 1 | -1/+1 | |
Merge locate_song_search() and locate_song_match(). | |||||
2012-08-07 | locate: don't allow empty list | Max Kellermann | 1 | -8/+2 | |
2012-08-07 | locate: add "casefold" flag to parser | Max Kellermann | 1 | -2/+2 | |
Fold the case during construction, without having to create another copy. | |||||
2012-08-07 | command: move code to DatabaseCommands.cxx | Max Kellermann | 1 | -238/+4 | |
Prepare to use the DatabasePlugin C++ API directly. | |||||
2012-08-07 | command: move print_error() to CommandError.cxx | Max Kellermann | 1 | -104/+1 | |
Prepare for splitting command.c. | |||||
2012-07-10 | command: require appropriate permissions for searchadd{,pl} | Jonathan Neuschäfer | 1 | -2/+2 | |
2012-06-27 | New command searchaddpl | geneticdrift | 1 | -0/+28 | |
Search and add search result to a stored playlist. | |||||
2012-06-27 | New command searchadd similar to command findadd. | geneticdrift | 1 | -0/+26 | |
2012-03-06 | command: read arbitrary local files with "lsinfo" | Max Kellermann | 1 | -1/+22 | |
Requires UNIX domain socket connection. | |||||
2012-03-06 | playlist_edit: move UID check to client_allow_file() | Max Kellermann | 1 | -11/+15 | |
2012-03-06 | command, ack: add ack_quark() | Max Kellermann | 1 | -0/+4 | |
To pass ack values around. | |||||
2012-03-06 | use g_strerror() instead of strerror() | Max Kellermann | 1 | -1/+2 | |
Make sure we get a UTF-8 encoded string. | |||||
2012-03-06 | command: fix the "DENIED" ACK code | Max Kellermann | 1 | -1/+1 | |
Use ACK_ERROR_PERMISSION instead of ACK_ERROR_NO_EXIST. | |||||
2012-02-14 | command: move code to protocol/argparser.c | Max Kellermann | 1 | -166/+1 | |
2012-02-14 | command: use standard error messages in check_int() | Max Kellermann | 1 | -49/+27 | |
2012-02-14 | command: check for empty string after strtol() | Max Kellermann | 1 | -7/+7 | |
An empty string is obviously not a valid integer. | |||||
2012-02-14 | command: parse unsigned integers and booleans where applicable | Max Kellermann | 1 | -67/+39 | |
2012-02-14 | command: move functions to protocol/result.c | Max Kellermann | 1 | -31/+1 | |
2012-02-14 | command: eliminate local buffer "unknown" | Max Kellermann | 1 | -2/+1 | |
2012-02-13 | command: new command "config" | Max Kellermann | 1 | -0/+19 | |
2012-02-13 | client: add function client_is_local() | Max Kellermann | 1 | -1/+1 | |
2012-02-13 | command: never print "bad name" in response to "load" | Max Kellermann | 1 | -5/+14 | |
Work around a confusing error message. | |||||
2012-02-09 | command: add optional range parameter to "load" | Max Kellermann | 1 | -4/+13 | |
2012-02-09 | playlist_save: add start/end_index parameters | Max Kellermann | 1 | -1/+2 | |
2012-02-09 | playlist_queue: add start/end_index parameters | Max Kellermann | 1 | -1/+3 | |
2012-02-02 | directory: require the caller to lock the db_mutex | Max Kellermann | 1 | -0/+4 | |
Reduce the number of lock/unlock cycles, and make database handling safer. | |||||
2011-12-24 | command: new command "seekcur" | Max Kellermann | 1 | -0/+16 | |
For simpler seeking within current song. | |||||
2011-09-13 | db_print: move code to function db_selection_print() | Max Kellermann | 1 | -9/+6 | |
Use it in handle_lsinfo(), and eliminate some duplicate code. | |||||
2011-09-13 | database: don't allow uri==NULL | Max Kellermann | 1 | -6/+6 | |
Add nonnull attributes and fix all callers. | |||||
2011-09-13 | database: generate GError when database is disabled | Max Kellermann | 1 | -0/+6 | |
2011-09-13 | database: add struct db_visitor | Max Kellermann | 1 | -48/+43 | |
Use this struct for db_walk(). | |||||
2011-09-11 | stored_playlist: return GError, code is playlist_result | Max Kellermann | 1 | -51/+72 | |
Improve error reporting and handling. command.c gets the new function print_error(), which sends a GError to the client. | |||||
2011-09-06 | dbUtils: move code to db_print.c | Max Kellermann | 1 | -0/+1 | |
2011-09-05 | dbUtils: pass player_control to findAddIn() | Max Kellermann | 1 | -1/+1 | |
Allow calling findAddIn() without a client object. |