1 python-musicpd Changes List
2 ===========================
7 * Fix deprecation in pyproject.toml
12 * Add missing build-backend in pyproject.toml
13 * Add protocol commands
14 * Add stickernamestypes and stickertypes commands
15 * Add searchplaylist command
16 * Fixed deprecation in pyproject.toml
21 * Add playlistlength command
22 * Add stickernames command
23 * Add searchcount command
24 * Improved documentation, add supported commands rtype
29 * Use right SPDX identifier for license headers
30 * mpd_version attribute init to empty string instead of None
31 * Fixed send_noidle (introduced with e8daa719)
32 * Improved Range object to deal with window parameter
34 * Switch to pyproject.toml (setuptools build system)
35 * The connect sequence raises ConnectionError only on error,
36 previously getaddrinfo or unix socket connection error raised an OSError
37 * Improved documentation, add examples
42 * Need python 3.6 minimum (modernize code)
43 * Add context management for MPDClient instance (Thanks Wonko der Verständige)
44 * Switch to SPDX for license header
49 * Add socket timeout (disabled by default)
50 * MPD_TIMEOUT is set for both tcp and unix sockets
51 * Raises an exception if command contains '\n'
56 * Add binarylimit command
58 * Honor MPD_TIMEOUT environment variable
59 * Default connection timeout is now 30s (previously 5s)
60 * Add abstract unix socket support
61 * Add tests, improved coverage
62 * Switch back to gztar (even though official python doc mention xztar, PEP 527
63 considers only gztar and zip)
68 * Clean up packaging (remove useless files and html doc)
69 * Remove bztar from sdist
70 * Switch to xztar sdist
75 * Add readpicture command
76 * Add getfingerprint command
77 * Add delpartition command
78 * Add moveoutput command
79 * Update host and port attributes when reconnecting
85 * Add tcp socket timeout, exposed in musicpd.CONNECTION_TIMEOUT, defaults to 5s
86 (Thanks to Bart Van Loon)
87 * Add partition commands (Thanks Naglis Jonaitis)
88 * Add listfiles command
89 * Add tagtypes (disable|enable|clear|all) commands
90 * Add albumart command
96 * Add sphinx documentation
97 * Add sensible defaults and honor environment variables
98 Use MPD_HOST/MPD_PORT (honor password setting in MPD_HOST)
99 If MPD_HOST is not set, tries to find a socket in
100 ${XDG_RUNTIME_DIR:-/run}/mpd/socket
105 * Add unittest (requires mock)
106 * Add mounts and neighbors commands (mount, unmount, listmounts and
108 * Add rangeid command
109 * Add tag editing commands (addtagid and cleartagid)
110 * Add missing priority commands (prio and prioid)
116 * Fixed noidle command
123 Changes in 0.3.1 UNRELEASED
124 ---------------------------
129 * added searchadd and searchaddpl commands
130 * added seekcur command
131 * added client to client commands
132 * added readcomments and toggleoutput commands
137 * added replay_gain_mode and replay_gain_status commands
138 * added mixrampdb and mixrampdelay commands
139 * added findadd and rescan commands
140 * added decoders command
141 * changed license to LGPL
142 * added sticker commands
143 * correctly handle errors in command lists (fixes a longstanding bug)
144 * raise IteratingError instead of breaking horribly when called wrong
145 * added fileno() to export socket FD (for polling with select et al.)
146 * asynchronous API (use send_<cmd> to queue, fetch_<cmd> to retrieve)
147 * support for connecting to unix domain sockets
148 * added consume and single commands
149 * added idle and noidle commands
150 * added listplaylists command
155 * connect() no longer broken on Windows
160 * support for IPv6 and multi-homed hostnames
161 * connect() will fail if already connected
162 * commands may now raise ConnectionError
163 * addid and update may now return None