]> kaliko git repositories - python-musicpd.git/commitdiff
Releasing 0.9.2 master v0.9.2
authorKaliko Jack <kaliko@azylum.org>
Sun, 23 Mar 2025 12:30:55 +0000 (13:30 +0100)
committerKaliko Jack <kaliko@azylum.org>
Sun, 23 Mar 2025 12:30:55 +0000 (13:30 +0100)
doc/source/_commands.rst
musicpd.py

index b145a92eab5fc1d0b1dd406ec98d5a5e1ff84b8e..1f0b5b9df54d6b0a6b232a74d6de6c27253627c2 100644 (file)
@@ -1,4 +1,4 @@
-Below the commands list last updated for v0.9.1.
+Below the commands list last updated for v0.9.2.
 
 Querying MPD’s status
 ^^^^^^^^^^^^^^^^^^^^^
@@ -79,6 +79,7 @@ Protocol documentation: `Stored playlists <https://mpd.readthedocs.io/en/latest/
 
 * **listplaylist** -> list
 * **listplaylistinfo** -> list[dict]
+* **searchplaylist** -> list[dict]
 * **listplaylists** -> dict
 * **load** -> None
 * **playlistadd** -> None
@@ -135,6 +136,8 @@ Protocol documentation: `Stickers <https://mpd.readthedocs.io/en/latest/protocol
 * **sticker list** -> list
 * **sticker find** -> list[dict]
 * **stickernames** -> list
+* **stickertypes** -> list
+* **stickernamestypes** -> list
 
 Connection settings
 ^^^^^^^^^^^^^^^^^^^
@@ -149,6 +152,12 @@ Protocol documentation: `Connection settings <https://mpd.readthedocs.io/en/late
 * **tagtypes enable** -> None
 * **tagtypes clear** -> None
 * **tagtypes all** -> None
+* **protocol** -> list
+* **protocol disable** -> None
+* **protocol enable** -> None
+* **protocol clear** -> None
+* **protocol all** -> None
+* **protocol available** -> list
 
 Partition Commands
 ^^^^^^^^^^^^^^^^^^
index 49d6b3f2893d9150c4c21a16c2fa2fb9529017e5..af497c15eca0bb8df11db79ac5ca4656cb97c1bf 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# SPDX-FileCopyrightText: 2012-2024  kaliko <kaliko@azylum.org>
+# SPDX-FileCopyrightText: 2012-2025  kaliko <kaliko@azylum.org>
 # SPDX-FileCopyrightText: 2021       Wonko der Verständige <wonko@hanstool.org>
 # SPDX-FileCopyrightText: 2019       Naglis Jonaitis <naglis@mailbox.org>
 # SPDX-FileCopyrightText: 2019       Bart Van Loon <bbb@bbbart.be>
@@ -19,7 +19,7 @@ ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
 #: Module version
-VERSION = '0.9.2.dev1'
+VERSION = '0.9.2'
 #: Seconds before a connection attempt times out
 #: (overriden by :envvar:`MPD_TIMEOUT` env. var.)
 CONNECTION_TIMEOUT = 30