aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-09-12ConfigPath: simplify the duplicate tilde checkMax Kellermann1-5/+5
2013-09-12ConfigPath: convert "home" variable to Path objectMax Kellermann1-9/+11
Use Path::FromUTF8() for the g_get_home_dir() return value instead of assuming it's already FS charset.
2013-09-12ConfigPath: move code to GetHome()Max Kellermann1-28/+48
2013-09-12ConfigPath: include cleanupMax Kellermann1-16/+0
2013-09-12Path: add FromUTF8() overload that returns an ErrorMax Kellermann4-8/+26
2013-09-12ConfigPath: move path_domain to system/Path.cxxMax Kellermann3-3/+5
2013-09-12Listen: Allow tilde paths for socket.Maarten de Vries3-2/+18
2013-09-05TagBuilder: add method Commit(Tag&)Max Kellermann2-8/+21
For callers that already have a Tag instance.
2013-09-05TagBuilder: add method IsEmpty()Max Kellermann1-1/+9
2013-09-05Tag: remove the obsolete "bulk" modeMax Kellermann2-88/+3
Methods BeginAdd() and EndAdd() have been replaced by class TagBuilder.
2013-09-05db/proxy: use class TagBuilderMax Kellermann1-8/+6
2013-09-05SongSave: use class TagBuilderMax Kellermann1-24/+8
2013-09-05TagBuilder: new class for constructing Tag objectsMax Kellermann2-0/+229
Obsoletes Tag::BeginAdd() and the complicated "bulk add" code.
2013-09-05TagItem: disable the copy constructor/operatorMax Kellermann1-0/+4
This is not a C++ class and must not be copied.
2013-09-05Tag: compile-time initialisation of ignore_tag_itemsMax Kellermann8-22/+33
Move to TagSettings.c and use C99 initializers.
2013-09-05Tag: move struct TagItem to TagItem.hxxMax Kellermann3-16/+43
2013-09-05Tag: move fix_tag_value() to TagString.cxxMax Kellermann3-102/+160
2013-09-05Tag: remove unused methodsMax Kellermann2-70/+0
2013-09-05TagNames: make tag_item_names constMax Kellermann2-2/+2
2013-09-05Tag: move configuration code to TagConfig.cxxMax Kellermann4-50/+103
Allow using the Tag.cxx library without the Config library.
2013-09-05Tag, ...: move to libtag.aMax Kellermann76-78/+73
2013-09-05mpd_error.h: remove obsolete headerMax Kellermann18-94/+68
Migrate the remaining callers to FatalError().
2013-09-05input/curl: enable httpsAles Guzik2-1/+3
2013-09-05PlaylistPlugin: add interface SongEnumeratorMax Kellermann24-311/+200
Replaces struct playlist_provider.
2013-09-05PlaylistPlugin, ConfigGlobal: use nullptr instead of NULLMax Kellermann3-15/+11
2013-09-05use standard snprintf() instead of GLib g_snprintf()Max Kellermann4-26/+28
2013-09-05conf.h: remove obsolete headerMax Kellermann44-73/+64
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-05conf.h: move constants to ConfigDefaults.hxxMax Kellermann5-9/+28
2013-09-05InputLegacy: move functions to the input_stream classMax Kellermann41-556/+413
2013-09-04TagTable: un-inline the two functionsMax Kellermann5-24/+64
Reduce header dependencies.
2013-09-04Tag*: move TagTable.hxx to libtag.aMax Kellermann5-4/+4
2013-09-04Tag*: move libtag.a sources to src/tag/Max Kellermann20-9/+9
2013-09-04system/SocketError: un-inline constructorMax Kellermann3-13/+26
Reduces header dependencies.
2013-09-04util/Error: new error passing libraryMax Kellermann236-3115/+3070
Replaces GLib's GError.
2013-09-04system/resolver: convert to C++Max Kellermann5-23/+13
2013-09-04output/pulse: require libpulse 0.9.16Max Kellermann1-51/+3
Remove all #ifdefs. Old versions of libpulse are not being tested, and thus I'm removing support.
2013-09-04IOThread: pass GError to FatalError()Max Kellermann1-2/+4
Fixes build failure on GLib < 2.32.
2013-09-03DatabaseSave: eliminate redundant db_quark() implementationMax Kellermann1-7/+1
2013-09-03IOThread: use FatalError() on g_thread_create() errorMax Kellermann3-14/+8
New GLib versions don't fail.
2013-09-03input/{mms,despotify}: remove "seek" implementationMax Kellermann2-19/+3
Omitting it has the same effect as returning false unconditionally.
2013-09-03input_stream.h: rename to InputLegacy.hxxMax Kellermann18-34/+22
2013-08-10db_error: convert to C++Max Kellermann5-10/+7
2013-08-10playlist_error: convert to C++Max Kellermann5-7/+7
2013-08-10ack.h: move to protocol/Max Kellermann3-2/+2
2013-08-10alsa/mixer: defer InvalidateSockets() call to I/O threadMax Kellermann1-1/+2
2013-08-10EventLoop: initialise the thread id explicitlyMax Kellermann1-1/+2
2013-08-10ZeroconfAvahi: disable Avahi with epollMax Kellermann1-0/+1
Temporary hotfix until we have integrated avahi into our new event loop.
2013-08-10EventLoop: new implementation using epollMax Kellermann14-16/+716
Implement an event loop without GLib.
2013-08-10mixer/alsa: invoke InvalidateSockets() in constructorMax Kellermann1-1/+3
2013-08-10event/Call: signal the calling threadMax Kellermann1-0/+5
Fixes regression from commit 018f4155.