Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-12-08 | command: use ConstBuffer<const char *> for argument list | Max Kellermann | 1 | -48/+35 | |
2014-07-29 | db/Interface: add virtual method Update() | Max Kellermann | 1 | -0/+24 | |
For database plugins that don't use the UpdateService. | |||||
2014-07-29 | OtherCommands: split handle_update() | Max Kellermann | 1 | -16/+22 | |
2014-06-16 | command: make argc unsigned | Max Kellermann | 1 | -19/+18 | |
2014-03-01 | command: add command "listfiles" | Max Kellermann | 1 | -0/+37 | |
Lists files and directories. Supports storage plugins. | |||||
2014-02-28 | {Other,Database}Commands: contract declaration and assignment | Max Kellermann | 1 | -6/+3 | |
2014-02-09 | Idle: error out when unrecognized idle event was specified | Max Kellermann | 1 | -8/+9 | |
Implements the error checks missing in commit 0bad8406 | |||||
2014-02-09 | OtherCommands: remove unnecessary nullptr check | Max Kellermann | 1 | -3/+0 | |
2014-02-07 | OtherCommands: use Storage::MapUTF8() instead of Mapper.cxx | Max Kellermann | 1 | -4/+6 | |
2014-02-02 | ClientFile: move client_allow_file() into the Client class | Max Kellermann | 1 | -2/+1 | |
2014-01-30 | db: add compile-time option to disable database | Max Kellermann | 1 | -2/+24 | |
2014-01-30 | OtherCommands: merge duplicate code from handle_update(), handle_rescan() | Max Kellermann | 1 | -31/+10 | |
2014-01-30 | db/update: convert to OO API | Max Kellermann | 1 | -5/+16 | |
Move global variables into the new classes. That may allow multiple update threads for multiple databases one day. | |||||
2014-01-29 | db/Directory: move isRootDirectory() to Uri.hxx | Max Kellermann | 1 | -1/+1 | |
Decouple command/OtherCommands.cxx from the "simple" database plugin. | |||||
2014-01-28 | OutputAll: convert to class, move instance to class Partition | Max Kellermann | 1 | -3/+5 | |
Another big chunk of code for multi-player support. | |||||
2014-01-27 | Playlist{Info,Vector}: move to db/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | Mixer*: move to mixer/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | Database*: move to db/ | Max Kellermann | 1 | -2/+2 | |
2014-01-24 | Client*: move to client/ | Max Kellermann | 1 | -2/+2 | |
2014-01-24 | Update*: move to update/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -1/+1 | |
2014-01-22 | LightDirectory: new struct replacing Directory in the DB API | Max Kellermann | 1 | -0/+1 | |
2014-01-15 | DetachedSong: add method Update() | Max Kellermann | 1 | -5/+4 | |
Don't create an intermediate Song instance when all we want is a DetachedSong. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2014-01-08 | SongUpdate: move code to handle_lsinfo() | Max Kellermann | 1 | -5/+17 | |
Don't create a temporary Song object in handle_lsinfo(). Instead, print all tags while parsing the remote file. | |||||
2013-12-29 | command: "lsinfo" and "readcomments" allowed for remote files | Max Kellermann | 1 | -0/+20 | |
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -4/+0 | |
2013-11-06 | ClientRead: "close" flushes the output buffer | Max Kellermann | 1 | -1/+1 | |
Add a new CommandResult code called "FINISH" which, unlike "CLOSE", will attempt to flush the output buffer. This is a one-shot attempt; it will do one write, and not try again. | |||||
2013-10-28 | *: use nullptr instead of NULL | Max Kellermann | 1 | -2/+2 | |
2013-10-25 | OtherCommands: re-add the "volume" command | Max Kellermann | 1 | -0/+33 | |
This command was removed by commit 206392ad (MPD 0.16), even though it was been proven useful for some very simple clients. On request, I add it to the protocol again. | |||||
2013-10-20 | Util/ASCII: add function StringEqualsCaseASCII() | Max Kellermann | 1 | -3/+2 | |
Replaces GLib's g_ascii_strcasecmp(). | |||||
2013-10-20 | *Commands: move to src/command/ | Max Kellermann | 1 | -0/+0 | |
2013-10-20 | command: convert command_return to to a strictly-typed enum | Max Kellermann | 1 | -42/+42 | |
2013-10-19 | Client: move trivial functions into the Client class | Max Kellermann | 1 | -3/+3 | |
2013-10-19 | ClientInternal: move class Client to Client.hxx | Max Kellermann | 1 | -1/+1 | |
Publish the Client API, preparing to move more code into the Client class. | |||||
2013-10-19 | *: use references instead of pointers | Max Kellermann | 1 | -17/+17 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -2/+2 | |
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object. | |||||
2013-10-17 | UpdateGlue: never pass null to update_enqueue() | Max Kellermann | 1 | -3/+3 | |
2013-10-14 | Mapper, ...: use memcmp() instead of strncmp() where appropriate | Max Kellermann | 1 | -1/+1 | |
Micro-optimization. | |||||
2013-10-02 | Stats: don't include glib.h in header | Max Kellermann | 1 | -0/+2 | |
Use forward declaration instead. | |||||
2013-10-02 | Stats: rename stats.h to Stats.hxx | Max Kellermann | 1 | -5/+1 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -3/+5 | |
Replaces GLib's GError. | |||||
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 1 | -16/+16 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -3/+3 | |
2013-05-06 | ClientFile: use Path and file system API, update usages accordingly | Denis Krjuchkov | 1 | -1/+9 | |
This commit also fixes incorrect passing of UTF-8 strings to client_allow_file | |||||
2013-04-08 | uri: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-18 | Playlist, Song: clarify parameter encoding | Max Kellermann | 1 | -3/+3 | |
2013-01-16 | Client: move "idle" functions into the class | Max Kellermann | 1 | -3/+2 | |
2013-01-09 | idle: convert to C++ | Max Kellermann | 1 | -4/+1 | |