From: Kaliko Jack Date: Wed, 9 Dec 2020 13:34:20 +0000 (+0100) Subject: Add delpartition and moveoutput commands (closes #8) X-Git-Tag: v0.5.0~2 X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=3f8e5dcc2165484312d524f7ae803c3292dc7392 Add delpartition and moveoutput commands (closes #8) --- diff --git a/CHANGES.txt b/CHANGES.txt index 7a1fa44..a7583d8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,8 @@ Changes in 0.#.# UNRELEASED * Add readpicture command * Add getfingerprint command +* Add delpartition command +* Add moveoutput command * Update host and port attributes when reconnecting * Fixed albumart diff --git a/musicpd.py b/musicpd.py index 6157c10..5b2a37a 100644 --- a/musicpd.py +++ b/musicpd.py @@ -265,6 +265,8 @@ class MPDClient: "partition": self._fetch_nothing, "listpartitions": self._fetch_list, "newpartition": self._fetch_nothing, + "delpartition": self._fetch_nothing, + "moveoutput": self._fetch_nothing, # Audio Output Commands "disableoutput": self._fetch_nothing, "enableoutput": self._fetch_nothing,