Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-09-05 | TagBuilder: add method Commit(Tag&) | Max Kellermann | 2 | -8/+21 | |
For callers that already have a Tag instance. | |||||
2013-09-05 | TagBuilder: add method IsEmpty() | Max Kellermann | 1 | -1/+9 | |
2013-09-05 | Tag: remove the obsolete "bulk" mode | Max Kellermann | 2 | -88/+3 | |
Methods BeginAdd() and EndAdd() have been replaced by class TagBuilder. | |||||
2013-09-05 | db/proxy: use class TagBuilder | Max Kellermann | 1 | -8/+6 | |
2013-09-05 | SongSave: use class TagBuilder | Max Kellermann | 1 | -24/+8 | |
2013-09-05 | TagBuilder: new class for constructing Tag objects | Max Kellermann | 2 | -0/+229 | |
Obsoletes Tag::BeginAdd() and the complicated "bulk add" code. | |||||
2013-09-05 | TagItem: disable the copy constructor/operator | Max Kellermann | 1 | -0/+4 | |
This is not a C++ class and must not be copied. | |||||
2013-09-05 | Tag: compile-time initialisation of ignore_tag_items | Max Kellermann | 8 | -22/+33 | |
Move to TagSettings.c and use C99 initializers. | |||||
2013-09-05 | Tag: move struct TagItem to TagItem.hxx | Max Kellermann | 3 | -16/+43 | |
2013-09-05 | Tag: move fix_tag_value() to TagString.cxx | Max Kellermann | 3 | -102/+160 | |
2013-09-05 | Tag: remove unused methods | Max Kellermann | 2 | -70/+0 | |
2013-09-05 | TagNames: make tag_item_names const | Max Kellermann | 2 | -2/+2 | |
2013-09-05 | Tag: move configuration code to TagConfig.cxx | Max Kellermann | 4 | -50/+103 | |
Allow using the Tag.cxx library without the Config library. | |||||
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 76 | -78/+73 | |
2013-09-05 | mpd_error.h: remove obsolete header | Max Kellermann | 18 | -94/+68 | |
Migrate the remaining callers to FatalError(). | |||||
2013-09-05 | input/curl: enable https | Ales Guzik | 2 | -1/+3 | |
2013-09-05 | PlaylistPlugin: add interface SongEnumerator | Max Kellermann | 24 | -311/+200 | |
Replaces struct playlist_provider. | |||||
2013-09-05 | PlaylistPlugin, ConfigGlobal: use nullptr instead of NULL | Max Kellermann | 3 | -15/+11 | |
2013-09-05 | use standard snprintf() instead of GLib g_snprintf() | Max Kellermann | 4 | -26/+28 | |
2013-09-05 | conf.h: remove obsolete header | Max Kellermann | 44 | -73/+64 | |
Use only ConfigData.hxx in plugin sources to reduce header dependencies. | |||||
2013-09-05 | conf.h: move constants to ConfigDefaults.hxx | Max Kellermann | 5 | -9/+28 | |
2013-09-05 | InputLegacy: move functions to the input_stream class | Max Kellermann | 41 | -556/+413 | |
2013-09-04 | TagTable: un-inline the two functions | Max Kellermann | 5 | -24/+64 | |
Reduce header dependencies. | |||||
2013-09-04 | Tag*: move TagTable.hxx to libtag.a | Max Kellermann | 5 | -4/+4 | |
2013-09-04 | Tag*: move libtag.a sources to src/tag/ | Max Kellermann | 20 | -9/+9 | |
2013-09-04 | system/SocketError: un-inline constructor | Max Kellermann | 3 | -13/+26 | |
Reduces header dependencies. | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 236 | -3115/+3070 | |
Replaces GLib's GError. | |||||
2013-09-04 | system/resolver: convert to C++ | Max Kellermann | 5 | -23/+13 | |
2013-09-04 | output/pulse: require libpulse 0.9.16 | Max Kellermann | 1 | -51/+3 | |
Remove all #ifdefs. Old versions of libpulse are not being tested, and thus I'm removing support. | |||||
2013-09-04 | IOThread: pass GError to FatalError() | Max Kellermann | 1 | -2/+4 | |
Fixes build failure on GLib < 2.32. | |||||
2013-09-03 | DatabaseSave: eliminate redundant db_quark() implementation | Max Kellermann | 1 | -7/+1 | |
2013-09-03 | IOThread: use FatalError() on g_thread_create() error | Max Kellermann | 3 | -14/+8 | |
New GLib versions don't fail. | |||||
2013-09-03 | input/{mms,despotify}: remove "seek" implementation | Max Kellermann | 2 | -19/+3 | |
Omitting it has the same effect as returning false unconditionally. | |||||
2013-09-03 | input_stream.h: rename to InputLegacy.hxx | Max Kellermann | 18 | -34/+22 | |
2013-08-10 | db_error: convert to C++ | Max Kellermann | 5 | -10/+7 | |
2013-08-10 | playlist_error: convert to C++ | Max Kellermann | 5 | -7/+7 | |
2013-08-10 | ack.h: move to protocol/ | Max Kellermann | 3 | -2/+2 | |
2013-08-10 | alsa/mixer: defer InvalidateSockets() call to I/O thread | Max Kellermann | 1 | -1/+2 | |
2013-08-10 | EventLoop: initialise the thread id explicitly | Max Kellermann | 1 | -1/+2 | |
2013-08-10 | ZeroconfAvahi: disable Avahi with epoll | Max Kellermann | 1 | -0/+1 | |
Temporary hotfix until we have integrated avahi into our new event loop. | |||||
2013-08-10 | EventLoop: new implementation using epoll | Max Kellermann | 14 | -16/+716 | |
Implement an event loop without GLib. | |||||
2013-08-10 | mixer/alsa: invoke InvalidateSockets() in constructor | Max Kellermann | 1 | -1/+3 | |
2013-08-10 | event/Call: signal the calling thread | Max Kellermann | 1 | -0/+5 | |
Fixes regression from commit 018f4155. | |||||
2013-08-10 | event/IdleMonitor: new monitor class | Max Kellermann | 2 | -0/+130 | |
2013-08-10 | event/MultiSocketMonitor: add struct SingleFD | Max Kellermann | 2 | -8/+32 | |
Prepare for migrating away from GLib. | |||||
2013-08-10 | event/MultiSocketMonitor: use uint64_t instead of gint64 | Max Kellermann | 2 | -5/+6 | |
Unsigned and portable. | |||||
2013-08-10 | event/MultiSocketMonitor: eliminate virtual method CheckSockets() | Max Kellermann | 3 | -36/+16 | |
Handle timeout internally. | |||||
2013-08-10 | event/MultiSocketMonitor: PrepareSockets() returns timeout | Max Kellermann | 3 | -11/+17 | |
Simplify the API, don't use GLib specific integer type. | |||||
2013-08-10 | glib_compat.h: use monotonic_clock_us() in g_source_get_time() | Max Kellermann | 1 | -3/+3 | |
2013-08-10 | glib_compat.h: remove unused wrapper g_file_test() | Max Kellermann | 1 | -28/+0 | |