Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-08-02 | Makefile.am: fix dependencies for win32 | François Revol | 1 | -1/+1 | |
It happened to me when doing the Haiku port, src/mpd failed to be relinked properly when editing source files, and likely also happens on win32, although I didn't try this change. When building for windows, src_mpd_DEPENDENCIES is overriden. Automake then disables the default version which contains all the static libraries. In Makefile.in: @HAVE_WINDOWS_FALSE@src_mpd_DEPENDENCIES = libmpd.a \ Instead we use EXTRA_src_mpd_DEPENDENCIES which is meant for this. | |||||
2014-08-02 | Win32Main: move to win32/ | Max Kellermann | 1 | -6/+6 | |
2014-07-11 | PlaylistEdit: postpone UpdateQueuedSong() when adding multiple songs | Max Kellermann | 1 | -0/+1 | |
Implement a "bulk" edit mode that postpones both UpdateQueuedSong() and OnModified(). This way, the playlist version gets incremented only once. More importantly: when adding multiple songs to a queue that consists of only one song, the first song that got added will always be played next. By postponing this choice, all newly added songs get a chance to become the next song. Fixes the second (and last) part of Mantis ticket 0004005. | |||||
2014-07-09 | test: merge duplicate code to FakeDecoderAPI.cxx | Max Kellermann | 1 | -0/+2 | |
2014-01-27 | test/test_icy_parser: unit test for IcyMetaDataParser.cxx | Max Kellermann | 1 | -0/+11 | |
2013-11-08 | Makefile.am: disable dist-bzip2 | Max Kellermann | 1 | -1/+1 | |
bzip2-compressed tarballs are obsolete, xz is better and widely understood. | |||||
2013-11-04 | Makefile.am: distribute missing files | Max Kellermann | 1 | -0/+5 | |
2013-10-31 | Makefile.am: add missing header file | Max Kellermann | 1 | -0/+1 | |
2013-10-30 | Makefile.am: link test/DumpDatabase with Ack.cxx | Max Kellermann | 1 | -0/+1 | |
2013-10-26 | DecoderControl: move code/attributes to new class MixRampInfo | Max Kellermann | 1 | -0/+1 | |
2013-10-26 | test/test_mixramp: unit test for mixramp_interpolate() | Max Kellermann | 1 | -0/+10 | |
2013-10-25 | command: new command "readcomments" lists arbitrary file tags | Max Kellermann | 1 | -0/+1 | |
2013-10-23 | InputInternal: remove obsolete library | Max Kellermann | 1 | -1/+0 | |
2013-10-23 | UriUtil: uri_remove_auth() returns std::string | Max Kellermann | 1 | -1/+0 | |
2013-10-23 | test/test_util: unit test for libutil.a | Max Kellermann | 1 | -0/+10 | |
2013-10-22 | Playlist: refresh new tags after database update | Max Kellermann | 1 | -0/+1 | |
Fixes regression from commit e96779d. | |||||
2013-10-21 | Partition: add methods TagModified(), SyncWithPlayer() | Max Kellermann | 1 | -1/+1 | |
Move code from class Instance. | |||||
2013-10-21 | GetBaseUTF8 | Max Kellermann | 1 | -1/+1 | |
2013-10-21 | util/NumberParser: utilities for parsing numbers from ASCII strings | Max Kellermann | 1 | -0/+1 | |
2013-10-20 | Util/ASCII: add function StringEqualsCaseASCII() | Max Kellermann | 1 | -0/+1 | |
Replaces GLib's g_ascii_strcasecmp(). | |||||
2013-10-20 | *Commands: move to src/command/ | Max Kellermann | 1 | -12/+12 | |
2013-10-20 | command: convert command_return to to a strictly-typed enum | Max Kellermann | 1 | -1/+1 | |
2013-10-20 | decoder/sidplay: add header file | Max Kellermann | 1 | -1/+2 | |
2013-10-20 | decoder/sidplay: update file name | Max Kellermann | 1 | -1/+2 | |
2013-10-19 | Client: move message functions into the class | Max Kellermann | 1 | -1/+1 | |
2013-10-19 | util/FormatString: new library to replace g_strdup_printf() | Max Kellermann | 1 | -0/+1 | |
2013-10-19 | encoder/{opus,vorbis}: new serial generator replacing g_random_int() | Max Kellermann | 1 | -0/+6 | |
2013-10-18 | ZeroconfAvahi: integrate into the EventLoop | Max Kellermann | 1 | -2/+5 | |
Finally fixes the regression by commit c1f4f1fd. | |||||
2013-10-18 | test/run_avahi: new debug program | Max Kellermann | 1 | -0/+16 | |
2013-10-18 | test/run_inotify: use SignalMonitor | Max Kellermann | 1 | -0/+1 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -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-17 | fs/Path: move definitions to struct PathTraits | Max Kellermann | 1 | -0/+1 | |
2013-10-17 | fs/Path: move configuration code to Config.cxx | Max Kellermann | 1 | -0/+2 | |
2013-10-17 | fs/Path: move path_domain to Domain.hxx | Max Kellermann | 1 | -0/+1 | |
2013-10-17 | fs/Path: move MPD_PATH_MAX to Limits.hxx | Max Kellermann | 1 | -0/+1 | |
2013-10-17 | Thread/Thread: replacement library for GThread | Max Kellermann | 1 | -0/+9 | |
2013-10-17 | Makefile.am: move sources to libthread.a | Max Kellermann | 1 | -9/+15 | |
2013-10-17 | test/test_archive: unit test for archive_lookup() | Max Kellermann | 1 | -0/+14 | |
2013-10-16 | test: use the CPPUNIT framework for unit tests | Max Kellermann | 1 | -2/+9 | |
2013-10-16 | Makefile.am: distribute util/Domain.hxx and system/ByteOrder.hxx | Max Kellermann | 1 | -0/+2 | |
2013-10-16 | util/byte_reverse: convert to C++ | Max Kellermann | 1 | -2/+2 | |
2013-10-16 | pcm_pack: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-10-15 | Archive*: move archive_domain to ArchiveDomain.cxx | Max Kellermann | 1 | -0/+1 | |
Merge duplicate symbol. | |||||
2013-10-15 | Util/Macros: replacement for GLib's G_N_ELEMENTS() | Max Kellermann | 1 | -0/+1 | |
2013-10-15 | util/FifoBuffer: C++ version of the fifo_buffer library | Max Kellermann | 1 | -0/+2 | |
2013-10-15 | system/clock: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-10-15 | require GLib 2.28 | Max Kellermann | 1 | -1/+0 | |
The header glib_compat.h is now obsolete and can be removed. | |||||
2013-10-15 | gcc.h: rename to Compiler.h | Max Kellermann | 1 | -1/+1 | |
2013-10-02 | replay_gain_*.h: rename to *.hxx | Max Kellermann | 1 | -4/+2 | |
2013-10-02 | Stats: rename stats.h to Stats.hxx | Max Kellermann | 1 | -2/+1 | |