Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-05 | Merge branch 'v0.22.x' | Max Kellermann | |
2021-06-24 | doc/user.rst: rectify admin permission | Naglis Jonaitis | |
Updating the database no longer requires the `admin` permission, only `control` is needed (changed in 2abad0f479). See also: #1124 | |||
2021-06-23 | Merge tag 'v0.22.9' | Max Kellermann | |
release v0.22.9 | |||
2021-06-23 | doc/user.rst: document restore_paused | Naglis Jonaitis | |
2021-06-23 | doc, README.md: update IRC server name/URL | Naglis Jonaitis | |
2021-05-26 | Merge branch 'v0.22.x' | Max Kellermann | |
2021-05-25 | meson.build: require clang 7 (remove bug workaround) | Max Kellermann | |
2021-05-25 | meson.build: libfmt integration | Max Kellermann | |
2021-03-04 | Merge branch 'v0.22.x' | Max Kellermann | |
2021-02-26 | doc/user.rst: update Windows&Android build dependencies | Max Kellermann | |
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1112 | |||
2021-02-07 | doc/user.rst: add section about profiling MPD | Max Kellermann | |
2021-01-19 | doc/user.rst: require Android NDK r22 | Max Kellermann | |
2020-11-10 | doc/plugins.rst: add DSD spec links | Max Kellermann | |
2020-11-04 | playlist/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-04 | doc/user.rst: fix typo | Max Kellermann | |
2020-10-28 | meson_options.txt: disable the "smbclient" plugin by default | Max 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-06 | doc/user.rst: document io_uring | Max Kellermann | |
2020-10-06 | doc/user.rst: common startup problems | Max Kellermann | |
2020-10-06 | doc/user.rst: remove "Question" prefix from "Common Problems" | Max Kellermann | |
2020-10-06 | doc/user.rst: remove numbers from section headers | Max Kellermann | |
2020-09-23 | doc/user.rst: add GitHub link | Max Kellermann | |
2020-09-23 | doc/user.rst: move download link to downloads page | Max Kellermann | |
2020-09-22 | doc/user.rst: change C++14 to C++17 | Max Kellermann | |
2020-08-21 | doc/user.rst: use --stderr option in examples | Naglis Jonaitis | |
--stdout was renamed to --stderr in 7261739526. | |||
2020-08-08 | doc/user.rst: document include_optional directive | Naglis Jonaitis | |
2020-07-10 | doc: fix a few typos and missing words | Naglis Jonaitis | |
2020-05-07 | meson.build: require GCC 8 or clang 5 | Max 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-19 | Merge tag 'v0.21.21' | Max Kellermann | |
release v0.21.21 | |||
2020-03-19 | raise default "max_connections" value to 100 | Max 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-12 | doc/user.rst, .travis.yml: drop GCC 6 support | Max 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-17 | Instance: flush input cache on SIGHUP | Max Kellermann | |
2020-02-17 | doc/user.rst: add section "Signals" | Max Kellermann | |
2020-02-17 | doc/user.rst: add section "Starting MPD" | Max Kellermann | |
Move the existing systemd sections over there. | |||
2020-01-17 | Revert "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-17 | pcm/Convert: add option to enable the integer-only dsd2pcm implementation | Max Kellermann | |
2019-10-28 | doc/user.rst: update build dependencies on Debian Buster | kaliko | |
2019-10-28 | Merge branch 'buster-build-dependencies' of git://github.com/mxjeff/MPD | Max Kellermann | |
2019-10-28 | doc/user.rst: update build dependencies on Debian Buster | kaliko | |
2019-10-09 | thread/Util: lower the real-time priority from 50 to 40 | Max 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-10 | input/icy: support "charset" parameter in URI fragment | Max Kellermann | |
Closes https://github.com/MusicPlayerDaemon/MPD/issues/616 | |||
2019-05-31 | input/cache: first draft of the file cache | Max Kellermann | |
2019-05-31 | Merge branch 'v0.21.x' | Max Kellermann | |
2019-05-31 | doc/user.rst: more heading corrections | Max Kellermann | |
According to http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#sections | |||
2019-05-31 | doc/user.rst: use ".. note:" | Max Kellermann | |
2019-05-29 | config/Parser: add ParseSize() | Max Kellermann | |
Supports suffixes such as "kB" and "MB". | |||
2019-05-13 | doc/user.rst: move audio format spec to section "Global Audio Format" | Max Kellermann | |
2019-05-13 | doc/user.rst: add reference to audio_output_format | Max Kellermann | |
2019-05-13 | doc/user.rst: more markup | Max Kellermann | |
2019-05-13 | doc/user.rst: add missing space | Max Kellermann | |
2019-03-18 | doc/plugins.rst: add filter plugin reference | Max Kellermann | |