diff options
author | Max Kellermann <max@duempel.org> | 2014-02-07 00:17:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-07 00:17:36 +0100 |
commit | 746a47982bb650fe37f28606406ab03e5f977585 (patch) | |
tree | 981db8ca0ea8a624e8efa142e39777e7c1c11432 | |
parent | 327cbf48f5f25d37e34ec5d7c4252d31b558e3f6 (diff) | |
parent | ddb5390d88ad9301ab70d3b6fff741ef2bb2551f (diff) | |
download | mpd-746a47982bb650fe37f28606406ab03e5f977585.tar.gz mpd-746a47982bb650fe37f28606406ab03e5f977585.tar.xz mpd-746a47982bb650fe37f28606406ab03e5f977585.zip |
Merge tag 'release-0.18.8'
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/user.xml | 45 |
3 files changed, 52 insertions, 3 deletions
@@ -27,13 +27,17 @@ ver 0.19 (not yet released) - name each thread (for debugging) * new resampler option using libsoxr -ver 0.18.8 (not yet released) +ver 0.18.8 (2014/02/07) * decoder - ffmpeg: support libav v10_alpha1 +* encoder + - vorbis: fix linker failure +* output + - roar: documentation * more robust Icy-Metadata parser * fix Solaris build failure -ver 0.18.7 (2013/01/13) +ver 0.18.7 (2014/01/13) * playlist - pls: fix crash after parser error - soundcloud: fix build failure with libyajl 2.0.1 diff --git a/configure.ac b/configure.ac index 79084efc8..33d3f3ab7 100644 --- a/configure.ac +++ b/configure.ac @@ -1345,7 +1345,7 @@ fi AM_CONDITIONAL(ENABLE_SHINE_ENCODER, test x$enable_shine_encoder = xyes) dnl ---------------------------- Ogg Vorbis Encoder --------------------------- -MPD_AUTO_PKG(vorbis_encoder, VORBISENC, [vorbisenc], +MPD_AUTO_PKG(vorbis_encoder, VORBISENC, [vorbisenc vorbis], [Ogg Vorbis encoder], [libvorbisenc not found]) if test x$enable_vorbis_encoder = xyes; then diff --git a/doc/user.xml b/doc/user.xml index db0e350c8..797b1dba3 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -2174,6 +2174,51 @@ systemctl start mpd.socket</programlisting> </section> <section> + <title><varname>roar</varname></title> + + <para> + The <varname>roar</varname> plugin connects to a <ulink + url="http://roaraudio.keep-cool.org/">RoarAudio</ulink> + server. + </para> + + <informaltable> + <tgroup cols="2"> + <thead> + <row> + <entry>Setting</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry> + <varname>server</varname> + <parameter>HOSTNAME</parameter> + </entry> + <entry> + The host name of the RoarAudio server. If not + specified, then MPD will connect to the default + locations. + </entry> + </row> + + <row> + <entry> + <varname>role</varname> + <parameter>ROLE</parameter> + </entry> + <entry> + The "role" that MPD registers itself as in the + RoarAudio server. The default is "music". + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </section> + + <section> <title><varname>recorder</varname></title> <para> |