diff options
-rw-r--r-- | NEWS | 30 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 22 insertions, 14 deletions
@@ -1,4 +1,4 @@ -ver 0.15 - (200?/??/??) +ver 0.15 (200?/??/??) * input: - parse Icy-Metadata - added support for the MMS protocol @@ -8,7 +8,9 @@ ver 0.15 - (200?/??/??) - support the "album artist" tag - support MusicBrainz tags - parse RVA2 tags in mp3 files - - parse ID3 tags in RIFF/WAV files + - parse ID3 tags in AIFF/RIFF/WAV files + - ffmpeg: support new metadata API + - ffmpeg: added support for the tags comment, genre, year * decoders: - audiofile: streaming support added - audiofile: added 24 bit support @@ -20,6 +22,8 @@ ver 0.15 - (200?/??/??) - flac: parse stream tags - mpcdec: support the new libmpcdec SV8 API - added configuration option to disable decoder plugins + - flac: support embedded cuesheets + - ffmpeg: updated list of supported formats * audio outputs: - added option to disable audio outputs by default - wait 10 seconds before reopening after play failure @@ -32,17 +36,24 @@ ver 0.15 - (200?/??/??) - pipe: new audio output plugin which runs a command - alsa: better period_time default value for high sample rates - solaris: new audio output plugin for Solaris /dev/audio + - httpd: new audio output plugin for web based streaming, similar to icecast + but built in. * commands: - - "playlistinfo" supports a range now + - "playlistinfo" and "move" supports a range now - added "sticker database", command "sticker", which allows clients - to implement features like "song rating" -* Rewritten mixer code to support multiple mixers + to implement features like "song rating" + - added "consume" command which removes a song after play + - added "single" command, if activated, stops playback after current song or + repeats the song if "repeat" is active. +* mixers: + - rewritten mixer code to support multiple mixers + - new pulseaudio mixer * Add audio archive extraction support: - bzip2 - iso9660 - zip * the option "error_file" was removed, all messages are logged into - "log_file" + "log_file" * support logging to syslog * fall back to XDG music directory if no music_directory is configured * failure to read the state file is non-fatal @@ -52,10 +63,13 @@ ver 0.15 - (200?/??/??) * playlist: don't unpause on delete * daemon: ignore "user" setting if already running as that user * listen: fix broken client IP addresses in log -* 32 bit audio support -* Print available protocols in --version +* 24/32 bit audio support +* print available protocols in --version * fill buffer after seeking * choose the fallback resampler at runtime +* steps taken towards win32 compatibility +* require glib 2.6 or greater +* built-in documentation using doxygen and docbook ver 0.14.2 (2009/02/13) diff --git a/configure.ac b/configure.ac index 1b3fc53da..b77344825 100644 --- a/configure.ac +++ b/configure.ac @@ -401,12 +401,6 @@ dnl ### dnl MAD mp3 decoder dnl ### -dnl Depreciated option, available for backwards compatibility -dnl Also, will not work without the enableval -AC_ARG_ENABLE(mp3,, - enable_mad=$enableval, - enable_mad=yes) - AC_ARG_ENABLE(mad, AS_HELP_STRING([--enable-mad], [enable libmad mp3 decoder plugin]),, |