]> kaliko git repositories - python-musicpd.git/blob - CHANGES.txt
Releasing 0.9.0
[python-musicpd.git] / CHANGES.txt
1 python-musicpd Changes List
2 ===========================
3
4 Changes in 0.9.0
5 ----------------
6
7  * Use right SPDX identifier for license headers
8  * mpd_version attribute init to empty string instead of None
9  * Fixed send_noidle (introduced with e8daa719)
10  * Improved Range object to deal with window parameter
11  * Add logging
12  * Switch to pyproject.toml (setuptools build system)
13  * The connect sequence raises ConnectionError only on error,
14    previously getaddrinfo or unix socket connection error raised an OSError
15  * Improved documentation, add examples
16
17 Changes in 0.8.0
18 ----------------
19
20 * Need python 3.6 minimum (modernize code)
21 * Add context management for MPDClient instance (Thanks Wonko der Verständige)
22 * Switch to SPDX for license header
23
24 Changes in 0.7.0
25 ----------------
26
27 * Add socket timeout (disabled by default)
28 * MPD_TIMEOUT is set for both tcp and unix sockets
29 * Raises an exception if command contains '\n'
30
31 Changes in 0.6.0
32 ----------------
33
34 * Add binarylimit command
35 * Add getvol command
36 * Honor MPD_TIMEOUT environment variable
37 * Default connection timeout is now 30s (previously 5s)
38 * Add abstract unix socket support
39 * Add tests, improved coverage
40 * Switch back to gztar (even though official python doc mention xztar, PEP 527
41   considers only gztar and zip)
42
43 Changes in 0.5.1
44 ----------------
45
46 * Clean up packaging (remove useless files and html doc)
47 * Remove bztar from sdist
48 * Switch to xztar sdist
49
50 Changes in 0.5.0
51 ----------------
52
53 * Add readpicture command
54 * Add getfingerprint command
55 * Add delpartition command
56 * Add moveoutput command
57 * Update host and port attributes when reconnecting
58 * Fixed albumart
59
60 Changes in 0.4.4
61 ----------------
62
63 * Add tcp socket timeout, exposed in musicpd.CONNECTION_TIMEOUT, defaults to 5s
64   (Thanks to Bart Van Loon)
65 * Add partition commands (Thanks Naglis Jonaitis)
66 * Add listfiles command
67 * Add tagtypes (disable|enable|clear|all) commands
68 * Add albumart command
69
70 Changes in 0.4.3
71 ----------------
72
73 * Use setuptools
74 * Add sphinx documentation
75 * Add sensible defaults and honor environment variables
76   Use MPD_HOST/MPD_PORT (honor password setting in MPD_HOST)
77   If MPD_HOST is not set, tries to find a socket in
78   ${XDG_RUNTIME_DIR:-/run}/mpd/socket
79
80 Changes in 0.4.2
81 ----------------
82
83 * Add unittest (requires mock)
84 * Add mounts and neighbors commands (mount, unmount, listmounts and
85   listneighbors)
86 * Add rangeid command
87 * Add tag editing commands (addtagid and cleartagid)
88 * Add missing priority commands (prio and prioid)
89 * Add config command
90
91 Changes in 0.4.1
92 ----------------
93
94 * Fixed noidle command
95
96 Changes in 0.4.0
97 ----------------
98
99 * support range
100
101 Changes in 0.3.1 UNRELEASED
102 ---------------------------
103
104 * renamed musicpd
105 * python3 port
106 * no python2 support
107 * added searchadd and searchaddpl commands
108 * added seekcur command
109 * added client to client commands
110 * added readcomments and toggleoutput commands
111
112 Changes in 0.3.0
113 ----------------
114
115 * added replay_gain_mode and replay_gain_status commands
116 * added mixrampdb and mixrampdelay commands
117 * added findadd and rescan commands
118 * added decoders command
119 * changed license to LGPL
120 * added sticker commands
121 * correctly handle errors in command lists (fixes a longstanding bug)
122 * raise IteratingError instead of breaking horribly when called wrong
123 * added fileno() to export socket FD (for polling with select et al.)
124 * asynchronous API (use send_<cmd> to queue, fetch_<cmd> to retrieve)
125 * support for connecting to unix domain sockets
126 * added consume and single commands
127 * added idle and noidle commands
128 * added listplaylists command
129
130 Changes in 0.2.1
131 ----------------
132
133 * connect() no longer broken on Windows
134
135 Changes in 0.2.0
136 ----------------
137
138 * support for IPv6 and multi-homed hostnames
139 * connect() will fail if already connected
140 * commands may now raise ConnectionError
141 * addid and update may now return None