From 730b855d473a373c2ad2b545ba3e01753861a747 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 23 Mar 2025 12:47:40 +0100 Subject: [PATCH] Add stickernamestypes and stickertypes commands --- CHANGES.txt | 1 + musicpd.py | 2 ++ 2 files changed, 3 insertions(+) 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, -- 2.39.5