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