chiark / gitweb /
Avoid namespace clash detected by picky compilers
[disorder] / CHANGES
CommitLineData
460b9539 1See ChangeLog.d/* for detailed revision history.
2
f0feb22e
RK
3* Changes up to version 2.1
4
5** Server
6
7Users are now stored in the database rather than a configuration file.
8
e6a35d1c
RK
9The server now has a built-in list of stopwords and players, so only
10additions to these need be mentioned in the configuration file.
86be0c30 11
07bc035e
RK
12The default inter-track gap is now 0s.
13
ad884aa5 14How sound is played is now controlled via the new 'api' configuration
15command. This also controls how the volume is set, which now works with
16ALSA as well as OSS.
17
d84bf422 18** Web Interface
19
20The web interface now uses cookies to remember user identity, and allows
b64c2805 21online registration of new users. Also it is no longer necessary to
22manually specify the URL of the web interface (but you can override it
23if you don't like the value it figures out).
d84bf422 24
ad884aa5 25It is possibe to allow users to register via the web interface.
26
27The web interface's browser support has been improved. It has been
28tested with Firefox 2, Safari 3, Konqueror 3, Internet Explorer 7 and
29Opera 9.
30
92afc09e 31* Changes up to version 2.0
460b9539 32
33** General
34
460b9539 35Tracks can now have tags associated with them. See tags in disorder(1)
36or the preferences documentation for the web interface or Disobedience.
37
38The search facility knows how to limit results by tag (see search
39documentation for any interface) as well as by word search. It is
40possible to limit random play by tag (see required-tags and
41prohibited-tags in disorder_config(5)).
42
813070ec
RK
43Unicode support is improved. Case-folding and word breaking now follows
44the rules given in the Unicode standard (with a bit of tailoring in the
45latte case).
46
655cae67
RK
47** Disobedience
48
49There is a new client, 'Disobedience', that depends on the GTK+ library.
50Feedback on the interface would be very welcome.
51
52** Web Interface
53
54The "New" screen display tracks recently added to the database. From
55here they can be played or their preferences changed.
56
813070ec
RK
57Long track names are truncated so they fit better on the screen. Hover
58for the full name.
59
655cae67
RK
60** Network Play
61
62DisOrder can broadcast audio over a network, allowing it to be played on
63multiple client machines. See README.streams for details.
64
460b9539 65** Server
66
813070ec
RK
67Slow file lookups are cached in the server. This should help
68installations with large collections and/or slow platforms.
460b9539 69
70The 'enabled' and 'random_enabled' configuration options are now gone.
71Instead the state survives from one run of the server to the next.
72'disable now' is gone as well - if you want to emulate it disable
73playing and then scratch the current track.
74
75The 'pick' plugin has been abolished. All the logic formerly done there
76is now built into the server, where it can be done much more
77efficiently.
78
813070ec
RK
79'tracklength' plugins must be explicitly specified.
80
6aba3f6c
RK
81A bug where removing a collection (from the configuration) could cause a
82crash when random play was enabled has been fixed.
83
63e28749 84A new configuration option 'queue_pad' allows the number of random
85tracks kept on the queue to be controlled.
86
75db8354 87There is a new utility disorder-decode which can decode OGG, MP3, WAV
88and FLAC. The example config file uses it.
ce6c36be 89
813070ec
RK
90Database statistics are computed in a subprocess so that the main server
91(and all clients) are not blocked for the duration.
92
460b9539 93** disorderfm
94
95There is a new command line tool called 'disorderfm' which is designed
96for filename translation on (for instance) digital audio repositories.
97It is not yet feature-complete. See its man page for additional
98details.
99
100** Build And Configuration
101
102You can control which components are built with new --with options. See
103README.
104
105options.transform and the 'transform' web option have gone, replaced
106with a 'transform' configuration command. Both this and 'namepart' are
107now optional.
108
63e28749 109** Thanks
110
111Ross Younger, Colin Watson, Michael Stevens and Mark Wooding all
112contributed in some way to this release.
113
460b9539 114* Changes up to version 1.5.1
115
116** Web Interface
117
118Correct regexp for non-alpha tracks.
119
120* Changes up to version 1.5
121
122** Web Interface
123
124Regexp-based filtering of tracks (for instance as used by the initial
125'Choose' page) now does the regexp matching in the server, limiting the
126amount of data transferred to the web interface only to be discarded.
127
128** Client
129
130Regexp-base filtering of tracks is now available to the command line
131client.
132
133** Server
134
135New server_nice, speaker_nice and rescan_nice configuration options
136allow independent control of process priorities.
137
138Scratches are now attributed to the user who requested them.
139
140Bugs fixed:
141 A file descriptor was leaked for each track played.
142 The amount of a track played so far was not reported.
143 The speaker process could crash on underrun.
144 The server would crash if you paused a non-pause capable track.
145 Regexp matching in the file and directory list commands was not
146 reliable.
147 Handling of variable-argument commands in the client was broken.
148
149* Changes up to version 1.4
150
151** General
152
153Raw format players are now supported. See README.upgrades and
154README.raw for details. This allows pausing and eliminating the
155inter-track gap.
156
157Pausing is also supported with suitably modified standalone player
158plugins, though none of the supplied ones are capable of this.
159
160When random play is enabled the randomly picked track now appears in the
161queue, and can be moved around the queue, removed from it, etc.
162
163** Web Interface
164
165Switches (random play, pause, ...) are now presented as a
166fixed-appearance switch with an adjacent state indicator.
167
168The 'Manage' screen has new buttons to move tracks to the head or tail
169of the queue.
170
171You can now edit the preferences for all the tracks in an album in a
172single screen, rather than having to visit each separately. For the
173time being the raw preferences editing has gone; it can be reintroduced
174on some form if there is demand. (You can still edit raw preferences
175from the command line.)
176
177Labels are now documented in options.labels rather than
178disorder_config(5).
179
180** Server
181
182If you tried to start up on any empty database with random play enabled
183the server would exit with an error.
184
185The server no longer risks failing if you strace its player
186subprocesses.
187
188It was possible for the server to hang when a 'reconfigure' command was
189issued. This should no longer be the case.
190
191The default signal to forcibly terminate players is now SIGKILL.
192
193** Plugins
194
195Plugins must now declare a type word. This allows them to document
196whether they are a standalone player or a raw-format player, and whether
197they support pausing. They can also arrange to get setup and cleanup
198calls in the main server. See disorder(3) for more details.
199
200* Changes up to version 1.3
201
202** Dependencies
203
204Berkeley DB 4.2 is no longer supported. Use 4.3.
205
206** Client
207
208There is a new 'authorize' command to simplify the addition of local
209users. Please report successes as well as failures.
210
211There is a new 'resolve' command to return the real track name behind an
212alias.
213
214The 'rescan' command no longer takes an argument.
215
216** Server
217
218The track database code has been largely rewritten to improve
219maintainability.
220
221There is a new 'lock' directive. By default the server uses a lockfile
222to prevent multiple copies of itself running simultaneously; this can be
223inhibited e.g. if you are using a filesystem that does not support
224locking and are confident you can prevent concurrent running yourself.
225
226Aliases for track names, constructed from trackname_display_
227preferences, now appear in the virtual filesystem.
228
229The server now executes a subprocess for the rescan operation. It also
230runs a separate deadlock manager.
231
232Standard output and standard error from subprocesses are now logged.
233This is handy if you need to figure out why a player failed unexpectedly
234but might lead to huge log files if you have needlessly verbose players.
235
236** Web Interface
237
238Enable/disable buttons are now colored to reflect current state.
239
240Entering numeric volume values (rather than clicking on the arrows) now
241works.
242
243Connection errors are reported more gracefuly.
244
245** Plugins
246
247Scanner plugins are now always invoked in a subprocess.
248
249disorder_track_count() and disorder_track_getn() are no longer
250available. Instead use disorder_track_random().
251
252Plugins are now opened with RTLD_NOW, so link errors are detected
253immediately.
254
255** Tools
256
257disorder-dump now insists on the input/output file being a named regular
258file, rather than using stdin or stdout.
259
260** Other
261
262Some missing files have been added, and some notes added regarding
263getting text encoding right.
264
265* Changes up to version 1.2
266
267See README.upgrades when upgrading to this version.
268
269** Bugs Fixed
270
271Avoid accumulating overlarge recently played list.
272
273When the server was stopped, the currently playing track would not be
274added to the recently played list. This has been fixed.
275
276Reloading the 'volume' page no longer repeats the last volume-changing
277action.
278
279The search facility now works properly for multiple hits within a single
280artist or album.
281
282** Server
283
284New namepart directive replaces web interface's trackname-part. There
285are associated changes to the protocol and clients.
286
287The number of database queries per candidate match required when
288searching has been reduced.
289
290The operator can control the signal used to scratch playing tracks. The
291default has been changed to SIGINT from SIGKILL.
292
293The 'log' command now provides a formalised event log, rather than raw
294access to the server's ordinary log output.
295
296** Web Interface Changes
297
298*** Choosing Tracks
299
300When picking a track the client now stays on the same screen rather than
301redirecting back to the 'Playing' screen. So that the user gets
302feedback from their action, playing and queued tracks are now marked as
303such in the track picking screen.
304
305It is possible to revert to the old behaviour by removing the back=
306argument from the choose.html and search.html templates (and optionally
307the trackstate lines).
308
309*** Search
310
311Non-ASCII characters are now properly supported in search terms.
312
313*** Syntax
314
315The template syntax has been changed slightly to ignore whitespace in
316certain places.
317
318*** Miscellaneous
319
320Some formerly textual buttons are now replaced by images (with ALT text
321reflecting the old value). The stylesheet is now a .css file (installed
322in the same place as the images) rather than being embedded into every
323template.
324
325Artist and album names in the playing and recently-played lists are now
326links to the corresponding directory.
327
328More functions are now available from the 'manage' screen.
329
330The menus are now (by default) across the top of the screen instead of
331down the side. Set the 'menu' label to 'sidebar' to restore the old
332appearance. 'Volume' is not present in this new menu, use 'Manage'
333instead (or edit the template).
334
335** tkdisorder
336
337tkdisorder now displays artist, album and title in the queue and
338recently played widgets, rather than just the title (as formerly).
339
340* Changes up to version 1.1
341
342** Bugs Fixed
343
344Corrected various problems with UTF-8 parsing.
345
346In the web interface, "The Beatles" (etc) are now grouped under 'B' not
347'T' when grouping tracks by initial letter.
348
349** Server
350
351The list of recently played tracks is now preserved across server
352restarts.
353
354Track IDs are more compact.
355
356Versions of libdb before 4.2 are no longer supported. 4.2 and 4.3 both
357work now. 4.2 support will be removed in some future release.
358
359Prehistoric backwards-compatibility logic removed. Only affects people
360upgrading from long before 1.0 (who should upgrade to 1.0 and then to
3611.1.)
362
363** Command Line
364
365Tracks can be moved in the queue from the command line.
366
367'disorder queue' now reports track IDs.
368
369$pkgdatadir/completion.bash provides tab completion over commands and
370options.
371
372** Web Interface
373
374New 'cooked' preferences interface saves users having to know arcane
375details of trackname preferences and so on. Non-ASCII characters are
376now properly supported in this context.
377
378CGI arguments to the web interface are now checked for UTF-8 compliance.
379
380Local Variables:
381mode:outline
382fill-column:72
383End: