]> kaliko git repositories - python-musicpd.git/commitdiff
Add delpartition and moveoutput commands (closes #8)
authorKaliko Jack <kaliko@azylum.org>
Wed, 9 Dec 2020 13:34:20 +0000 (14:34 +0100)
committerKaliko Jack <kaliko@azylum.org>
Wed, 9 Dec 2020 13:34:20 +0000 (14:34 +0100)
CHANGES.txt
musicpd.py

index 7a1fa44693780da399ac1705290524b5069d3d72..a7583d8c1eae643be32d6c5d4b94a1b00803ab45 100644 (file)
@@ -6,6 +6,8 @@ Changes in 0.#.# UNRELEASED
 
 * Add readpicture command
 * Add getfingerprint command
 
 * Add readpicture command
 * Add getfingerprint command
+* Add delpartition command
+* Add moveoutput command
 * Update host and port attributes when reconnecting
 * Fixed albumart
 
 * Update host and port attributes when reconnecting
 * Fixed albumart
 
index 6157c103b6b7b2192391c3ea37a2255b9ff601a6..5b2a37a847450f19d8bb5cab060d0b8a61f860cb 100644 (file)
@@ -265,6 +265,8 @@ class MPDClient:
             "partition":          self._fetch_nothing,
             "listpartitions":     self._fetch_list,
             "newpartition":       self._fetch_nothing,
             "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,
             # Audio Output Commands
             "disableoutput":      self._fetch_nothing,
             "enableoutput":       self._fetch_nothing,