summaryrefslogtreecommitdiff
path: root/doc/user.rst
AgeCommit message (Collapse)Author
2021-08-05Merge branch 'v0.22.x'Max Kellermann
2021-06-24doc/user.rst: rectify admin permissionNaglis Jonaitis
Updating the database no longer requires the `admin` permission, only `control` is needed (changed in 2abad0f479). See also: #1124
2021-06-23Merge tag 'v0.22.9'Max Kellermann
release v0.22.9
2021-06-23doc/user.rst: document restore_pausedNaglis Jonaitis
2021-06-23doc, README.md: update IRC server name/URLNaglis Jonaitis
2021-05-26Merge branch 'v0.22.x'Max Kellermann
2021-05-25meson.build: require clang 7 (remove bug workaround)Max Kellermann
2021-05-25meson.build: libfmt integrationMax Kellermann
2021-03-04Merge branch 'v0.22.x'Max Kellermann
2021-02-26doc/user.rst: update Windows&Android build dependenciesMax Kellermann
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1112
2021-02-07doc/user.rst: add section about profiling MPDMax Kellermann
2021-01-19doc/user.rst: require Android NDK r22Max Kellermann
2020-11-10doc/plugins.rst: add DSD spec linksMax 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/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-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-23doc/user.rst: add GitHub linkMax Kellermann
2020-09-23doc/user.rst: move download link to downloads pageMax Kellermann
2020-09-22doc/user.rst: change C++14 to C++17Max Kellermann
2020-08-21doc/user.rst: use --stderr option in examplesNaglis Jonaitis
--stdout was renamed to --stderr in 7261739526.
2020-08-08doc/user.rst: document include_optional directiveNaglis Jonaitis
2020-07-10doc: fix a few typos and missing wordsNaglis Jonaitis
2020-05-07meson.build: require GCC 8 or clang 5Max Kellermann
Commit 60f957ed648 broken the GCC 7 build, but instead of working around missing C++17 features in old compilers, let's update the compiler version requirements. This commit raises the clang requirement to version 5 because this is the first version to support `constexpr` lambdas, to be used to `Dsd2Pcm.cxx`.
2020-03-19Merge tag 'v0.21.21'Max Kellermann
release v0.21.21
2020-03-19raise default "max_connections" value to 100Max Kellermann
Documentation says the limit is 5, but it was really 10 (at least since 2004). But since MPD wants to promote using many small clients idling around, and these clients consume only very few resources, it seems reasonable to raise this limit's default value.
2020-03-12doc/user.rst, .travis.yml: drop GCC 6 supportMax Kellermann
Debian Stable (Buster) has GCC 8 and Ubuntu LTS (18.04) has GCC 7. This will unlock a lot of C++17 features like `std::string_view`.
2020-02-17Instance: flush input cache on SIGHUPMax Kellermann
2020-02-17doc/user.rst: add section "Signals"Max Kellermann
2020-02-17doc/user.rst: add section "Starting MPD"Max Kellermann
Move the existing systemd sections over there.
2020-01-17Revert "pcm/Convert: add option to enable the integer-only dsd2pcm ↵Max Kellermann
implementation" This reverts commit c84bae739a29ec27790c5534b7fc777d6f40a02f. A configuration option is not necessary, because the PcmConvert constructor knows already whether integer or floating point is needed.
2020-01-17pcm/Convert: add option to enable the integer-only dsd2pcm implementationMax Kellermann
2019-10-28doc/user.rst: update build dependencies on Debian Busterkaliko
2019-10-28Merge branch 'buster-build-dependencies' of git://github.com/mxjeff/MPDMax Kellermann
2019-10-28doc/user.rst: update build dependencies on Debian Busterkaliko
2019-10-09thread/Util: lower the real-time priority from 50 to 40Max Kellermann
On linux-rt, kernel IRQ threads are configured with priority=50, and this change configures MPD somewhat below that priority, leaving some room for other programs to be configured in between. Closes https://github.com/MusicPlayerDaemon/MPD/issues/643
2019-08-10input/icy: support "charset" parameter in URI fragmentMax Kellermann
Closes https://github.com/MusicPlayerDaemon/MPD/issues/616
2019-05-31input/cache: first draft of the file cacheMax Kellermann
2019-05-31Merge branch 'v0.21.x'Max Kellermann
2019-05-31doc/user.rst: more heading correctionsMax Kellermann
According to http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#sections
2019-05-31doc/user.rst: use ".. note:"Max Kellermann
2019-05-29config/Parser: add ParseSize()Max Kellermann
Supports suffixes such as "kB" and "MB".
2019-05-13doc/user.rst: move audio format spec to section "Global Audio Format"Max Kellermann
2019-05-13doc/user.rst: add reference to audio_output_formatMax Kellermann
2019-05-13doc/user.rst: more markupMax Kellermann
2019-05-13doc/user.rst: add missing spaceMax Kellermann
2019-03-18doc/plugins.rst: add filter plugin referenceMax Kellermann