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