aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-10-22Playlist: refresh new tags after database updateMax Kellermann1-0/+1
Fixes regression from commit e96779d.
2013-10-21Partition: add methods TagModified(), SyncWithPlayer()Max Kellermann1-1/+1
Move code from class Instance.
2013-10-21GetBaseUTF8Max Kellermann1-1/+1
2013-10-21util/NumberParser: utilities for parsing numbers from ASCII stringsMax Kellermann1-0/+1
2013-10-20Util/ASCII: add function StringEqualsCaseASCII()Max Kellermann1-0/+1
Replaces GLib's g_ascii_strcasecmp().
2013-10-20*Commands: move to src/command/Max Kellermann1-12/+12
2013-10-20command: convert command_return to to a strictly-typed enumMax Kellermann1-1/+1
2013-10-20decoder/sidplay: add header fileMax Kellermann1-1/+2
2013-10-20decoder/sidplay: update file nameMax Kellermann1-1/+2
2013-10-19Client: move message functions into the classMax Kellermann1-1/+1
2013-10-19util/FormatString: new library to replace g_strdup_printf()Max Kellermann1-0/+1
2013-10-19encoder/{opus,vorbis}: new serial generator replacing g_random_int()Max Kellermann1-0/+6
2013-10-18ZeroconfAvahi: integrate into the EventLoopMax Kellermann1-2/+5
Finally fixes the regression by commit c1f4f1fd.
2013-10-18test/run_avahi: new debug programMax Kellermann1-0/+16
2013-10-18test/run_inotify: use SignalMonitorMax Kellermann1-0/+1
2013-10-17fs/Path: rename to AllocatedPathMax Kellermann1-0/+1
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-17fs/Path: move definitions to struct PathTraitsMax Kellermann1-0/+1
2013-10-17fs/Path: move configuration code to Config.cxxMax Kellermann1-0/+2
2013-10-17fs/Path: move path_domain to Domain.hxxMax Kellermann1-0/+1
2013-10-17fs/Path: move MPD_PATH_MAX to Limits.hxxMax Kellermann1-0/+1
2013-10-17Thread/Thread: replacement library for GThreadMax Kellermann1-0/+9
2013-10-17Makefile.am: move sources to libthread.aMax Kellermann1-9/+15
2013-10-17test/test_archive: unit test for archive_lookup()Max Kellermann1-0/+14
2013-10-16test: use the CPPUNIT framework for unit testsMax Kellermann1-2/+9
2013-10-16Makefile.am: distribute util/Domain.hxx and system/ByteOrder.hxxMax Kellermann1-0/+2
2013-10-16util/byte_reverse: convert to C++Max Kellermann1-2/+2
2013-10-16pcm_pack: convert to C++Max Kellermann1-1/+1
2013-10-15Archive*: move archive_domain to ArchiveDomain.cxxMax Kellermann1-0/+1
Merge duplicate symbol.
2013-10-15Util/Macros: replacement for GLib's G_N_ELEMENTS()Max Kellermann1-0/+1
2013-10-15util/FifoBuffer: C++ version of the fifo_buffer libraryMax Kellermann1-0/+2
2013-10-15system/clock: convert to C++Max Kellermann1-1/+1
2013-10-15require GLib 2.28Max Kellermann1-1/+0
The header glib_compat.h is now obsolete and can be removed.
2013-10-15gcc.h: rename to Compiler.hMax Kellermann1-1/+1
2013-10-02replay_gain_*.h: rename to *.hxxMax Kellermann1-4/+2
2013-10-02Stats: rename stats.h to Stats.hxxMax Kellermann1-2/+1
2013-10-02Log: new logging library APIMax Kellermann1-4/+31
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-28tag/{riff,aiff}: convert to C++Max Kellermann1-2/+2
2013-09-28playlist/lastfm: remove defunct Last.fm supportMax Kellermann1-6/+0
This plugin has been defunct ever since Last.fm changed their protocol. Since there is no volunteer willing to fix the plugin, I'm removing it now.
2013-09-05TagBuilder: new class for constructing Tag objectsMax Kellermann1-0/+1
Obsoletes Tag::BeginAdd() and the complicated "bulk add" code.
2013-09-05Tag: compile-time initialisation of ignore_tag_itemsMax Kellermann1-1/+1
Move to TagSettings.c and use C99 initializers.
2013-09-05Tag: move struct TagItem to TagItem.hxxMax Kellermann1-0/+1
2013-09-05Tag: move fix_tag_value() to TagString.cxxMax Kellermann1-0/+1
2013-09-05Tag: move configuration code to TagConfig.cxxMax Kellermann1-0/+1
Allow using the Tag.cxx library without the Config library.
2013-09-05Tag, ...: move to libtag.aMax Kellermann1-21/+19
2013-09-05mpd_error.h: remove obsolete headerMax Kellermann1-2/+1
Migrate the remaining callers to FatalError().
2013-09-05PlaylistPlugin: add interface SongEnumeratorMax Kellermann1-2/+2
Replaces struct playlist_provider.
2013-09-05conf.h: remove obsolete headerMax Kellermann1-1/+0
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-05conf.h: move constants to ConfigDefaults.hxxMax Kellermann1-0/+1
2013-09-05InputLegacy: move functions to the input_stream classMax Kellermann1-1/+0
2013-09-04TagTable: un-inline the two functionsMax Kellermann1-1/+1
Reduce header dependencies.