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