]> kaliko git repositories - mpd-sima.git/blob - doc/Changelog
Use last track in queue instead of currently played
[mpd-sima.git] / doc / Changelog
1 sima v0.12.0
2
3  * Major refactoring
4  * Add a setup.py, got rid of the Makefile.
5  * Switched to Python3 (>=3.2)
6  * Depends on requests (http client)
7  * Depends on python-musicpd (py3k port of python-mpd)
8    configuration file change
9    internal database remains the same
10  * Temporarily removed userdb feature
11  * Base artist for similarity is the last track queued
12
13 -- kaliko jack <kaliko@azylum.org> UNRELEASED
14
15
16 sima v0.11.0
17
18  * straight forward py3k conversion from v0.10.0
19
20 -- kaliko jack <kaliko@azylum.org> UNRELEASED
21
22
23 sima v0.10.0
24
25  * Improved album detection (especially multi-artists album)
26  * Controls conf file is readable at startup
27  * Complete rewrite of MPD client
28
29 -- kaliko jack <kaliko@azylum.org>  Wed, 26 Sep 2012 18:56:57 +0200
30
31
32 sima v0.9.2
33
34  * Fixed Makefile, thanks Artur Frysiak (fixes #2849 #2848)
35
36 -- kaliko jack <kaliko@azylum.org>  Sun, 26 Feb 2012 22:06:27 +0100
37
38
39 sima v0.9.1
40
41  * Fixed an issue in idle implementation
42
43 -- kaliko jack <kaliko@azylum.org>  Fri, 24 Feb 2012 12:04:39 +0100
44
45
46 sima v0.9.0
47
48  * New CLI option --create-db
49  * Option main_loop_time removed, use of idle makes it useless
50  * New config file option "dynamic" (fixes #2593)
51
52  Refactoring:
53  * Start player abstraction, new MPD class (fixes #2418)
54  * Use idle MPD command, needs python-mpd >= 0.3
55
56  Bugs fix:
57  * PID file creation now respects system umask (fixes #2368)
58  * Avoid to queue twice the same album (fixes #2595)
59  * Empty password does not trigger auth attempt (fixes #2543)
60  * Fixed --var_dir option, thanks Artur Frysiak (fixes #2796)
61
62  Minor changes:
63  * Improved execution time in tracks history look up mainly.
64  * Switch to python-daemon 0.4
65
66 -- kaliko jack <kaliko@azylum.org>  Fri, 10 Feb 2012 11:31:57 +0100
67
68
69 sima v0.8.0
70
71  * New CLI option "--daemon" to run as a daemon
72
73  * Abandoned compatibility with python 2.5 (urllib2.urlopen timeout)
74  * Add daemon cli option to daemonize the process (closes #616)
75  * Add a Makefile (install, uninstall targets) following GNU standards.
76  * Refactored queue_mode method, thanks MsieurHappy ;)
77  * Moved Track class to separate file.
78  * Reduce memory footprint (better simafm cache handling).
79
80  * Fixed a bug in database management, cleaning database performs better
81
82 -- kaliko jack <kaliko@azylum.org>  Sun, 08 May 2011 14:06:22 +0200
83
84
85 sima v0.7.2
86
87   * Fixes a bug introduced fixing #2113, history was no longer honored!
88
89 -- kaliko jack <kaliko@azylum.org>  Sun, 30 Jan 2011 10:54:53 +0100
90
91
92 sima v0.7.1
93
94  * Add Makefile from 0.8 dev branch
95  * Fixes #2113
96  * Fixes #2091
97
98 -- kaliko jack <kaliko@azylum.org>  Sat, 22 Jan 2011 09:17:18 +0100
99
100
101 sima v0.7.0
102
103  * Stall queueing when MPD is in "single" or "repeat" mode (closes #1607)
104  * No longer need to restart MPD_sima when MPD database has been updated, it
105    was necessary to have new entries to appear in MPD_sima (closes #1719).
106  * New database version, upgraded at first start (back up done in sima.db.0.6)
107  * Uses SQLite for history. Play history always saved, not anymore optional.
108  * simadb_cli uses MPD_HOST/MPD_PORT environment variables
109  
110  * New mpd_sima CLI option --var_dir to change default ${XDG_DATA_HOME}
111    Allows to launch the script as a "system service" (closes #1738)
112  
113  Bugs:
114  * Autoqueue not anymore stall when started without internet access (closes
115    #1568 and #1695)
116  * Fixed a bug with MPD_(HOST|PORT), env. var. only used when no host/port are
117    set in the config file.
118  
119  Configuration file changes:
120  * New "history_duration" option
121  * Remove "history" & "history_length" options, replace by "history_duration"
122  * New "queue" option
123  * Remove "top_tracks" option, now use "queue" option with "top" value.
124  * New consume option (closes #1576)
125  * New queue mode "album" (closes #1008)
126  * New option "album_to_queue" to set how many albums to queue
127  * New option "single_album" allowing to force queuing track from different
128    albums, for instance it'll avoid to end up playing a whole OST.
129
130  (cf. <doc/examples/all_settings.cfg> for all options available)
131
132 -- kaliko jack <kaliko@azylum.org>  Sat, 18 Dec 2010 12:11:12 +0100
133
134
135 sima v0.6.0
136
137  * Use of SQLite (closes #838)
138  * [simadb_cli] new command line interface to edit sima.db (SQLite database)
139  * [mpd_sima.py] New command line option to load a specific configuration file
140  * Removed pyscrobbler module, now uses SimaFM (closes #741)
141  * Cache is no longer managed as it was (because of SimaFM), it isn't
142    possible to save it (advanced "cache" option removed).
143    last.fm request caching is still enabled though.
144    Saving last.fm request to file is milestoned 0.6.1
145  * Create documentation (docbook -> {troff,pdf,(x)html})
146  * Convert to unicode all utf-8/legacy code (closes #839)
147  * Re-Licenced the code under GNU GPL.
148
149 -- kaliko jack <kaliko@azylum.org>  Mon, 10 May 2010 19:40:10 +0200
150
151
152 sima v0.5.2
153
154  * New fuzzy string matching dedicated to artist names (closes #686)
155  * uses optparse instead of getopt (closes #834)
156  * now sets options with built-in default, then configuration file and finally
157    command line.
158  * Fixes the “deprecated 'md5'” warning in audioscrobbler.py with patch
159    provided in bug report #11 (closes #1144) –  cf. pyscrobbler online:
160    http://code.google.com/p/pyscrobbler
161
162 -- kaliko jack <kaliko@azylum.org>  Tue, 16 Mar 2010 14:01:22 +0100
163
164
165 sima v0.5.1
166
167  * No longer uses/writes a default conf file in ~/.config/mpd_sima (or XDG
168    default), MPD_HOST is used if no conf file is present.
169  * replace exhaustive loops by generator
170  * clean up
171
172 -- kaliko jack <kaliko@azylum.org>  Thu, 26 Nov 2009 10:13:08 +0100
173
174
175 sima v0.5.0
176
177  * Add option to play only most popular songs from an artist (closes #739).
178  * Now prefer non played over already played artist is possible (closes #774)
179  * Use of %-age of similarity to get the list of similar (closes #740).
180  * nearly all Unicode (closes #742).
181  * Using dequeu object => ** New history/cache/user_db formats. **
182  * Heavy refactoring, new Track object.
183  * Improved fuzzy search for artists in MPD library (using difflib/levenshtein)
184  * Log to file within python script (closes #815), add --log=<file> option.
185  * Removed bashism & improved portability in shell launcher, thanks ksh@vim-fr ;)
186
187 -- kaliko jack <kaliko@azylum.org>  Sun, 25 Oct 2009 12:02:02 +0100
188
189
190 sima v0.4.0
191
192  * Add option to play only most popular songs from an artist
193  * Better list of similar artists thanks to %-age of similarity… hopefully
194  * Unicode !!!!
195
196 -- kaliko jack Unreleased / abandoned dev branch
197
198
199 sima v0.3.0
200
201  * New bash wrapper launch.sh to execute the script
202  * User's database for similar artists through a new conf file user_db_cfg.
203    Refer to examples for syntax.
204  * check playlist queue to add tracks, not only history.
205  * Rename history to history.pkl
206  * add new command line options, help and version.
207  * now look for MPD_HOST MPD_PORT env variable to create default conf file
208  * run main loop even if the same track is playing, hence MPD_sima will keep
209    adding new tracks even if the same track is still playing and stops only if
210    the target is reached (ie. queue_length)
211
212 -- kaliko jack <kaliko@azylum.org>  Tue, 28 Jul 2009 18:10:09 +0200
213
214
215 sima v0.2.0
216
217  * WARNING: Moved to python-mpd instead of python-mpdclient2
218  * Add cache for last.fm request
219  * Possibility to save cache to file (new option in mpd_sima.cfg)
220  * new src directory layout
221  * Improved log output formatting
222  * Imroved code & removed old unused method
223  * Controls availability of commands right after conn/auth
224  * New pyscroobler version (revision 5), fix bug with slash in names.
225
226 -- kaliko jack <kaliko@azylum.org>  Fri, 12 Jun 2009 18:10:47 +0200
227
228
229 sima v0.1.1 (first upgrade)
230
231   * HEAVY refactoring to improve coding style (thanks pylint).
232   * intercept audioScrobbler server connexion errors (no longer stops
233     mpd_sima). Issue/bug reported:
234     http://code.google.com/p/pyscrobbler/issues/detail?id=7
235   * now cath SIGTERM signal along with SIGINT (keyborad interupt)
236   * save history to file (new option in mpd_sima.cfg)
237   * add --pid option to python script
238   * correct launch.sh accordingly
239   * new date format for the log
240
241 -- kaliko jack <kaliko@azylum.org>  Thu, 04 Jun 2009 20:35:25 +0200
242
243
244 sima v0.1.0 (first stable release)
245
246   * First quasi stable release (my first python code…)
247
248 -- kaliko jack <kaliko@azylum.org>  Thu, 28 May 2009 20:45:03 +0200
249
250 # vim: fileencoding=utf-8