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