diff options
author | Max Kellermann <max@duempel.org> | 2010-07-19 23:49:15 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-07-19 23:49:15 +0200 |
commit | 2bc5161e95e1e33445d6b7abf52c9d11bf631d33 (patch) | |
tree | 8ea72c55d25b6b1191f999e700bac3853441a67c | |
parent | e2e8d0d2f35e7ea4d9bc20d92f624bc957fd8060 (diff) | |
parent | 56bf4ede1896708c50df864521bd71aebf25aa02 (diff) | |
download | mpd-2bc5161e95e1e33445d6b7abf52c9d11bf631d33.tar.gz mpd-2bc5161e95e1e33445d6b7abf52c9d11bf631d33.tar.xz mpd-2bc5161e95e1e33445d6b7abf52c9d11bf631d33.zip |
Merge release 0.15.11 from branch 'v0.15.x
Conflicts:
NEWS
configure.ac
src/decoder/ffmpeg_decoder_plugin.c
src/decoder/mikmod_decoder_plugin.c
src/decoder/mp4ff_decoder_plugin.c
src/decoder/vorbis_decoder_plugin.c
src/directory_print.c
src/playlist_control.c
src/tag_ape.c
Diffstat (limited to '')
-rw-r--r-- | NEWS | 19 | ||||
-rw-r--r-- | src/playlist_control.c | 1 |
2 files changed, 17 insertions, 3 deletions
@@ -20,7 +20,7 @@ ver 0.16 (20??/??/??) * tags: - added tags "ArtistSort", "AlbumArtistSort" - id3: revised "performer" tag support - - ape: support album artist, MusicBrainz tags + - ape: MusicBrainz tags * decoders: - don't try a plugin twice (MIME type & suffix) - don't fall back to "mad" unless no plugin matches @@ -38,8 +38,6 @@ ver 0.16 (20??/??/??) - wavpack: activate 32 bit support - wavpack: allow more than 2 channels - mp4ff: rename plugin "mp4" to "mp4ff" - - mp4ff: support tags "album artist", "albumartist", "band" - - mikmod: fix memory leak * encoders: - twolame: new encoder plugin based on libtwolame - flac: new encoder plugin based on libFLAC @@ -105,6 +103,21 @@ ver 0.16 (20??/??/??) * added libwrap support +ver 0.15.11 (2010/06/14) +* tags: + - ape: support album artist +* decoders: + - mp4ff: support tags "album artist", "albumartist", "band" + - mikmod: fix memory leak + - vorbis: handle uri==NULL + - ffmpeg: fix memory leak + - ffmpeg: free AVFormatContext on error + - ffmpeg: read more metadata + - ffmpeg: fix libavformat 0.6 by using av_open_input_stream() +* playlist: emit IDLE_OPTIONS when resetting single mode +* listen: make get_remote_uid() work on BSD + + ver 0.15.10 (2010/05/30) * input: - mms: fix memory leak in error handler diff --git a/src/playlist_control.c b/src/playlist_control.c index fa843c89e..ce9bc8442 100644 --- a/src/playlist_control.c +++ b/src/playlist_control.c @@ -25,6 +25,7 @@ #include "config.h" #include "playlist_internal.h" #include "player_control.h" +#include "idle.h" #include <glib.h> |