From 9d698390d99effbaa041fea2ea7b76bca00c448f Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 23 Mar 2025 13:02:41 +0100 Subject: [PATCH] Add searchplaylist command --- CHANGES.txt | 1 + musicpd.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 1e5758a..39ee275 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ Changes in 0.9.2 * Add missing build-backend in pyproject.toml * Add protocol commands * Add stickernamestypes and stickertypes commands + * Add searchplaylist command Changes in 0.9.1 ---------------- diff --git a/musicpd.py b/musicpd.py index df6aaee..49d6b3f 100644 --- a/musicpd.py +++ b/musicpd.py @@ -241,6 +241,7 @@ class MPDClient: # Stored playlists # stored-playlists "listplaylist": self._fetch_list, "listplaylistinfo": self._fetch_songs, + "searchplaylist": self._fetch_songs, "listplaylists": self._fetch_playlists, "load": self._fetch_nothing, "playlistadd": self._fetch_nothing, -- 2.39.5