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