Adding ChangeLog entry for zeroconf_enabled, adding Zeroconf section to

mpdconf.example, and updating the zeroconf_* docs.

git-svn-id: https://svn.musicpd.org/mpd/trunk@6474 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2007-06-03 20:09:12 +00:00
parent 7e2cbdee05
commit 652c2fc8b0
3 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,7 @@
ver 0.14.0 (????/??/??) ver 0.14.0 (????/??/??)
* New null audio output plugin * New null audio output plugin
* Zeroconf support using Bonjour * Zeroconf support using Bonjour
* New zeroconf_enabled option so that Zeroconf support can be disabled
ver 0.13.0 (2007/5/28) ver 0.13.0 (2007/5/28)
* New JACK audio output * New JACK audio output

View File

@ -72,12 +72,13 @@ reports from what address a connection is opened, and when it is closed, and
default is "default". default is "default".
.TP .TP
.B zeroconf_enabled <yes or no> .B zeroconf_enabled <yes or no>
Specifies if zeroconf should be enabled or not. If yes, and MPD has been compiled with support for Avahi or Bonjour, service
information will be published with Zeroconf. The default is yes.
.TP .TP
.B zeroconf_name <name> .B zeroconf_name <name>
If Zerconf is compiled into MPD, this is the service name to publish. This If Zeroconf is enabled, this is the service name to publish. This name should
should be unique to your local network, but name collisions will be properly be unique to your local network, but name collisions will be properly dealt
dealt with. with. The default is "Music Player".
.TP .TP
.B password <password@permissions> .B password <password@permissions>
This specifies a password for access to mpd. The format is This specifies a password for access to mpd. The format is

View File

@ -45,13 +45,17 @@ error_file "~/.mpd/mpd.error"
# #
#log_level "default" #log_level "default"
# #
# If Zeroconf support should be enabled. ################################################################
########################### ZEROCONF ###########################
#
# If yes, service information will be published with Zeroconf.
# #
#zeroconf_enabled "yes" #zeroconf_enabled "yes"
# #
# If Zeroconf is configured, the service name to publish. This # The service name to publish. This name should be unique on
# should be unique on your local network, but name collisions # your local network.
# will be taken care of for you.
# #
#zeroconf_name "Music Player" #zeroconf_name "Music Player"
# #