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