[project @ 5851]
[audio-mpd.git] / Changelog
blobd0fceb0c1362840b7b28a7761b09a19b7fed1925
1 High-level changelog
2 ====================
4 0.17.x  introducing AM::Playlist
5 0.16.x  utf-8 support + introducing mpd-dynamic script
6 0.15.x  introducing AM::Collection
7 0.14.x  introducing AM::Items
8 0.13.x  rewrote connection mechanism
9 0.12.4  adoption by jerome quelin & quick fixes
10 0.12.0  adoption by nicholas j humphrey & first release on cpan
11 0.10.0  adapting to evolving mpd
12 [...]   ? (no information)
13 0.1.0   initial release by tue abrahamsen
17 Low-level changelog
18 ===================
20 0.17.0 Fri Apr  6 16:54:07 CEST 2007
21  - introducing AM::Playlist for better segregation of playlist handling
22  - completed tests to cover all playlist operations, AM is now 95.1% covered
26 0.16.2 Tue Apr  3 19:02:29 CEST 2007
27  - utf-8 support generalized
29 0.16.1 Mon Apr  2 18:26:17 CEST 2007
30  - new internal _cooked_command_*() methods, allowing for better code
31    factorization - and thus, better code coverage (100% achieved for
32    am::collection, 89.3% overall)
34 0.16.0 Thu Mar 29 19:04:34 CEST 2007
35  - script to listen your music endlessly: mpd-dynamic
37  **
39 0.15.4 Tue Mar 27 18:42:58 CEST 2007
40  - AM::Test more robust regarding fake mpd startup
41  - AM::Test quicker if no tests performed
42  - new methods in AM::Collection:
43     . songs_with_filename_partial()
44     . songs_by_artist_partial()
45     . songs_from_album_partial()
46     . songs_with_title_partial()
48 0.15.3 Wed Mar 21 18:08:06 CET 2007
49  - requiring perl 5.8.x minimum
51 0.15.2 Tue Mar 20 17:24:59 CET 2007
52  - fixed bug #25553 (on rt.cpan.org)
54 0.15.1 Sun Mar 18 19:06:57 CET 2007
55  - added Readonly as prereq
57 0.15.0 Sat Mar 17 17:49:50 CET 2007
58  - implementation of Audio::MPD::Collection: this class will act as the entry
59    point to look up in mpd's collection
60  - thus, following AM methods removed (see AM::Collection for the replacement):
61    . list()
62    . listall()
63    . listallinfo()
64    . lsinfo()
65    . search()
66    . searchadd()
67  - now that AM::Collection is here, AM's test coverage is up to 82.5% \o/
71 0.14.0 Sat Mar 17 13:29:57 CET 2007
72  - implementation of Audio::MPD::Item: instead of returning some random hash
73    reference, Audio::MPD now returns AMI objects.
74  - renamed methods:
75    . get_current_song()      -> current()
76    . get_song_info()         -> song()
77    . get_song_info_from_id() -> songid()
78    . get_title()             -> AMI::Song::as_string()
79    . pl_changes()            -> pl_changes()
80  - pl_changes() now return an array ref instead of a hash with positions as key
81  - test coverage of Audio::MPD up to 66.5%
85 0.13.5 Thu Mar  8 20:22:32 CET 2007
86  - get_urlhandlers() renamed to urlhandlers()
87  - seekid() defaults to current song
88  - pod enhancement
89  - test coverage of Audio::MPD up to 36.1%
91 0.13.4 Tue Mar  6 20:05:21 CET 2007
92  - new method password() to change mpd password
93  - bug fix in deleteid() (was issuing "delete") and crop() (should be done in
94    reverse order to keep mpd happy)
95  - test coverage of Audio::MPD up to 36.1%
97 0.13.3 Sun Mar  4 19:30:24 CET 2007
98  - bug fix on volume() method
100 0.13.2 Sun Mar  4 10:17:50 CET 2007
101  - Makefile.PL now uses ExtUtils::MakeMaker instead of perverting Module::Builder
102  - bugfix in play() / playid()
103  - testing Audio::MPD::Status up to 100%
104  - testing Audio::MPD = 24.5%
106 0.13.1
107  - status() now returns an Audio::MPD::Status object, for better encapsulation
108  - added dependancy on Class::Accessor
110 0.13.0 Fri Mar  2 12:55:38 CET 2007
111  - connection completely reworked to get rid of the most obvious problems
112    note: this does not mean that we're completely clean, but at least it's
113          better than what it was.
114  - is_connected() and close_connection() are no more needed, and thus removed
115  - error handling is now done via die - get_error() is gone
116  - play(), delete(), move(), get_song_info(), seek() & swap() do not accept a
117    third fromid parameter anymore
118  - pause() now toggle pause status if no parameter is sent
119  - renamed methods:
120     . kill_mpd()           -> kill()
121     . get_server_version() -> version()
122     . set_fade()           -> fade()
123     . set_random()         -> random()
124     . set_repeat()         -> repeat()
125     . set_volume()         -> volume()
126  - new methods: stats(), status()
127  - delete() and deleteid() can take more than one song to delete
131 0.12.4 Thu Jan 25 21:52:05 CET 2007 [JQ]
132  - grouped pod in sections for easier reading
133  - corrected pod typos here and there
134  - added contact information
135  - new tests for pod correctness and pod coverage
136  - added missing pod for 3 subs
138 0.12.3 (Nicholas J Humfrey)
139  - Added Makefile.PL support
141 0.12.2 (Nicholas J Humfrey)
142  - Fixed bug in parsing parmeters in pause()
144 0.12.0-rc7+njh (Nicholas J Humfrey)
145  - Moved $sock and @playlists into object so that you can talk to
146    multiple MPDs in the same script.
147  - Added Module::Build based build/install system
148  - Changed namespace to Audio::MPD so that it can be added to CPAN
149  - Documented class
150  - Changing 'END' handler to 'DESTROY'
151  - Changed <$sock> to $sock->getline
152  - Changed print $sock "foo" to $sock->print("foo")
153  - Corrected pause() so that it didn't use depricated lack of argument
154  - Added optional path parameter to updatedb()
156 0.12.0-rc7
157  - better password-handling, including possibility to connect to
158  password@mpdhost (William Pettersson)
159  - made get_time_info work, and added more to the output
160  - made ALLOW_TOGGLE_STATES 1 by default
162 0.12.0-rc6
163  - get_song_info() now uses current song, if none is specified
164  - mpc.pl now says that 'seek' is in seconds instead of percentage
165  - Fixed bug in close()
166  - Removed warn() in _get_playlist()
167  - Made MPD.pm more backwards compatible (Martin Stolle)
168  - Added get_current_song_info() (Martin Stolle)
169  - Made internal sub _process_feedback() more robust (Martin Stolle)
170  - Update get_title() to be more flexible (Martin Stolle)
172 0.12.0-rc5 (No more fires!-release)
173  - Fixed bug in save() (Laurent Monrouzies)
174  - Removed annoying line in set_random() (Dale Francum)
175  - Added get_time_info (Thanks Dale Francum)
176  - Removed 'use Data::Dumper;' from mpc.pl and MPD.pm
177  - Added support for new MPD-functions:
178  'outputs', 'enableoutputs', 'disableoutputs', 'commands' and 'notcommands'
179  - Fixed bug in get_title() where old title would get returned
180  - Fixed bug where playlist was not updated (hannes)
181  - Added playlist_changes() so clients can update their playlist (hannes)
182  - Updated _get_playlist() (hannes)
184 0.12.0-rc4
185  - Old bug where $playlist[0] contained undef removed again :)
186  - crop() function added (removes all songs but the playing)
187  - Fixed some bugs and errorhandling in mpc.pl
189 0.12.0-rc3
190  - (almost) total rewrite of module
192 0.12.0-rc2
193  - Changed default port to 6600
194  - Removed UNPAUSE_ON_PLAY setting, as this is now default in MPD
195  - Added urlhandlers()
196  - Fixed seek()
197  - Small bugfixes
198  - Bugfixes in mpc.pl (playlist() and volume())
199  - Updated ACK-error handling (geterror() changed, seterror() added)
200  - Add 'plchanges'-support in getplaylist()
201  - Added $config{'ALLOW_TOGGLE_STATES'}
202  - Added deleteid() / moveid() / playid() / seekid() / swapid()
203  - Removed deprecated 'unpause-on-play'-code
207 0.10.0-rc1
208  - No changes
210 0.10.0-alpha7
211  - Major speedup. Playlist was fetched way too many times
212  - Another major speedup. Playlist is now only fetched when needed!
213  - Added %config, for changing default behavior
214  - Old $number-- in play() was removed.
215  - Stupid bug where last song was not saved in @playlist removed
216  - Rewrote searchadd() to utilize 'command_list_begin'/'command_list_end'
217    (Much faster now)
218  - Fixed bug where search() didn't return the last song found
219  - Small rewrite in setrepeat() and setrandom()
220  - Typos
221  - Fixed bugs and bugs and bugs and bugs
222  - Added a destructor
223  - Rewrote all pod-documentation
224  - Tabindented all
225  - Removed 'unfinished subs' and 'todo'
226  - Probably more stuff
228 0.10.0-alpha6
229  - Changed @playlist syntax ($pl[song-number]{info-to-get} eg. $pl[42]{'file'})
230  - Removed deprecated getsonginfo()
231  - Moved gettitle() and gettimeformat() to 'Custom subs'
232  - Altered gettitle()'s errorhandling a bit
234 0.10.0-alpha5
235  - Made getsonginfo() return a hash instead of an array
236  - Streamlined add()/delete()/move()/swap()
237  - Made (almost) all functions undef on succes and 1 on error. Last error can
238    be retrieved by $self->geterror()
239  - search() now accepts filenames too (thanks sbh)
240  - delete() can take ranges (thanks sbh)
241  - Added the 'Custom functions'-part
242  - Added searchadd() (thanks sbh)
243  - Repaired add()
244  - Added playlist()
246 0.10.0-alpha4
247  - Fixed bug where last song on playlist was not present
248  - Made getstatus() call playlistinfo if playlist had changed
249  - Implemented getsonginfo() for returning information from @playlist (Thanks msells)
250  - Added $self->{module_version}
251  - Empties @playlist, when renewing it
252  - A bit of optimizing and cleanup around getplaylist (Thanks msells)
254 0.10.0-alpha3
255  - Fixed error in add()-comments
256  - Moved $host and $port parameter to new() - It finally works!
258 0.10.0-alpha2
259  - Added nextinfo() and changed lsinfo() and listallinfo()
260  - Changed version-numbering to fit MPD standards
265  - Initial release