Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
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 | |
2013-01-07 | volume: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-04 | PlaylistFile: reuse classes PlaylistInfo and PlaylistVector | Max Kellermann | 1 | -1/+1 | |
.. instead of rolling own classes. | |||||
2013-01-03 | Client: rename the struct client to class Client | Max Kellermann | 1 | -15/+15 | |
2013-01-03 | ls.h: rename to ls.hxx | Max Kellermann | 1 | -1/+1 | |
2013-01-03 | client: convert to C++ | Max Kellermann | 1 | -6/+6 | |
2013-01-03 | decoder_print: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-03 | permission: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | Directory: make the header C++ only | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | mapper: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | sticker: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | *_print: convert to C++ | Max Kellermann | 1 | -3/+3 | |
2013-01-02 | update: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2012-09-28 | main: use C++ compiler | Max Kellermann | 1 | -1/+1 | |
2012-09-28 | PlaylistFile: use std::list instead of GPtrArray | Max Kellermann | 1 | -14/+7 | |
2012-09-28 | stored_playlist, playlist_save: use C++ compiler | Max Kellermann | 1 | -1/+5 | |
2012-09-25 | rename CommandError.h to CommandError.hxx | Max Kellermann | 1 | -1/+1 | |
2012-09-25 | command: add COMMAND_RETURN_IDLE | Max Kellermann | 1 | -2/+1 | |
Eliminate the hack in handle_idle(). | |||||
2012-09-25 | command: move remaining handlers to OtherCommands.cxx | Max Kellermann | 1 | -0/+315 | |