summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2021-01-21protocol: add command "binarylimit"Max Kellermann
Increasing the protocol version to 0.22.4 to allow clients to detect this feature. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1038
2021-01-20doc/mpd.conf.5.rst: updated ReplayGain website linksMax Kellermann
"The documentation for mpd.conf still links to https://replaygain.org – according to archive.org, this domain has been defunct since 2014-09-14, shortly after got domain squatted and ever since hosts dubious content." Closes https://github.com/MusicPlayerDaemon/MPD/issues/1050
2021-01-19doc/user.rst: require Android NDK r22Max Kellermann
2021-01-19doc/protocol.rst: fix playlist(find|search)Itai Y. Efrat
The `{TAG} {NEEDLE}` input format documented seems to be a holdover of pre-0.21 filters, and the commands support the new format.
2020-12-18doc/protocol.rst: document that tag changed trigger "player" idle eventMax Kellermann
2020-12-16doc/protocol.rst: fix MPD version on `oneshot`Itai Y. Efrat
2020-12-16doc/protocol.rst: fix mistake in footnotesItai Y. Efrat
2020-12-15doc/protocol.rst: ensure all commands have targetsEdJoPaTo
2020-12-14doc/protocol.rst: Add missing "originaldate" to the list of supported tagskaliko
2020-11-11doc/plugins.rst: add missing list-table declarationMax Kellermann
2020-11-10doc/mpd.1.rst: Update config file documentation.kaliko
Have similar information about config file in both mpd.1 ans mpd.conf.5
2020-11-10doc/mpd.conf.5.rst: Update mpd.conf manualkaliko
Update description with content from user manual [0]. Remove obsolete information regarding "required parameters" and log_level [0] https://www.musicpd.org/doc/html/user.html#the-configuration-file
2020-11-10doc/mpdconf.example: add database exempleskaliko
2020-11-10doc/mpdconf.example: add available log levelskaliko
2020-11-10doc/mpdconf.example: Strip trailing space, fixed typo.kaliko
2020-11-10doc/plugins.rst: add DSD spec linksMax Kellermann
2020-11-06increment version number to 0.22.4Max Kellermann
2020-11-04increment version number to 0.22.3Max Kellermann
2020-11-04playlist/registry: add option "as_directory"Max Kellermann
This allows users to disable the "CUE files as directories" feature without having to disable the CUE playlist plugin completely. This feature has been annoying some users.
2020-11-04doc/plugins.rst: more markupMax Kellermann
2020-11-04doc/user.rst: fix typoMax Kellermann
2020-10-28meson_options.txt: disable the "smbclient" plugin by defaultMax Kellermann
The bug https://bugzilla.samba.org/show_bug.cgi?id=11413 makes MPD crash after at most a minute of using the plugin. Since this bug is five years old already and it doesn't look like it will ever be fixed, all libsmbclient code in MPD is scheduled for removal. For now, the plugin is disabled by default so people are less likely to hit the crash bug. Closes https://github.com/MusicPlayerDaemon/MPD/issues/991
2020-10-27increment version number to 0.22.2Max Kellermann
2020-10-06doc/user.rst: document io_uringMax Kellermann
2020-10-06doc/user.rst: common startup problemsMax Kellermann
2020-10-06doc/user.rst: remove "Question" prefix from "Common Problems"Max Kellermann
2020-10-06doc/user.rst: remove numbers from section headersMax Kellermann
2020-09-30doc/meson.build: check both html_manual and manpagesMax Kellermann
Closes https://github.com/MusicPlayerDaemon/MPD/issues/960
2020-09-23increment version number to 0.22.1Max Kellermann
2020-09-23doc/user.rst: add GitHub linkMax Kellermann
2020-09-23doc/user.rst: move download link to downloads pageMax Kellermann
2020-09-23doc: improve manpage markupMax Kellermann
2020-09-23doc/meson.build: kludge to fix manpage installation directoryMax Kellermann
Ugly workaround for https://github.com/mesonbuild/meson/issues/1550
2020-09-23LogLevel: rename DEFAULT to NOTICEMax Kellermann
"DEFAULT" is a bad name - all it says is that it's the default value, but it doesn't say what it means. The name NOTICE mimics the syslog level.
2020-09-23LogInit: provide mappings for LogLevel::{ERROR,WARNING}Max Kellermann
2020-09-23LogInit: rename "secure" to "info"Max Kellermann
Calling this "secure" never made sense. Messages about client connects are just a small part of what gets logged as "secure", a.k.a. "info".
2020-09-23doc: rewrite the log_level documentationMax Kellermann
2020-09-22doc/user.rst: change C++14 to C++17Max Kellermann
2020-09-22doc/protocol.rst: improve "pause" documentationMax Kellermann
And un-deprecate "pause" without parameter (toggles pause). I have no idea why it was deprecated long ago; the deprecation notice was copied from the ancient MPD wiki. Closes https://github.com/MusicPlayerDaemon/MPD/issues/944
2020-09-04Merge branch 'v0.21.x' into masterMax Kellermann
2020-09-04Support soxr custom recipes.bitkeeper
MPD uses soxr with prefined resample recipes. Soxr also support defining a recipe your self. This commit will support a custom recipe by changing the existing quality setting to "custom". The same structs as the predefined recipes uses can now set by hand. This will make the following settings available: - precision 16|20|24|28|32 bits, example "28" - phase_response - 0-100, example "45" - passband_end - used bandwidth of source 80-99.7%, example "99.7.0" - stopband_begin - anti aliasing 100.0+%, example "100". - attenuation - signal reduciton in dB's, 0-30. example "3.0". - flags "0" - additional bitmask with extra settings The data is set in the structs soxr_quality_spec and soxr_io_spec (found in soxr.h).
2020-08-21Merge branch 'document-no-config-option' of git://github.com/naglis/MPDMax Kellermann
2020-08-21doc/mpd.1.rst: document --no-config optionNaglis Jonaitis
2020-08-21Merge branch 'use-stderr-option-in-docs' of git://github.com/naglis/MPDMax Kellermann
2020-08-21doc/user.rst: use --stderr option in examplesNaglis Jonaitis
--stdout was renamed to --stderr in 7261739526.
2020-08-21doc/mpd.1.rst: fix typoNaglis Jonaitis
2020-08-14doc/meson.build: let custom_target() install manpagesMax Kellermann
install_man() is currently broken with Meson and doesn't support a custom target argument. The problem with this kludge is that both mpd.1 and mpd.conf.5 are installed in /usr/share/man/man1/, but apparently, there's no solution yet.
2020-08-14doc/meson.build: use install_man()Max Kellermann
2020-08-14Convert raw manpages to reStructured textkaliko
Build with `rst2man mpd.1.rst mpd.1`
2020-08-14meson_options.txt: add option html_manualMax Kellermann