Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2012-03-22 | output/alsa: add option to enable DSD over USB | Max Kellermann | 1 | -0/+17 | |
2012-03-06 | command: read arbitrary local files with "lsinfo" | Max Kellermann | 1 | -0/+5 | |
Requires UNIX domain socket connection. | |||||
2012-02-15 | doc/protocol: fix some grammar | Jonathan Neuschäfer | 1 | -2/+2 | |
(Maybe it should be "A new message is indicated...", I don't know.) ( ^^ ) | |||||
2012-02-13 | listen: implement systemd socket activation | Max Kellermann | 1 | -0/+41 | |
2012-02-13 | command: new command "config" | Max Kellermann | 1 | -0/+41 | |
2012-02-12 | playlist/embcue: new plugin for reading embedded cue sheets | Max Kellermann | 1 | -0/+8 | |
Parses CUE data from the "CUESHEET" tag. Needs further integration in the update thread. | |||||
2012-02-09 | command: add optional range parameter to "load" | Max Kellermann | 1 | -1/+3 | |
2011-12-24 | command: new command "seekcur" | Max Kellermann | 1 | -0/+17 | |
For simpler seeking within current song. | |||||
2011-10-20 | audio_format: basic support for floating point samples | Max Kellermann | 1 | -1/+2 | |
Support for conversion from float to 16, 24 and 32 bit integer samples. | |||||
2011-10-19 | doc/protocol.xml: the replay gain "auto" mode was added in MPD 0.16 | Jonathan Neuschäfer | 1 | -1/+5 | |
2011-10-19 | doc/protocol.xml: document {en,dis}ableoutput's parameter | Jonathan Neuschäfer | 1 | -0/+2 | |
2011-10-10 | doc/doxygen.conf: enable "quiet" mode | Max Kellermann | 1 | -1/+1 | |
2011-10-07 | decoder/dsdiff: add option "lsbitfirst" | Max Kellermann | 1 | -0/+23 | |
Defaults to "no", which fixes the noise problems. | |||||
2011-10-07 | decoder/dsdiff: add documentation | Max Kellermann | 1 | -0/+8 | |
2011-09-20 | server_socket: use resolve_host_port() instead of getaddrinfo() | Max Kellermann | 1 | -0/+4 | |
Allow port specification in "bind_to_address" settings. | |||||
2011-08-27 | let doxygen find the source code | Jonathan Neuschäfer | 1 | -1/+1 | |
[Unfortunately,] @top_srcdir@ is replaced by the package's top-level directory relative to the directory of the .in file being processed, e.g. if you unpack the MPD source to /usr/src/mpd, and build it in the same directory, @top_srcdir@/src/ in doc/doxygen.conf.in will be re- placed by "../src/", and, as doxygen is invoked from the top directory, is will expect the source code in /usr/src/src/, which is obviously wrong. To work around this problem, this patch changes @top_srcdir@ to @abs_top_srcdir@, which expands to the absolute path of the top source directory[1]. [1] http://www.gnu.org/s/hello/manual/autoconf/Preset-Output-Variables.html | |||||
2011-08-27 | doc/developer.xml: change the coing style example return type to int | Jonathan Neuschäfer | 1 | -1/+1 | |
2011-08-24 | input/soup: new input plugin based on libsoup | Max Kellermann | 1 | -0/+28 | |
To demonstrate the new I/O thread. libsoup is well-integrated into the GLib main loop, which made this plugin pretty easy to write. As a side effect, we have to initialize the I/O thread in all debug programs that use the input API. | |||||
2011-07-19 | queue: implement song "priorities" | Max Kellermann | 1 | -0/+81 | |
Sorts remaining songs by priority. This can be used for the much-demanded "queue feature". | |||||
2011-07-03 | doc/protocol: add some missing specifications | Jonathan Ballet | 1 | -7/+127 | |
2011-07-03 | doc/user: Typo in playlist plugin documentation, 'playlist plugin' not 'filter'. | Tony Miller | 1 | -1/+1 | |
This patch fixes a typo in doc/user about playlist plugins. Its in the top commit in my repository in a branch called 'doc_fix': git://github.com/mcfiredrill/mpd.git | |||||
2011-04-12 | doc: Add despotify user documentation | Simon Kagstrom | 1 | -0/+82 | |
2011-03-31 | fix common misspellings | Jonathan Neuschäfer | 1 | -1/+1 | |
These fixes were mostly generated with `codespell' [0] and manually reviewed. [0] http://git.profusion.mobi/cgit.cgi/lucas/codespell/ | |||||
2011-03-29 | doc: Add configuration help for despotify | Simon Kagstrom | 1 | -0/+11 | |
2011-02-23 | playlist_state: add option "restore_paused" | Max Kellermann | 2 | -0/+8 | |
When set, MPD will not auto-start playback on startup; it will be in "paused" state. | |||||
2011-02-09 | output/shout: add possibility to set url | Thomas Jansen | 3 | -0/+13 | |
Added a new optional parameter for the shout plugin called "url". | |||||
2011-01-29 | protocol: support client-to-client communication | Max Kellermann | 1 | -0/+113 | |
2011-01-10 | doc: add a list of encoder plugins | Max Kellermann | 1 | -0/+182 | |
2011-01-05 | docs: mention 'sticker' idle event | Anton Khirnov | 1 | -0/+6 | |
2010-12-24 | Makefile.am: generate doxygen.conf | Max Kellermann | 1 | -2/+2 | |
Don't create a modified copy for out-of-tree builds. | |||||
2010-12-22 | configure.ac: hook the cdio_paranoia input plugin | Max Kellermann | 1 | -0/+11 | |
2010-10-27 | output: new output plugin "ffado" | Max Kellermann | 1 | -0/+37 | |
Using libffado, to play on firewire audio devices. Warning: this plugin was not tested successfully. I just couldn't keep libffado2 from crashing. Use at your own risk. For details, see my Debian bug reports: http://bugs.debian.org/601657 http://bugs.debian.org/601659 | |||||
2010-09-25 | output/httpd: bind_to_address support (including IPv6) | Thomas Jansen | 2 | -2/+12 | |
Added support for a new optional configuration setting for the httpd output named "bind_to_address". Setting it to a specific IP address (v4 or v6) will cause the httpd output to bind to that address exclusively. Supporting multiple addresses in parallel is future work. This implements the feature requests #2998 and #2646. | |||||
2010-08-31 | doc/protocol: update descriptions of the searching commands | Anton Khirnov | 1 | -14/+15 | |
2010-08-15 | doc/protocol: mention that 'status' command also returns 'random' | Anton Khirnov | 1 | -0/+6 | |
2010-07-25 | Makefile.am: fix out-of-tree doxygen call | Max Kellermann | 1 | -1/+1 | |
This hack creates a copy of doc/doxygen.conf with the INPUT setting replaced. | |||||
2010-04-25 | replay_gain: added mode "auto" | Daniel Seuthe | 1 | -3/+5 | |
2010-04-13 | inotify: added setting "auto_update_depth" | Max Kellermann | 2 | -0/+10 | |
Limits the depth of the watched directories. This is useful to keep resource usage down and speed up MPD startup. | |||||
2010-03-21 | Add support for MixRamp tags | Tim Phipps | 1 | -0/+38 | |
Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading. | |||||
2010-03-10 | output: added option "always_on" for radio stations | Max Kellermann | 1 | -0/+12 | |
Did you ever accidently click "stop" while feeding a radio station? This option sets the output device to "pause" to disable the "close" method. It falls back to "pause" then, which is specific to the plugin. Some plugins implement it by feeding silence. | |||||
2010-02-17 | replay_gain: optionally use hardware mixer to apply replay gain | Max Kellermann | 2 | -0/+19 | |
Add an option for each audio output which enables the use of the hardware mixer, instead of the software volume code. This is hardware specific, and assumes linear volume control. This is not the case for hardware mixers which were tested, making this patch somewhat useless, but we will use it to experiment with the settings, to find a good solution. | |||||
2010-02-08 | doc: deleted sticker specification proposal | Max Kellermann | 1 | -91/+0 | |
This document has been unmaintained for more than a year now (since the day it was submitted). | |||||
2010-02-08 | command: "listplaylist" dumps playlist files | Max Kellermann | 1 | -5/+20 | |
Same for "listplaylistinfo". | |||||
2010-01-16 | audio_format: support packed 24 bit samples | Max Kellermann | 1 | -0/+11 | |
2009-11-14 | decoder/mikmod: sample rate is configurable | Max Kellermann | 1 | -1/+29 | |
The new option "sample_rate" sets the sample rate for libmikmod. | |||||
2009-11-14 | doc: added decoder plugin reference | Max Kellermann | 1 | -0/+6 | |
2009-11-07 | output/jack: added option "server_name" | Max Kellermann | 1 | -0/+9 | |
2009-11-07 | command: added command "decoders" | Max Kellermann | 1 | -0/+19 | |
This command prints a list of decoder plugins and their suffixes / MIME types. | |||||
2009-11-06 | output/jack: dynamic source port list | Max Kellermann | 1 | -0/+12 | |
Same as the previous patch: create up to 16 configured source ports. The plugin tries to do its best at guessing the right combination for the given input file, the number of source and destination ports. | |||||
2009-11-06 | output/jack: renamed option "ports" to "destination_ports" | Max Kellermann | 1 | -1/+1 | |
Be more clear which kind of port should be configured here. |