aboutsummaryrefslogtreecommitdiffstats
path: root/doc (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-10doc: added "music directory" sectionMax Kellermann1-0/+19
2009-04-06doc: xml typo fixJeffrey Middleton1-1/+1
A <varlistentry> was accidentally added before the beginning of the intended <variablelist>
2009-04-01command: added command "sticker find"Max Kellermann1-0/+19
This command allows clients to search for stickers with a specified name.
2009-03-30exconf: Fix spacingAvuton Olrich1-0/+3
2009-03-30implemented the 'consume' modeRomain Bignon1-0/+21
Consume mode removes each song played
2009-03-29exconf: update mixer documentation.Avuton Olrich1-7/+12
2009-03-29exconf: The usual defaults updates.Avuton Olrich1-60/+65
Ths usual defaults updates, this includes clarifications, cleanups, updates and fixes.
2009-03-29exconf: Comment formerly required files.Avuton Olrich1-4/+4
2009-03-29exconf: Merge required files with optional.Avuton Olrich1-5/+1
2009-03-27renamed smartstop to single and changed behaviorRomain Bignon1-5/+6
When single mode is enabled, after current song it stops playback, or it replay same song if repeat mode is activated.
2009-03-27implements the smartstop featureRomain Bignon1-0/+21
The smartstop feature is a way to tell mpd to stop playing after current song. This patche provides: - 'state' command returns 'smartstop' state (1 or 0) - 'smartstop' can activate or not the smartstop state - when song is terminated, mpd stops playing and smartstop is set to 0
2009-03-26queue/playlist/command: move rangeJeffrey Middleton1-3/+7
The move command now accepts a range for the first argument, in the same form as other range commands, e.g. move 15:17 3. The first song in the range is placed at the destination position. Note that as with other range commands, the range is inclusive on the left only; this example would move only songs 15 and 16, not 17. [mk: fixed signed/unsigned warnings; use G_MAXUINT instead of UINT_MAX]
2009-03-26doc: updated ranged playlist commandsJeffrey Middleton1-6/+10
Clearly specified the format (song1:song2) for range argumentst, and added the range capability of the playlistinfo command.
2009-03-26doc: Fixed moveid descriptionJeffrey Middleton1-2/+2
moveid uses an index, not a songid, for its second argument
2009-03-17httpd: correct the encoder name in the example mpd.confJeffrey Middleton1-3/+3
It's called "vorbis", not "ogg".
2009-03-16solaris: new audio output plugin for Solaris /dev/audioMax Kellermann1-0/+32
2009-03-15httpd: new output plugin to replace "shout"Max Kellermann2-0/+83
Let's get rid of the "shout" plugin, and the awfully complicated icecast daemon setup! MPD can do better if it's doing the HTTP server stuff on its own. This new plugin has several advantages: - easier to set up - only one daemon, no password settings, no mount settings - MPD controls the encoder and thus already knows the packet boundaries - icecast has to parse them - MPD doesn't bother to encode data while nobody is listening This implementation is very experimental (no header parsing, ignores request URI, no icy-metadata, ...). It should be able to suport several encoders in parallel in the future (with different bit rates, different codec, ...), to make MPD the perfect streaming server. Once MPD gets multi-player support, we can even mount several different radio stations on one server.
2009-03-14doc: added "audio outputs" section to the user's manualMax Kellermann1-4/+277
2009-03-14pcm_resample: choose the fallback resampler at runtimeMax Kellermann1-0/+5
Even if libsamplerate support is enabled, compile the fallback resampler. When the user specifies the option "samplerate_converter=internal", it is chosen in favor of libsamplerate. This may help users with a weak FPU who don't want to compile a custom MPD from source, because the fallback resampler does not use floating point operations.
2009-03-12doc: added installation manual to the User's ManualMax Kellermann1-0/+47
Very small start..
2009-03-12doc: added skeleton for the user manualMax Kellermann1-0/+38
2009-03-03Add sticker list command.Eric Wollesen1-0/+15
[mk: merged memory leak patch; fixed indentation (tabs); fixed documentation typo]
2009-02-28pipe: new audio output plugin which runs a commandMichal Nazarewicz1-0/+13
[mk: adapted to new output plugin API]
2009-02-26mixer: Add "disabled" mixer_type.Avuton Olrich2-1/+5
2009-02-23Makefile.am: no recursive makefilesMax Kellermann2-30/+2
Recursive Makefiles are inefficient and error prone (no proper way to declare dependencies). Since there's no disadvantage in having one single Makefile, let's do it.
2009-02-13added the shufflerange commandRomain Bignon1-0/+3
This command shuffles a range of songs.
2009-02-13doc: use $(DESTDIR)Max Kellermann1-2/+2
Forgot the $(DESTDIR) prefix in the install-data-local target.
2009-02-13doc: generate API documentation with doxygenMax Kellermann2-1/+1427
When configured with --enable-documentation, use doxygen.
2009-02-04configure.ac: make DocBook processing optionalMax Kellermann1-1/+1
Disable the HTML documentation generator by default. Most users will pick it from the web site.
2009-01-26changed sticker names to be lowercase and without spacesRasmus Steinke1-5/+8
2009-01-25doc: chunk the DocBook HTML outputMax Kellermann1-6/+10
Create a HTML chunk of each DocBook chapter. Use the UTF-8 character set instead of docbook-xsl's ISO-Latin-1 default.
2009-01-19sticker: added guidelines for sticker namesRasmus Steinke1-0/+75
2009-01-19command: added "sticker" commandMax Kellermann1-0/+67
The "sticker" command allows clients to query or manipulate the sticker database. This patch implements the sub-commands "get" and "set"; more will follow soon (enumeration), as well as extended "lsinfo" / "playlistinfo" versions.
2009-01-19sticker: new library for storing dynamic information about songsMax Kellermann1-0/+4
"Stickers" are pieces of information attached to existing MPD objects (e.g. song files, directories, albums). Clients can create arbitrary name/value pairs. MPD itself does not assume any special meaning in them.
2009-01-18mapper: make the music_directory optionalMax Kellermann1-3/+4
Without a music_directory, MPD is an excellent streaming client.
2009-01-18mapper: make the playlist directory optionalMax Kellermann1-3/+4
2009-01-14allow ~/.mpd/mpd.conf as alternate config fileJérôme Quelin1-2/+2
mpd uses some additional files to work, such as pid_file, state_file, db_file, etc. when running mpd as non-root user, it is often that those files end in ~/.mpd in that case, we end up with 2 entries in a user's home, .mpdconf and .mpd - which clutters homedirs. this patch allows ~/.mpd/mpd.conf as an alternative to ~/.mpdconf, allowing for a cleaner homedir
2009-01-04don't exit after --create-dbMax Kellermann1-1/+1
Start the daemon after --create-db. This makes --create-db a flag which discards the old database and starts with a fresh one.
2009-01-01mixer: renamed mix_* options to mixer_*Max Kellermann2-8/+8
There is no reason to use the shortcut "mix" instead of "mixer".
2008-12-31Moving mixers to audio outputsViliam Mateicka2-15/+25
2008-12-28log: support syslog()Max Kellermann2-0/+5
Allow logging to syslog if log_file is configured to "syslog".
2008-12-28log: deprecated "error_file" optionMax Kellermann2-4/+0
Removed the "error_file" option. There is only one log file now. If a user wants to see only the errors, he should configure a log_level.
2008-12-24Fix a few problems with the huge mpdconf update. There's alot of shift here, ↵Avuton Olrich1-72/+86
mostly due to word wraps. This, also, improves on uniformity and clarity of the document.
2008-12-24doc: fix "playlistdelete" documentationMax Kellermann1-2/+2
"playlistdelete" takes a song position, not a song id. There are no song ids in stored playlists.
2008-12-20Remove obsolete http_buffer* stuff that went away with the new curl backend.Avuton Olrich1-8/+0
2008-12-20Huge mpdconf update.Avuton Olrich1-175/+198
Over time mpdconf has evolved and has been maintained and contributed to by many different folks at different times. Try to give it some unity. Attempt to clear up some language and make things crystal clear. Add more examples. Use tabs when it makes sense. Make better borders. Remove obsolete options. Try to put more defaults when it makes sense.
2008-12-20doc: clarify "user" setting (starting as root / unprivileged)Max Kellermann2-5/+8
The "user" option does not work if MPD is started by an unprivileged user.
2008-12-16man: document Unix domain socket configuration in the manualMax Kellermann2-0/+7
Additionally, add an example in mpdconf.example.
2008-12-08update: default to follow all symlinksAvuton Olrich2-2/+2
MPD 0.13 and older followed all symbolic links. Although this can be a security problem (as it has always been), 0.14 should offer the same default behaviour as 0.13.
2008-11-28update: added options which control symlink behaviourRaphaël Rigo2-0/+13
The configuration options "follow_outside_symlinks" and "follow_inside_symlinks" let the user control whether MPD should follow symbolic links in the music directory. [mk: converted variables to "bool"; moved configuration to update_global_init()]