From: Kaliko Jack Date: Sun, 23 Mar 2025 11:47:40 +0000 (+0100) Subject: Add stickernamestypes and stickertypes commands X-Git-Tag: v0.9.2~3 X-Git-Url: http://git.kaliko.me/?a=commitdiff_plain;h=730b855d473a373c2ad2b545ba3e01753861a747;p=python-musicpd.git Add stickernamestypes and stickertypes commands --- diff --git a/CHANGES.txt b/CHANGES.txt index a082fa4..1e5758a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,7 @@ Changes in 0.9.2 * Add missing build-backend in pyproject.toml * Add protocol commands + * Add stickernamestypes and stickertypes commands Changes in 0.9.1 ---------------- diff --git a/musicpd.py b/musicpd.py index 64c57d0..df6aaee 100644 --- a/musicpd.py +++ b/musicpd.py @@ -282,6 +282,8 @@ class MPDClient: "sticker list": self._fetch_list, "sticker find": self._fetch_songs, "stickernames": self._fetch_list, + "stickertypes": self._fetch_list, + "stickernamestypes": self._fetch_list, # Connection settings # connection-settings "close": None, "kill": None,