X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=musicpd.py;h=f4915b587442dadedccb705374a553571b8cfab0;hb=b33bea0e5a0068eda0f882ac46b9383d34037e6e;hp=008d9d8d4838539fad90031ce538d166971fe5b7;hpb=e645adfa14a04168a4d8a892e88569205f868c84;p=python-musicpd.git diff --git a/musicpd.py b/musicpd.py index 008d9d8..f4915b5 100644 --- a/musicpd.py +++ b/musicpd.py @@ -28,7 +28,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" -VERSION = '0.4.5' +VERSION = '0.5.1' #: seconds before a tcp connection attempt times out CONNECTION_TIMEOUT = 5 @@ -225,6 +225,7 @@ class MPDClient: # Database Commands "albumart": self._fetch_composite, "count": self._fetch_object, + "getfingerprint": self._fetch_object, "find": self._fetch_songs, "findadd": self._fetch_nothing, "list": self._fetch_list, @@ -264,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,