From 71d48452d844715146f292dcb077c0d08b05d23c Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Wed, 5 Feb 2025 09:16:26 +0100 Subject: [PATCH 1/2] [mpd] Fix bug in 28.11 (and .10?) where "mpc enable/disable" toggles Fixes #1847 --- src/mpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpd.c b/src/mpd.c index afc68b53..57de138d 100644 --- a/src/mpd.c +++ b/src/mpd.c @@ -3172,7 +3172,7 @@ mpd_command_xoutput(struct mpd_command_output *out, struct mpd_command_input *in if (ret < 0) RETURN_ERROR(ACK_ERROR_ARG, "Unknown output"); - if ((spk.selected && strcasecmp(action, "enable") == 0) || (!spk.selected && strcasecmp(action, "disable") == 0)) + if ((spk.selected && strcasecmp(action, "enableoutput") == 0) || (!spk.selected && strcasecmp(action, "disableoutput") == 0)) return 0; // Nothing to do ret = spk.selected ? player_speaker_disable(spk.id) : player_speaker_enable(spk.id); From 5cbc520712310deb0d892920590db1424258fdb4 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Wed, 5 Feb 2025 09:33:41 +0100 Subject: [PATCH 2/2] [docs] Add note that "radio_playlists" config option is for DAAP only Closes #1850 --- owntone.conf.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/owntone.conf.in b/owntone.conf.in index 8f44e30a..e05a11df 100644 --- a/owntone.conf.in +++ b/owntone.conf.in @@ -124,9 +124,10 @@ library { # hide_singles = false # Internet streams in your playlists will by default be shown in the - # "Radio" library, like iTunes does. However, some clients (like + # "Radio" library, like iTunes does. However, some DAAP clients (like # TunesRemote+) won't show the "Radio" library. If you would also like # to have them shown like normal playlists, you can enable this option. + # Note this option is only for DAAP clients (so not the web interface). # radio_playlists = false # These are the default playlists. If you want them to have other names,