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