1. 08 Jul, 2022 7 commits
  2. 04 Jul, 2022 1 commit
  3. 01 Jul, 2022 1 commit
  4. 09 May, 2022 2 commits
  5. 26 Apr, 2022 4 commits
  6. 26 Mar, 2022 1 commit
    • Vitaly Ostrosablin's avatar
      Make volume changes to apply to disabled software mixers. · ac060889
      Vitaly Ostrosablin authored
      Move audio output state check ahead of mixer check and force volume
      applying even for disabled software mixed outputs.
      
      This fixes incorrect software mixer volume that used to occur when
      volume was changed while output being disabled.
      
      This is easily reproduced with following sequence of commands on
      multi-output software mixed MPD setup.
      
       mpc volume 38; mpc disable 3; mpc volume 88; mpc enable 3
      
      On current MPD, following commands would result in output 3 playing at
      volume 38, while all other enabled outputs would play at volume
      88. Moreover, global volume would display average of outputs real
      volumes. In my case, it's 75.
      
      After applying this patch, following commands would produce expected
      behavior. All outputs play at expected (88) volume. And volume is
      correctly displayed as 88.
      
      Closes https://github.com/MusicPlayerDaemon/MPD/issues/1423
      
      Signed-off-by: Vitaly Ostrosablin tmp6154@yandex.ru
      Signed-off-by: 's avatarVitaly Ostrosablin <tmp6154@yandex.ru>
      ac060889
  7. 16 Mar, 2022 1 commit
  8. 14 Mar, 2022 6 commits
  9. 09 Mar, 2022 1 commit
  10. 26 Jan, 2022 1 commit
  11. 01 Dec, 2021 3 commits
  12. 30 Nov, 2021 1 commit
  13. 23 Nov, 2021 1 commit
  14. 22 Nov, 2021 2 commits
  15. 19 Nov, 2021 1 commit
  16. 11 Nov, 2021 4 commits
  17. 09 Nov, 2021 1 commit
  18. 05 Nov, 2021 2 commits
    • Max Kellermann's avatar
      NEWS: fix typo · c93195c9
      Max Kellermann authored
      c93195c9
    • Max Kellermann's avatar
      Main: ignore the "pid_file" setting if started as systemd service · a4e42172
      Max Kellermann authored
      Commit 552c30ea caused problems for those people who still had a
      "pid_file" setting (even though that is obsolete with systemd),
      because now /run/mpd is owned by root:root (our mpd.service has no
      User=mpd directive, so systemd starts MPD as root).
      
      To work around this problem, and to be able to keep
      RuntimeDirectory=mpd (which solved a problem of other MPD users), the
      best compromise seems to just ignore the "pid_file" setting when it is
      of no use.
      a4e42172