]> kaliko git repositories - python-musicpd.git/blobdiff - musicpd.py
Preparing 0.4 release
[python-musicpd.git] / musicpd.py
index 6bb050990c900c6585bcb3c61ade7aa89eb3d0a2..f480acdd0f5897b91a8eae8e0783d1ba55e86fe9 100644 (file)
@@ -22,7 +22,7 @@ HELLO_PREFIX = "OK MPD "
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
-VERSION = '0.3.1b'
+VERSION = '0.4.0pr0'
 
 
 class MPDError(Exception):
@@ -131,6 +131,7 @@ class MPDClient(object):
             "searchaddpl":        self._fetch_nothing,
             "update":             self._fetch_item,
             "rescan":             self._fetch_item,
+            "readcomments":       self._fetch_object,
             # Sticker Commands
             "sticker get":        self._fetch_item,
             "sticker set":        self._fetch_nothing,
@@ -145,6 +146,7 @@ class MPDClient(object):
             # Audio Output Commands
             "disableoutput":      self._fetch_nothing,
             "enableoutput":       self._fetch_nothing,
+            "toggleoutput":       self._fetch_nothing,
             "outputs":            self._fetch_outputs,
             # Reflection Commands
             "commands":           self._fetch_list,