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