]> kaliko git repositories - python-musicpd.git/blob - CHANGES.txt
More Range object test coverage
[python-musicpd.git] / CHANGES.txt
1 python-musicpd Changes List
2 ===========================
3
4 Changes in 0.9.3
5 ----------------
6
7  * Fix deprecation in pyproject.toml
8
9 Changes in 0.9.2
10 ----------------
11
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
17
18 Changes in 0.9.1
19 ----------------
20
21  * Add playlistlength command
22  * Add stickernames command
23  * Add searchcount command
24  * Improved documentation, add supported commands rtype
25
26 Changes in 0.9.0
27 ----------------
28
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
33  * Add logging
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
38
39 Changes in 0.8.0
40 ----------------
41
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
45
46 Changes in 0.7.0
47 ----------------
48
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'
52
53 Changes in 0.6.0
54 ----------------
55
56 * Add binarylimit command
57 * Add getvol 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)
64
65 Changes in 0.5.1
66 ----------------
67
68 * Clean up packaging (remove useless files and html doc)
69 * Remove bztar from sdist
70 * Switch to xztar sdist
71
72 Changes in 0.5.0
73 ----------------
74
75 * Add readpicture command
76 * Add getfingerprint command
77 * Add delpartition command
78 * Add moveoutput command
79 * Update host and port attributes when reconnecting
80 * Fixed albumart
81
82 Changes in 0.4.4
83 ----------------
84
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
91
92 Changes in 0.4.3
93 ----------------
94
95 * Use setuptools
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
101
102 Changes in 0.4.2
103 ----------------
104
105 * Add unittest (requires mock)
106 * Add mounts and neighbors commands (mount, unmount, listmounts and
107   listneighbors)
108 * Add rangeid command
109 * Add tag editing commands (addtagid and cleartagid)
110 * Add missing priority commands (prio and prioid)
111 * Add config command
112
113 Changes in 0.4.1
114 ----------------
115
116 * Fixed noidle command
117
118 Changes in 0.4.0
119 ----------------
120
121 * support range
122
123 Changes in 0.3.1 UNRELEASED
124 ---------------------------
125
126 * renamed musicpd
127 * python3 port
128 * no python2 support
129 * added searchadd and searchaddpl commands
130 * added seekcur command
131 * added client to client commands
132 * added readcomments and toggleoutput commands
133
134 Changes in 0.3.0
135 ----------------
136
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
151
152 Changes in 0.2.1
153 ----------------
154
155 * connect() no longer broken on Windows
156
157 Changes in 0.2.0
158 ----------------
159
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