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