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