From: Kaliko Jack Date: Sun, 23 Mar 2025 12:02:41 +0000 (+0100) Subject: Add searchplaylist command X-Git-Tag: v0.9.2~2 X-Git-Url: http://git.kaliko.me/?a=commitdiff_plain;h=9d698390d99effbaa041fea2ea7b76bca00c448f;p=python-musicpd.git Add searchplaylist command --- 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,