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