From: Kaliko Jack Date: Sun, 23 Mar 2025 11:42:54 +0000 (+0100) Subject: Add protocol commands X-Git-Tag: v0.9.2~4 X-Git-Url: http://git.kaliko.me/?a=commitdiff_plain;h=9424e553f3a35a6c2475698423cbdae34423f772;p=python-musicpd.git Add protocol commands --- diff --git a/CHANGES.txt b/CHANGES.txt index c2da465..a082fa4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,6 +5,7 @@ Changes in 0.9.2 ---------------- * Add missing build-backend in pyproject.toml + * Add protocol commands Changes in 0.9.1 ---------------- diff --git a/musicpd.py b/musicpd.py index 2e82d4a..64c57d0 100644 --- a/musicpd.py +++ b/musicpd.py @@ -293,6 +293,12 @@ class MPDClient: "tagtypes enable": self._fetch_nothing, "tagtypes clear": self._fetch_nothing, "tagtypes all": self._fetch_nothing, + "protocol": self._fetch_list, + "protocol disable": self._fetch_nothing, + "protocol enable": self._fetch_nothing, + "protocol clear": self._fetch_nothing, + "protocol all": self._fetch_nothing, + "protocol available": self._fetch_list, # Partition Commands # partition-commands "partition": self._fetch_nothing, "listpartitions": self._fetch_list,