Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-21 | protocol: 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-20 | doc/mpd.conf.5.rst: updated ReplayGain website links | Max 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-19 | doc/user.rst: require Android NDK r22 | Max Kellermann | |
2021-01-19 | doc/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-18 | doc/protocol.rst: document that tag changed trigger "player" idle event | Max Kellermann | |
2020-12-16 | doc/protocol.rst: fix MPD version on `oneshot` | Itai Y. Efrat | |
2020-12-16 | doc/protocol.rst: fix mistake in footnotes | Itai Y. Efrat | |
2020-12-15 | doc/protocol.rst: ensure all commands have targets | EdJoPaTo | |
2020-12-14 | doc/protocol.rst: Add missing "originaldate" to the list of supported tags | kaliko | |
2020-11-11 | doc/plugins.rst: add missing list-table declaration | Max Kellermann | |
2020-11-10 | doc/mpd.1.rst: Update config file documentation. | kaliko | |
Have similar information about config file in both mpd.1 ans mpd.conf.5 | |||
2020-11-10 | doc/mpd.conf.5.rst: Update mpd.conf manual | kaliko | |
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-10 | doc/mpdconf.example: add database exemples | kaliko | |
2020-11-10 | doc/mpdconf.example: add available log levels | kaliko | |
2020-11-10 | doc/mpdconf.example: Strip trailing space, fixed typo. | kaliko | |
2020-11-10 | doc/plugins.rst: add DSD spec links | Max Kellermann | |
2020-11-06 | increment version number to 0.22.4 | Max Kellermann | |
2020-11-04 | increment version number to 0.22.3 | 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/plugins.rst: more markup | Max Kellermann | |
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-27 | increment version number to 0.22.2 | Max Kellermann | |
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-30 | doc/meson.build: check both html_manual and manpages | Max Kellermann | |
Closes https://github.com/MusicPlayerDaemon/MPD/issues/960 | |||
2020-09-23 | increment version number to 0.22.1 | 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-23 | doc: improve manpage markup | Max Kellermann | |
2020-09-23 | doc/meson.build: kludge to fix manpage installation directory | Max Kellermann | |
Ugly workaround for https://github.com/mesonbuild/meson/issues/1550 | |||
2020-09-23 | LogLevel: rename DEFAULT to NOTICE | Max 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-23 | LogInit: provide mappings for LogLevel::{ERROR,WARNING} | Max Kellermann | |
2020-09-23 | LogInit: 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-23 | doc: rewrite the log_level documentation | Max Kellermann | |
2020-09-22 | doc/user.rst: change C++14 to C++17 | Max Kellermann | |
2020-09-22 | doc/protocol.rst: improve "pause" documentation | Max 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-04 | Merge branch 'v0.21.x' into master | Max Kellermann | |
2020-09-04 | Support 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-21 | Merge branch 'document-no-config-option' of git://github.com/naglis/MPD | Max Kellermann | |
2020-08-21 | doc/mpd.1.rst: document --no-config option | Naglis Jonaitis | |
2020-08-21 | Merge branch 'use-stderr-option-in-docs' of git://github.com/naglis/MPD | Max Kellermann | |
2020-08-21 | doc/user.rst: use --stderr option in examples | Naglis Jonaitis | |
--stdout was renamed to --stderr in 7261739526. | |||
2020-08-21 | doc/mpd.1.rst: fix typo | Naglis Jonaitis | |
2020-08-14 | doc/meson.build: let custom_target() install manpages | Max 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-14 | doc/meson.build: use install_man() | Max Kellermann | |
2020-08-14 | Convert raw manpages to reStructured text | kaliko | |
Build with `rst2man mpd.1.rst mpd.1` | |||
2020-08-14 | meson_options.txt: add option html_manual | Max Kellermann | |