From 9424e553f3a35a6c2475698423cbdae34423f772 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 23 Mar 2025 12:42:54 +0100 Subject: [PATCH] Add protocol commands --- CHANGES.txt | 1 + musicpd.py | 6 ++++++ 2 files changed, 7 insertions(+) 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, -- 2.39.5