aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-11-06PlayerThread: enable buffering when starting playbackMax Kellermann1-0/+1
For some reason, this got lost in commit 975deca8. Re-enabling this fixes stuttering at the beginning of radio streams.
2013-11-06configure.ac: require libaudiofile 0.3 due to API breakageMax Kellermann1-0/+1
Prior to version 0.3, the "length" callback returned a "long" instead of AFfileoffset. Now that this API bug fix is a few years old, let's drop 0.2 support for good.
2013-11-06input/curl: fix bug with redirected streamsMax Kellermann1-0/+2
Migrate from the old curl_multi_perform() API to the newer curl_multi_socket_action() API (since CURL 7.16). This allows working around a bug with HTTP redirections with epoll: when CURL closes a socket and the new one happens to have the same file number, MPD did not have a chance to remove the old one from epoll and subsequently attempted to use EPOLL_CTL_MOD, which was not allowed by epoll, because it's a new socket now.
2013-11-05system/ByteOrder: fix big-endian supportMax Kellermann1-0/+1
D'oh!
2013-11-05playlist/pls: fix reversed song orderMax Kellermann1-0/+2
Remove the forward_list::reverse() call. It was not necessary, because pls_parser() already reads the playlist in reverse order.
2013-11-05decoder/dsf: enable DSD128Jurgen Kramer1-0/+2
2013-11-05NEWS: add missing lineMax Kellermann1-0/+1
2013-11-05configure.ac: prepare for 0.18.2Max Kellermann1-0/+2
2013-11-04release v0.18.1Max Kellermann1-1/+1
2013-11-04output/alsa: avoid endless loop in Raspberry Pi workaroundMax Kellermann1-0/+2
See code comment.
2013-11-04event/ServerSocket: don't abort if IPv6 is not availableMax Kellermann1-0/+1
First check if an IPv6 socket can be created.
2013-11-04event/ServerSocket: open sockets in the order they were configuredMax Kellermann1-0/+1
Use a std::list which can be appended at the end.
2013-11-04system/resolver: return path of UNIX domain socketsMax Kellermann1-0/+2
getnameinfo() doesn't work well - it always returns "localhost".
2013-11-04ClientRead: always ignore whitespace at the end of the lineMax Kellermann1-0/+2
2013-11-04Makefile.am: distribute missing filesMax Kellermann1-0/+1
2013-11-04filter/AutoConvert: modify child_audio_format, not in_audio_formatMax Kellermann1-0/+2
This prevented using the "volume_normalization" feature with some codecs (e.g. mp3), because the normalization code requires 16 bit samples. If the codec happens to deliver formats other than S16, the AutoConvert filter succeeds to initialize the conversion filter, but the returned input audio format was wrong.
2013-11-04configure.ac: prepare for 0.18.1Max Kellermann1-0/+2
2013-10-31release v0.18Max Kellermann1-1/+2
2013-10-30increase default buffer size to 4 MBMax Kellermann1-0/+1
2 MB was too small for cross-fading a 24 bit file. Increasing to 4 MB is still not too large for weak machines, but is enough for cross-fading.
2013-10-29SongFilter: add special keyword "base"Max Kellermann1-0/+1
Restores the features from the previous draft commands "findin" / "searchin".
2013-10-29Revert "command: new commands "findin", "searchin" with base URI"Max Kellermann1-1/+0
This reverts commit a577944ab5a1f4d688e5901fa3efaf7cd1673588. Will be replaced by new options for the old commands "search" and "find".
2013-10-29SongFilter: "any" does not match file nameMax Kellermann1-0/+1
According to the protocol documentation, matching the file name was wrong. This removes some awkward special-case code.
2013-10-28decoder/dsf: don't play junk at the end of the "data" chunkMax Kellermann1-0/+1
2013-10-28configure.ac: disable the OS X output plugin by defaultMax Kellermann1-0/+1
There hasn't been a maintainer for this plugin for years. It may even fail to build.
2013-10-28DecoderControl: convert mutex and client_cond to a referenceMax Kellermann1-0/+1
Share the Mutex between the DecoderThread and the PlayerThread. This simplifies synchronization between the two threads and fixes a freeze problem: while the PlayerThread waits for the DeocderThread, it cannot answer requests from the main thread, and the main thread will block until the DecoderThread finishes.
2013-10-26command: new commands "findin", "searchin" with base URIMax Kellermann1-0/+1
2013-10-25command: new command "readcomments" lists arbitrary file tagsMax Kellermann1-0/+1
2013-10-25output/httpd: support HEAD requestsMax Kellermann1-0/+1
2013-10-25OtherCommands: re-add the "volume" commandMax Kellermann1-0/+1
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-19decoder/modplug: Add "loop_count" parameterSebastian Thorarensen1-0/+1
The "loop_count" configuration parameter allows the user to set how many times a module with backward loops shall loop. "0" (the default) means a module is not allowed to use backward loops at all. "-1" enables inifinite looping.
2013-10-18decoder/mikmod: Add loop configuration parameterSebastian Thorarensen1-0/+1
This patch allows the user to configure the mikmod decoder plugin to loop modules. It adds a configuration parameter to the mikmod decoder called "loop" which can be "no" (the old behaviour, default) or "yes" to allow modules to use backward loops.
2013-10-17fs/Charset: default filesystem charset is UTF-8Max Kellermann1-0/+1
Implement a fast path for UTF-8 which leaves fs_charset empty, and don't assign a value to fs_charset if there's no configuration.
2013-10-14release 0.17.6Max Kellermann1-1/+1
2013-10-14decoder/modplug: fix include directoryFlorian Schlichting1-0/+2
2013-10-14stored_playlist: use fs_charset_to_utf8() for URLsMax Kellermann1-0/+1
2013-10-14load_fileMax Kellermann1-0/+2
2013-10-01mixer/alsa: handle ENODEVMax Kellermann1-0/+2
Fixes busy loop when USB sound device gets unplugged (Mantis bug #3824).
2013-10-01prepare 0.17.6Max Kellermann1-0/+2
2013-09-28playlist/lastfm: remove defunct Last.fm supportMax Kellermann1-1/+3
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-26SongFilter: search for album artist falls back to the artist tagMax Kellermann1-0/+1
Implement Mantis ticket 0003646.
2013-09-12Listen: Allow tilde paths for socket.Maarten de Vries1-0/+2
2013-09-05input/curl: enable httpsAles Guzik1-0/+1
2013-08-04Commands: new command "toggleoutput"Max Kellermann1-0/+2
2013-08-04release 0.17.5Max Kellermann1-1/+1
2013-08-04FfmpegDecoderPlugin: add application/flv to mime types listJustin Riley1-0/+1
2013-08-01decoder/mikmod: use MikMod_free() to free the title on libmikmod-3.2Christoph Mende1-0/+2
Player_LoadTitle() returns an aligned pointer in libmikmod-3.2 that cannot be freed with free(). The correct way to do this now is MikMod_free() which extracts the original pointer from the buffer and frees that. Signed-off-by: Christoph Mende <mende.christoph@gmail.com>
2013-08-01playlist_edit: fix "move" relative to current when there is no current songMax Kellermann1-0/+1
Fixes Mantis #3770.
2013-08-01configure.ac: detect system "ar"Michael Mair-Keimberger1-0/+2
2013-08-01commmand: fix URI argument in playlistaddtsufeki1-0/+2
2013-07-31decoder/ffmpeg: require ffmpeg/libav 0.8Max Kellermann1-0/+1
Now that even Debian stable has picked up version 0.8, we can safely make this a requirement, and remove a lot of old cruft.