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