]> git.tuebingen.mpg.de Git - paraslash.git/blob - NEWS.md
c21cc858ef2c4ab5030a4f1e8996921dd9585513
[paraslash.git] / NEWS.md
1 NEWS
2 ====
3
4 ------------------------------------------
5 0.7.2 (to be announced) "optical friction"
6 ------------------------------------------
7
8 - Minor cleanup of the net subsystem.
9
10 Downloads:
11 [tarball](./releases/paraslash-git.tar.xz)
12
13 --------------------------------------
14 0.7.1 (2022-10-03) "digital spindrift"
15 --------------------------------------
16
17 The two new ll commands and the internal mp4ff library are the most
18 user-visible changes of this release. On top of that there are two
19 core changes which aim to improve the robustness of the code but which
20 are otherwise invisible: the switch from select(2) to poll(2) and the
21 revised memory allocation API which checks for integer overflows. The
22 release also comes with a slight change to the build system and the
23 usual mix of bug fixes and minor improvements not mentioned here.
24
25 - The autogen.sh script now only creates the autoconf specific files
26   but no longer runs configure, make and the test suite.
27 - A stripped down copy of the discontinued libmp4ff library has become
28   part of the paraslash code base. As a result it is no longer necessary
29   to install faad from source to get support for aac/m4a files. The
30   faad decoder package must still be installed.
31 - The log level of the running daemon can now be changed with the
32   new ll command. It is available for para_server and para_audiod.
33 - All calls to select(2) have been replaced by calls to poll(2)
34   to avoid known shortcomings of the select API.
35 - All allocation functions now check for integer overflow. Since this
36   requires support from the compiler, the oldest supported gcc version
37   has been bumped to gcc-5.4 (released in 2015).
38
39 Downloads:
40 [tarball](./releases/paraslash-0.7.1.tar.xz),
41 [signature](./releases/paraslash-0.7.1.tar.xz.asc)
42
43 ----------------------------------
44 0.7.0 (2022-03-12) "seismic orbit"
45 ----------------------------------
46
47 The major incompatible change which requires to bump the major version
48 is the switch from sha1 to sha256, see below for details. However,
49 there are many other improvements, the usual amount of bug fixes and
50 a couple of new features.
51
52 - Starting with paraslash-0.7.0, the sha256 hash value of each known
53   audio file is stored in the database while older versions employed the
54   sha1 hash algorithm which has been considered insecure since 2005
55   and should no longer be used today. The switch from sha1 to sha256
56   requires users to upgrade their database using the new para_upgrade_db
57   program, followed by re-adding all files to recompute the hashes. With
58   this approach all metadata stored in the database (last played date,
59   num played value, moods, playlists, attributes etc.) are kept. An
60   simpler alternative is to start over from scratch by running the
61   "init" command but this will lose these metadata.
62 - Server and client now hash the session keys with sha256 rather
63   than sha1 during the initial handshake. This feature is optional and
64   backwards compatible: old clients can still connect to a new server
65   (using sha1). Also new clients can connect to an old server (again
66   using sha1).
67 - The new "duration" keyword of the mood grammar makes it possible to
68   impose a constraint on the duration of the admissible files.
69 - The long deprecated version 1 mood syntax is no longer supported.
70 - Paraslash writers handle early end-of-file more gracefully.
71 - The alsa writer no longer warns about spurious underruns.
72 - The score formula  of the audio file selector has been reworked.
73 - Cleanups of the doubly linked lists code.
74 - New option for configure: --enable-ubsan to detect and report undefined
75   behaviour.
76 - The "tasks" server command has been removed.
77 - The fancy new logo and a minor overhaul of the web pages.
78
79 Downloads:
80 [tarball](./releases/paraslash-0.7.0.tar.xz),
81 [signature](./releases/paraslash-0.7.0.tar.xz.asc)
82
83 --------------------------------------
84 0.6.4 (2021-11-04) "fuzzy calibration"
85 --------------------------------------
86
87 This point release contains a fair number of fixes but no new features.
88 This marks the end of the 0.6 development, although paraslash-0.6 will
89 still be supported for some time and subsequent maintenance releases
90 may follow.
91
92 - The udp sender no longer crashes when empty chunks are encountered.
93 - Fix a double-free bug in the exit path of the server.
94 - The "jmp" command now errors out when given a negative percentage.
95 - A fix for a bug in para_afh which triggered on the attempt to modify
96   the tags of an invalid mp4 file.
97 - A memory leak in para_afh has been fixed.
98 - The udp sender no longer sends multiple EOF packets.
99 - Some gcc warnings have been silenced.
100 - Minor log level adjustments and documentation improvements.
101
102 Downloads:
103 [tarball](./releases/paraslash-0.6.4.tar.xz),
104 [signature](./releases/paraslash-0.6.4.tar.xz.asc)
105
106 ---------------------------------------
107 0.5.9 (2021-11-04) "reversed dimension"
108 ---------------------------------------
109
110 This release contains a few important fixes which have accumulated in
111 the maint branch. The paraslash-0.5.x series has now reached its end
112 of life and will no longer be supported. All users should upgrade to
113 a more recent version at this point.
114
115 - Fix an issue with the bash completion script.
116 - Initialize the random seed also when using libgrypt.
117 - Fix some compiler warnings in the resample filter
118 - Don't return spurious errors from the ff server command.
119
120 Downloads:
121 [tarball](./releases/paraslash-0.5.9.tar.bz2),
122 [signature](./releases/paraslash-0.5.9.tar.bz2.asc)
123
124 ----------------------------------------
125 0.6.3 (2021-02-18) "generalized activity"
126 -----------------------------------------
127
128 It has been a while since the last release, but paraslash-0.6.3
129 finally has arrived. It contains a fair number of improvements,
130 features and fixes all over the place.
131
132 - The ff command now accepts a negative argument to instruct the
133   virtual streaming system to jump backwards in the current audio
134   stream. The old syntax (e.g., "ff 30-") is still supported but it
135   is deprecated and no longer documented. The compatibility code is
136   sheduled for removal after 0.7.0.
137 - para_afh: New option: --preserve to reset the modification time to
138   the value of the original file after meta data modification.
139 - Overhaul of the compress filter code. The refined algorithm should
140   reduce clipping. The meaning of --aggressiveness has changed, see the
141   updated and extended documentation of the compress filter for details.
142 - Cleanup of the audio format handler code.
143 - We now build the tree using the .ONESHELL feature of GNU make,
144   which results in a significant speedup.
145 - Two robustness fixes for FreeBSD.
146 - para_client now supports RFC4716 private keys as generated with
147   ssh-keygen -m RFC4716. In fact, this key format has been made the
148   default, and the former PEM keys will be depreciated at some point.
149 - The ogg audio format handlers learned to detect holes and now report
150   the correct duration also if ogg pages are missing in the file. This
151   affects ogg/vorbis ogg/speex and ogg/opus.
152 - Robustness improvements for para_mixer.
153 - A fix for an old bug that could cause the server to crash or report
154   garbage in its status output.
155 - New para_play option: --end-of-playlist
156 - Streaming m4a files over udp has been improved.
157
158 Downloads:
159 [tarball](./releases/paraslash-0.6.3.tar.xz),
160 [signature](./releases/paraslash-0.6.3.tar.xz.asc)
161
162 --------------------------------------
163 0.6.2 (2018-06-30) "elastic diversity"
164 --------------------------------------
165
166 The main new feature of this release is the --listen-address option
167 for para_server and para_audiod. But there are also a large number of
168 small improvements and bug fixes all over the place. The user-visible
169 changes include
170
171 - para_gui no longer waits up to one second to update the screen when
172   the geometry of the terminal changes.
173 - Minor documentation improvements.
174 - Improvements to the crypto subsystem.
175 - The server subcommand "task" has been deprecated. It still works,
176   but prints nothing. It will be removed in the next major release.
177 - Server log output is now serialized, avoiding issues with partial
178   lines.
179 - It is now possible to switch to a different afs database by changing
180   the server configuration and sending SIGHUP to the server process.
181 - New server options: --listen--address, --http-listen-address and
182   --dccp-listen-address. These options restrict the set of listening
183   addresses of the TCP and DCCP sockets of the server process.
184 - The help commands of server, audiod, play now support --long. By default,
185   the short help is shown.
186 - The code which merges the command line options with the config file
187   options has been consolidated.
188 - If the current audio file is renamed, the status items are now updated
189   accordingly.
190 - After the server process received SIGHUP, changes to the current audio
191   file did not trigger an update of the status items. This has been fixed.
192
193 Downloads:
194 [tarball](./releases/paraslash-0.6.2.tar.xz),
195 [signature](./releases/paraslash-0.6.2.tar.xz.asc)
196
197 ----------------------------------------
198 0.6.1 (2017-09-23) "segmented iteration"
199 ----------------------------------------
200
201 The highlight of this release is the version 2 mood parser. But there
202 is a lot more than that, as summarized in the list below. And of
203 course we have many small usability improvements and bug fixes not
204 mentioned here.
205
206 - A more intuitive syntax for moods ("version 2 moods"). The
207   traditional version 1 moods are still supported but are deprecated
208   now. Removal of the version 1 mood parser is scheduled for the next
209   major release.
210 - Flex and bison are now required to build para_server.
211 - New sort order for the ls command: -s=h sorts the ls output by hash
212   value of the audio file.
213 - autogen.sh now runs the test suite after a successful build.
214 - The contents of overview.pdf have been integrated into the user
215   manual.
216 - Fixed sized audio format headers for ogg/opus streams.
217 - The doxygen source browser has been disabled temporarily. The
218   API reference is still online, though.
219 - Overhaul of the source code documentation.
220 - The deprecated --full-path option of the ls command has been
221   removed. It was a no-op since 0.6.0.
222 - The wma decoder has been cleaned up and its bitstream API made
223   more robust.
224 - The image/lyrics ID status items of the current audio file are now
225   updated on changes. This affects para_gui, which used to report the
226   old value until EOF.
227
228 Downloads:
229 [tarball](./releases/paraslash-0.6.1.tar.xz),
230 [signature](./releases/paraslash-0.6.1.tar.xz.asc)
231
232 ---------------------------------------
233 0.5.8 (2017-09-23) "branching parabola"
234 ---------------------------------------
235
236 A couple of fixes for serious old bugs have accummulated in the maint
237 branch since paraslash-0.5.7 was released nine months ago. So here
238 is another 0.5.x release. As usual, all commits in the maint branch
239 have been merged into master, so the upcoming paraslash-0.6.1 also
240 contains them. For details see the git log.
241
242 Downloads:
243 [tarball](./releases/paraslash-0.5.8.tar.bz2),
244 [signature](./releases/paraslash-0.5.8.tar.bz2.asc)
245
246 -------------------------------
247 0.6.0 (2017-04-28) "fuzzy flux"
248 -------------------------------
249
250 The highlights of this release are the conversion of all option parsers
251 to the lopsub library and the improved AAC support. But there are
252 many other user-visible changes all over the place. Also a lot of
253 old cruft has been removed, leading to incompatible changes. Hence
254 the new major version number.
255
256 - Support for Mac OS X has been removed.
257 - On Linux systems, glibc-2.17 or newer is required to build the
258   source tree.
259 - Support for RSA public keys in ASN format (as generated by openssl
260   genrsa) has been removed. These keys have been deprecated since
261   2011, so users should have long switched to keys generated with
262   ssh-keygen(1).
263 - If libgcrypt is used as the crypto library, we now require version
264   1.5.0 (released in 2011) or later.
265 - The insecure RC4 stream cipher has been removed. It was superseded
266   by aes_ctr128 three years ago but the RC4 code had been kept for
267   backwards compatibility.
268 - On Linux, abstract unix domain sockets are used unconditionally.
269 - The "install" target no longer strips executables, the new
270   install-strip target can be used to get the old behaviour.
271 - The clean targets have been renamed: clean2 is gone, and the new
272   mostlyclean removes only the executables and object files.
273 - New target: check (identical to test).
274 - The DESTDIR make variable is honored to prepend a path to the
275   installation directory. This feature is orthogonal to the --prefix
276   option to configure.
277 - Minor WMA cleanups.
278 - The aac audio format handler has been rewritten to use the mp4ff library.
279   See the manual for how to install the library on your system.
280 - New status item: max_chunk_size. The value is stored in a previously
281   unused field of the afhi object of the aft table. Although backwards
282   compatible, users are encouraged to re-add m4a files to populate
283   the new field.
284 - No more chunk tables for aac. Chunk boundaries are determined
285   dynamically at stream time.
286 - Release and master branch tarballs are now compressed with xz rather
287   than bzip2.
288 - The lopsub package is required to install the paraslash package.
289   Gengetopt is no longer needed.
290 - make dep is gone. Dependencies have been created automatically for
291   a long time and it was never necessary to run make dep manually.
292 - para_gui lost its --timeout option.
293 - Most manual pages have been extended to include an overall
294   description of the command.
295 - The --stream-delay option of para_audiod has been removed. It had
296   been a no-op for many years.
297 - The deprecated --path option of the server ls command has been
298   removed.  The command now prints full paths by default, making
299   --full-path a no-op. Hence --full-path has been depreacted and is
300   scheduled for removal in v0.6.1.
301 - It is now possible to use 'CFLAGS' to override the default compiler
302   options.
303 - para_fade has been renamed to para_mixer. The four modes of operation
304   (set, fade, snooze, sleep) are implemented as subcommands of the
305   new program.
306 - The sleep subcommand of para_mixer (former sleep mode of para_fade)
307   lost its --wake-hour and --wake-min options in favor of the new
308   --wake-time option which also accepts relative wakeup times like
309   "+9:30".
310 - The new --fade-exponent option of para_mixer allows for non-linear
311   channel fading.
312 - The new logo.
313
314 Downloads:
315 [tarball](./releases/paraslash-0.6.0.tar.xz),
316 [signature](./releases/paraslash-0.6.0.tar.xz.asc)
317
318 -------------------------------------
319 0.5.7 (2016-12-31) "semantic density"
320 -------------------------------------
321
322 Mostly a bug fix release, and a bunch of internal improvements.
323 The only user-visible changes are the sanity checks for the touch
324 command and the new options to the ls command.
325
326 - Speedup of the base64 decoder.
327 - One of the two source browsers has been removed from the web pages.
328   The doxygen API reference still contains an HTML version of each
329   source file.
330 - Two race conditions in para_server have been fixed.
331 - ls -p is now deprecated in favor of -F or -b. See the help text of
332   the ls command for details.
333 - The openssl code has been adjusted to work also with openssl-1.1.
334 - The wma decoder and audio format handler now correctly decodes
335   files with unusual block sizes.
336 - We now compile with -Wformat-signedness if possible.
337 - The touch command now refuses to set an invalid image or lyrics ID.
338 - New section on contributing for the user manual.
339 - Major simplification of the error subsystem.
340
341 Downloads:
342 [tarball](./releases/paraslash-0.5.7.tar.bz2),
343 [signature](./releases/paraslash-0.5.7.tar.bz2.asc)
344
345 -------------------------------------------
346 0.4.14 (2016-12-31) "branching oscillation"
347 -------------------------------------------
348
349 Many fixes for nasty bugs have accumulated over the years since 0.4.13
350 was released in 2013. This release contains all of them. It is the
351 last v0.4.x release, so v0.4.x is now end of life. The maint branch
352 of the git repository has been forwarded to v0.5.7 and will start to
353 receive important fixes for 0.5.x, which is now in maintenance mode.
354
355 - Fix for the "double encryption bug" with gcrypt, which caused
356   garbage to be sent to stat clients.
357 - The "prev" command of para_play now works as expected.
358 - Invalid parameters for the begin and end chunk no longer cause
359   the afh receiver of para_recv to segfault.
360 - A fix for an assertion that triggered in the FEC slice setup code.
361 - Closing the terminal with a running para_gui causes the process to
362   die, rather than using 100% of CPU time.
363 - para_gui no longer shows stale information about the previous
364   audio file.
365 - A fix for a bug in the fec decoder which caused aborts if the buffer
366   pool filled up.
367 - The assertion in the buffer tree code no longer triggers.
368 - The "afs_event: table moods, event 0: key already exists in rbtree"
369   error no longer occurs on attribute changes.
370 - A NULL pointer dereference in com_sender() has been fixed.
371 - The -i option of lsatt works as advertised.
372 - Various fixes for the build system.
373
374 Downloads:
375 [tarball](./releases/paraslash-0.4.14.tar.bz2),
376 [signature](./releases/paraslash-0.4.14.tar.bz2.asc)
377
378 ---------------------------------------
379 0.5.6 (2016-07-10) "cascading gradient"
380 ---------------------------------------
381
382 The highlight of this release is the new -m flag for para_afh which
383 lets it modify the meta tags of the given audio file(s). This feature
384 is supported for all audio formats. Many small cleanups and bug fixes
385 not mentioned here have accumulated and are also part of the release.
386
387 - para_afh learned to modify meta tags of mp3 wma ogg spx
388   opus flac aac files.
389 - afs commands propagate error codes to the client.
390 - The check command now also checks the attribute table for
391   inconsistencies.
392 - New -v flag for the version command (print verbose version string)
393 - New option --priority for para_server and para_audiod.
394 - New mood methods: image_id and lyrics_id.
395 - The manual and this NEWS file have been converted to markdown.
396 - Support for the compile-time loglevel feature has been removed.
397 - Cleanup of the wma decoder and bitstream code.
398 - Improved wide-character support and fixes related to signal handling.
399 - para_gui no longer reports 100% playing time at the stream start.
400 - Opus cleanups.
401
402 Downloads:
403 [tarball](./releases/paraslash-0.5.6.tar.bz2),
404 [signature](./releases/paraslash-0.5.6.tar.bz2.asc)
405
406 --------------------------------------
407 0.5.5 (2015-09-20) "magnetic momentum"
408 --------------------------------------
409
410 Many new features and a lot of other improvements.
411
412 - On Linux systems, local sockets are now created in the
413   abstract name space by default. This allows to get rid of
414   the socket specials in /var/paraslash.
415 - The --user-allow option of para_audiod now accepts also
416   usernames rather than only user IDs.
417 - New autoconf macros to avoid duplication in configure.ac.
418 - Status items (as shown by para_gui) are updated correctly
419   when the meta information of the current audio changes.
420 - para_server and para_audiod no longer refuse to start in
421   the background if no log file is given. Instead, all log
422   messages go to /dev/null in this case.
423 - Web page cleanup.
424 - New syntax for the -l and -s options of the ls command.
425   These options should now be specified as -l=v rather than
426   -lv, for example. The old syntax still works, but support
427   will be dropped in v0.6.0.
428
429 Downloads:
430 [tarball](./releases/paraslash-0.5.5.tar.bz2),
431 [signature](./releases/paraslash-0.5.5.tar.bz2.asc)
432
433 ------------------------------------------
434 0.5.4 (2015-01-23) "exponential alignment"
435 ------------------------------------------
436
437 Another cleanup and bugfix release.
438
439 - New server command: tasks.
440 - Minor cleanups to daemon.c.
441 - New URLs for home page and git services.
442 - Improved error diagnostics for the mvblob commands.
443 - New sender subcommand: status.
444 - Improved help text for server and afs commands.
445 - audiod memory leak fixes.
446 - Miscellaneous improvements to the build system.
447 - oss_writer improvements.
448 - Improved handling of mp3 files with both id3v1 and id3v2 tags.
449
450 Downloads:
451 [tarball](./releases/paraslash-0.5.4.tar.bz2),
452 [signature](./releases/paraslash-0.5.4.tar.bz2.asc)
453
454 ---------------------------------------------
455 0.5.3 (2014-08-01) "symbolic synchronization"
456 ---------------------------------------------
457
458 Not many new features, but lots of fixes and usability improvements.
459
460 - para_gui has been converted to use the paraslash scheduler.
461 - Various alsa-related fixes, mostly for the raspberry pi.
462 - Many scheduler improvements and cleanups.
463 - The test suite has been extended to include sanity checks
464   for the generated man pages.
465 - ao_writer fixes. This writer was in a quite bad shape. Many
466   serious bugs have been fixed.
467 - new audiod command: version.
468 - Minor improvements to the bitstream API.
469 - The cpsi command now prints a meaningful error message if
470   none of the given patterns matched any audio file.
471
472 Downloads:
473 [tarball](./releases/paraslash-0.5.3.tar.bz2),
474 [signature](./releases/paraslash-0.5.3.tar.bz2.asc)
475
476 ----------------------------------------
477 0.5.2 (2014-04-11) "orthogonal interior"
478 ----------------------------------------
479
480 The new sync filter, the AES_CTR128 stream cipher and the overhauled
481 network code are the highlights of this release. It also includes a
482 fair number of smaller fixes and improvements not mentioned here.
483
484 - The new sync filter synchronizes playback between multiple
485   clients.
486 - Connections between para_server and para_client are now
487   encrypted by means of AES rather than RC4 if both sides
488   support it. RC4 is still available as a fallback. This
489   feature is fully transparent, i.e. no command line options
490   are necessary, and a client linked against openssl can
491   speak with a server linked against libgcrypt and vice versa.
492 - Major cleanup of the networking subsystem.
493 - Improvements to para_fade: the new set mode, multi-channel
494   initial volumes, better error logging.
495 - The man pages of para_audiod, para_filter, para_recv, and
496   para_write contain the relevant options for receivers, filters,
497   writers. This broke in 0.5.0.
498 - ogg/vorbis latency improvements.
499 - Improved user manual.
500 - Minor fixes to avoid clang warnings.
501
502 Downloads:
503 [tarball](./releases/paraslash-0.5.2.tar.bz2),
504 [signature](./releases/paraslash-0.5.2.tar.bz2.asc)
505
506 ------------------------------------------
507 0.5.1 (2013-12-20) "temporary implication"
508 ------------------------------------------
509
510 Lots of fixes and improvements all over the place, and a major overhaul
511 of the build system.
512
513 - Audiod improvements and fixes.
514 - Buffer tree robustness improvements.
515 - Cleanup of the mood subsystem.
516 - Fixes and cleanups for the flac decoder.
517 - Latency improvements for the ogg/opus decoder.
518 - Crypto support is now optional. On systems without
519   openssl/gcrypt, the build succeeds but para_server,
520   para_audiod, para_client won't be built.
521 - The build system now works for cross-compile setups.
522 - The dependency tree has been flattened, which speeds up
523   builds and avoids to recreate the man pages on every change.
524 - The error code helper has been rewritten from perl to C,
525   which further improves build time.
526 - Many small bugs in the build system have been identified
527   and fixed.
528
529 Downloads:
530 [tarball](./releases/paraslash-0.5.1.tar.bz2),
531 [signature](./releases/paraslash-0.5.1.tar.bz2.asc)
532
533 ----------------------------------------
534 0.5.0 (2013-08-23) "invertible validity"
535 ----------------------------------------
536
537 Some API-breaking changes, one serious bug fix, and a lot of bike-shedding.
538
539 - The sideband compatibility code has been removed, hence
540   sideband connections (introduced in 0.4.11) are now mandatory.
541 - Addblob commands can produce output.
542 - The stat command no longer sends garbage when para_server was
543   compiled against libgcrypt.
544 - Dependencies for gengetopt files are computed automatically.
545   This eliminates a constant source of build bugs.
546 - The setatt command now accepts file name patterns rather than only
547   path names.
548 - overview.pdf is now based on dia, a simple diagram creation program.
549   The new version is much more detailed and contains descriptions of
550   the various programs of the paraslash package.
551 - The separator of all multi-word options has been changed from
552   underscore to dash. For example --log_color becomes --log-color.
553 - Overhauled web pages and the new logo.
554
555 Downloads:
556 [tarball](./releases/paraslash-0.5.0.tar.bz2),
557 [signature](./releases/paraslash-0.5.0.tar.bz2.asc)
558
559 --------------------------------------
560 0.4.13 (2013-07-29) "spectral gravity"
561 --------------------------------------
562
563 One more 0.4.x release before the API-breaking changes for 0.5.0 go
564 in. The main features of this release are the ogg/opus audio format,
565 and UTF-8 support, but it includes also tons of other improvements
566 and fixes all over the place.
567
568 - New audio format: ogg/opus.
569 - UTF8 support for para_gui and the mp3 audio format handler.
570 - Scheduler improvements and fixes.
571 - The obsolete gettimeofday() function has been replaced
572   by clock_gettime() on systems which support it.
573 - Speed and usability improvements for para_gui.
574 - para_client now restores the fd flags of stdin and stdout
575   on shutdown.
576 - Improved manual pages.
577 - Consistent version strings for all executables.
578 - Reduced dependencies on generated files result in fewer
579   recompilations on changes.
580 - Performance improvements for the compress filter.
581 - Improved downloads web page.
582
583 -----------------------------------------
584 0.4.12 (2012-12-20) "volatile relativity"
585 -----------------------------------------
586 The new command line player, the resample filter, ALSA support for
587 para_fade, and the improved build system are the highlights of this
588 release which probably marks the end of the 0.4.x series.
589
590 - The afh receiver and the para_play executable.
591 - The resample filter: A sample rate converter based on
592   libsamplerate.
593 - The "versions" directory has been removed from the master
594   branch. The tarballs of the old releases are now available
595   in the new "releases" branch.
596 - Overhaul of the build system: All generated files are now
597   written to the "build" directory.
598 - The modular mixer API and the alsa mixer.
599 - Minor fixes for the osx writer.
600
601 --------------------------------------
602 0.4.11 (2012-07-20) "mutual diversity"
603 --------------------------------------
604
605 The major feature in this release is the new sideband API for
606 client-server communication. This API will be used exclusively starting
607 with 0.5.0, which breaks backward compatibility but allows to get rid
608 of quite some compatibility code. Other noteworthy changes include
609 decoder latency improvements and a long-standing bug fix for the
610 ALSA writer.
611
612 - Sideband connections: If both para_server and para_client
613   support this feature, data is sent as a multiplexed stream.
614 - The --no_default_filters option of para_filter has been
615   removed.
616 - Several fixes and latency improvements to various decoders.
617 - The ALSA writer now limits the prebuffer time to 500ms.
618 - Documentation improvements.
619 - Overhaul of the command_util.sh script.
620 - Fixes for some minor problems found by the clang analyzer.
621 - Compiles (almost) without warnings on gcc-3.
622 - Robustness improvements of the buffer tree code.
623
624 ------------------------------------------
625 0.4.10 (2012-03-30) "heterogeneous vacuum"
626 ------------------------------------------
627
628 Nothing earth-shaking in this release, but quite a few usability
629 improvements and the usual mix of cleanups and fixes.
630
631 - The --no_default_filters option of para_filter has been
632   deprecated. It still works but has no effect and will be
633   removed in the next version.
634 - para_gui now prints also the stderr output of the executing
635   command in the bottom window.
636 - Cleanup and consolidation of the various wrappers for
637   write(), writev(), send() and friends.
638 - The obscure error messages on mmap() failures have been
639   replaced by meaningful messages. This affects mainly
640   para_afh.
641 - para_audioc: Cleanups and memory leak fixes.
642 - Test 0004-server no longer fails if para_server is not
643   being built.
644 - New configure options: --with-id3tag-{headers,libs}.
645
646 -------------------------------------
647 0.4.9 (2011-12-06) "hybrid causality"
648 -------------------------------------
649
650 Support for another audio format, interactive mode for para_client
651 and para_audiod and many small improvements/fixes all over the place.
652
653 - Support for flac, the free lossless audio codec.
654 - Fix for an endless loop in the mp3 decoder for certain
655   (corrupt) mp3 files.
656 - When executed without specifying a command, para_client
657   and para_audioc start an interactive shell (requires
658   libreadline being installed). The interactive mode offers
659   full tab completion and command line history.
660 - autogen.sh now detects a distcc setup and adjusts the
661   parameter for the -j option of make accordingly.
662 - Shared memory areas are no longer restricted to 64K. We now
663   detect the maximal size of a shared memory area at runtime.
664 - cleanup of the internal uptime API.
665 - para_server prefaults the mmapped audio file to avoid
666   delays on slow media.
667 - A new test for the test-suite that exercises the
668   communication between para_server and para_audiod.
669 - The alsa writer eats up less CPU cycles when configured to
670   use the DMIX plugin.
671 - Simplified and unified receiver code.
672 - Makefile cleanups.
673 - Commands which print a list of matching audio files now
674   emit a meaningful error message if no audio file matched the
675   given pattern(s).
676
677 --------------------------------------
678 0.4.8 (2011-08-19) "nested assignment"
679 --------------------------------------
680
681 Gcrypt support, the overhauled osx writer and regex format specifiers
682 are the highlights of this release.
683
684 - support for libgcrypt as a drop-in replacement for openssl.
685   Run configure --enable-cryptolib=gcrypt to link against
686   libgcrypt. The two crypto implementations are compatible to
687   each other, i.e. a para_client executable linked against
688   gcrypt can connect to para_server linked against libssl
689   and vice versa.
690 - Rewrite of the osx writer (output plugin for Mac OS).
691 - audiod: The format specifier for receivers, filters and
692   writers is now treated as a regular expression. This allows
693   to replace 5 lines in the config file (one for each audio
694   format) by one single line. See the manual for details.
695 - The \*.cmdline.[ch] files are no longer contained in the released
696   tarballs. This reduces the size of the tarballs but requires
697   gengetopt to build the tarball.
698 - Compiles cleanly also with llvm/clang.
699 - Corrupt mp3 files are handled more gracefully.
700 - The alsa writer uses poll fds instead of computing timeouts.
701 - Cleanup of the generic writer API.
702 - sched: Optimized zero timeouts.
703 - vss timeout cleanups.
704 - oggdec fixes and improvements.
705
706 --------------------------------------
707 0.4.7 (2011-06-01) "infinite rollback"
708 --------------------------------------
709
710 The new ao writer, support for ssh RSA keys and a couple of other
711 enhancements.
712
713 - Support for ESD, Pulseaudio, AIX, Solaris, IRIX and other
714   platforms through the libao audio library.
715 - Support for RSA keys generated with ssh-keygen.
716 - configure: improved options for ogg/vorbis/speex.
717 - The git version reported by --version always matches HEAD.
718 - The autogen script detects the number of processors and
719   runs a parallel make if possible.
720 - Major cleanup of the crypto API.
721 - Documentation updates.
722
723 ------------------------------------------
724 0.4.6 (2011-03-31) "deterministic entropy"
725 ------------------------------------------
726
727 Lots of ogg/vorbis improvements, the new test suite, enhancements
728 for para_gui and a fair amount of other bug fixes.
729
730 - For DCCP/OGG streams the audio file header is only sent once
731   at the beginning of the stream rather than periodically
732   every five seconds. This reduces network traffic and the
733   FEC group size.
734 - The vorbis comment header is replaced by an empty dummy header
735   before the header is sent over the network. This also results in
736   less network traffic and smaller FEC groups.
737 - The new "test" make target allows to perform some sanity checks prior
738   to installing the package.
739 - ogg timing fixes and performance improvements
740 - Scheduler improvements
741 - Proper exit codes for para_write
742 - para_gui: New option --theme to select a startup theme. Several
743   other improvements and fixes.
744 - aacdec error message cleanups
745 - simplified color error handling
746
747 --------------------------------------------
748 0.4.5 (2010-12-17) "symmetric randomization"
749 --------------------------------------------
750
751 Bug fixes, internal cleanups and variable-sized FEC slices.
752
753 - Contains a fix for an invalid-free-bug in the ogg audio format
754   handler code.
755 - Switching off the DCCP sender works again.
756 - para_audiod handles crashes of para_server more robustly.
757 - Internal scheduler and writer cleanups.
758 - Reduced latency due to variable-sized FEC slices.
759 - Improved documentation and error diagnostics.
760 - The build of para_server is now optional, allowing the build
761   to succeed in case libosl is not installed.
762
763 ------------------------------------------
764 0.4.4 (2010-08-06) "persistent regularity"
765 ------------------------------------------
766
767 Support for yet another audio format, para_write improvements and
768 bug fixes.
769
770 - Support for the speex codec.
771 - Support for sample formats other than 16 bit little endian.
772 - error2.h is now created by a perl script which speeds up configure
773   considerably.
774 - Fix a bug in the aac decoder which could lead to segfaults in
775   para_filter/para_audiod.
776 - Fixes for autoconf-2.66.
777
778 ----------------------------------------
779 0.4.3 (2010-07-05) "imaginary radiation"
780 ----------------------------------------
781
782 Many improvements for the DCCP and the UDP transport, the new user
783 manual and the usual mix of bug fixes and internal improvements.
784
785 - FEC support for the DCCP sender (Gerrit Renker). The new
786   --dccp_max_slice_size, --dccp_data_slices_per_group and
787   --dccp_slices_per_group options can be used to set the FEC
788   parameters for the DCCP transport.
789 - DNS lookups for UDP targets (Gerrit Renker).
790 - The new user manual replaces the README, README.afs, REQUIREMENTS
791   and INSTALL documents.
792 - Fix an end-of-file detection bug in the oggdec filter.
793 - The new nonblock API.
794 - Both options of the oggdec filter have been removed.
795 - New debug mode for the internal scheduler.
796
797 ------------------------------------------
798 0.4.2 (2010-04-23) "associative expansion"
799 ------------------------------------------
800
801 It's been some time since the last release, but finally here is
802 paraslash-0.4.2. The bulk of the changes comes from the new buffer
803 tree API, but there are changes all over the tree. Mainly performance
804 and usability improvements, but also quite some bug fixes.
805
806 - The new buffer tree API.
807 - DCCP: Support for CCID negotiation (Gerrit Renker).
808 - UDP robustness fixes.
809 - The --bufsize option for mp3dec is gone as it no longer makes sense
810   for the new buffer tree API.
811 - Fix audible buffer underruns for wma streams.
812 - The alsa writer no longer prints meaningless underrun durations.
813 - audiod: Defaults work also for udp streams. If no filter is
814   given for an audio format that is received via upd, fecdec is
815   automatically added as the first filter (along with the decoder).
816
817 ---------------------------------------
818 0.4.1 (2009-12-22) "concurrent horizon"
819 ---------------------------------------
820
821 Support for another audio format, minor feature enhancements and lots of bug
822 fixes. All fixes that have been accumulated in the maint branch (in particular
823 those mentionened in the 0.3.6 release notes) appear in this release as well.
824
825 - wma support.
826 - new afh option: --human to activate human-readable output.
827 - new server/audiod option: --log-timing to print timing information.
828 - build system improvements.
829 - source code documentation updates.
830
831 -------------------------------------
832 0.3.6 (2009-12-07) "cubic continuity"
833 -------------------------------------
834
835 Quite a few bugs have been found and fixed since 0.3.5, so here's
836 another 0.3.x release. No new features.
837
838 - Always check return value of malloc().
839 - ogg vorbis/FEC: Do not write garbage after the audio file header.
840 - exit if root privileges could not be dropped.
841 - FEC: Fix computation of extra slices.
842 - oss: Fix check for empty input buffer.
843 - Avoid buffer underruns due to filter chain output buffer constraints.
844 - server: Fix assignment of afs_pid.
845 - Don't panic if the afs database contains unknown audio formats.
846 - http/dccp: Do not send the audio file header twice.
847 - FEC: Timing improvements.
848
849 ----------------------------------------------
850 0.4.0 (2009-11-10) "simultaneous independence"
851 ----------------------------------------------
852
853 Two significant changes which require the new version number: The
854 improved authentication dialog and the fact that the database code
855 has been moved to a library, libosl. To use the new version, you have
856 to generate new RSA keys, see INSTALL for details. A shell script is
857 provided for conversion of the 0.3 database to the new 0.4 format.
858
859 - stronger crypto for client authentication
860 - the database code has been moved to a library
861 - improved status item handling
862 - cleanup of the build system
863 - The "-V" option now also prints the git version
864 - the new parser-friendly listing mode for the ls and stat commands
865 - mandatory rc4 encryption
866 - major audio format handler cleanups
867 - (id3,...) tags are no longer stored as a combined string in the database
868 - new mood methods: artist_matches, title_matches, comment_matches,
869   album_matches, year_maches, year.
870
871 --------------------------------------------
872 0.3.5 (2009-09-21) "symplectic separability"
873 --------------------------------------------
874
875 Full client support for \*BSD Unixes, complete re-write of the ogg
876 vorbis audio format handler, various improvements all over the place
877 and the usual mix of bugfixes. This release marks the end of the 0.3
878 series if no serious problems show up.
879
880 - the new oss writer (supported on \*BSD and Linux)
881 - rewrite of the ogg vorbis audio format handler. It's
882   recommended to replace the chunk tables of existing ogg
883   vorbis files in the afs database by re-adding these files
884   with "add -f".
885 - support for netmask subsets (Gerrit Renker)
886 - the new prebuffer filter
887 - improved signal handling
888 - variable fec output buffer size
889 - improved FEC timing fixes audible buffer underruns in UDP mode
890 - --log_color actually works
891 - new ls option: -d (print dates as seconds after the epoch)
892 - update to gengetopt 2.22.2
893 - support for RSA keys of size > 512 bits
894 - new option "mixer_channel" for para_fade
895
896 -----------------------------------------
897 0.3.4 (2009-05-07) "elliptic inheritance"
898 -----------------------------------------
899
900 The new udp sender, forward error correction, colored logs and various
901 other improvements. As the udp sender does not depend on any special
902 libraries, it is built unconditionally.
903
904 - The udp sender replaces the ortp sender. The new code uses forward
905   error correction to protect against packet losses. Many thanks to
906   Gerrit Renker for providing ipv6 support.
907 - The default port for udp streaming now defaults to 8000, like
908   for the http and the dccp senders/receivers.
909 - Loglevels are now specified as symbolic names, e.g.
910   "--loglevel info".
911 - improved ipv4 and ipv6 URI parser (Gerrit Renker).
912 - para_server/para_audiod: Color support for log messages.
913 - new options for mp3dec: --ignore-crc, --bufsize
914 - new audiod option: --config-file.
915 - gengetopt cleanups.
916 - Improved help/man pages: The documentation of para_audiod,
917   para_recv, para_filter and para_write now also contains
918   all options of the available receivers/filters/writers. The
919   man page of para_fade contains a description of the different
920   modes of operation.
921 - More source code documentation.
922 - vss timing fixes.
923
924 --------------------------------------------
925 0.3.3 (2008-12-01) "axiomatic perspectivity"
926 --------------------------------------------
927
928 Internal code cleanups, bug fixes, improved tag handling and the new
929 amplification filter.
930
931 - para_server uses the generic scheduling code.
932 - overhaul of the virtual streaming system.
933 - mp3: id3 version 2 support via libid3tag (optional)
934 - ogg: vorbis comment support.
935 - aac meta info support.
936 - mp3 audio format handler cleanups.
937 - new filter: "amp" to amplify the amplitude of the audio stream
938 - new status item/database entry: amplification. It is
939   used by the amp filter to pre-amplify the audio stream.
940 - fix a close-without-open bug in para_write.
941 - fix a bug in com_init() which was introduced in 0.3.2.
942 - better error diagnostics for para_client.
943
944 -----------------------------------------
945 0.3.2 (2008-04-11) "probabilistic parity"
946 -----------------------------------------
947
948 The new para_afh executable, scheduling and documentation improvements.
949
950 - new ls option: -lc (list chunk table)
951 - new executable: para_afh, the stand-alone audio file handler tool
952 - afs commands can send output more than SHMMAX (32MB on Linux). This
953   also reduces the memory usage of commands that produce large amounts
954   of output.
955 - major scheduler and audiod cleanups.
956 - more detailed and much nicer man pages.
957
958 ---------------------------------------
959 0.3.1 (2008-02-23) "liquid interaction"
960 ---------------------------------------
961
962 A mix of cleanups, bug fixes, improvements, and some new features. No
963 significant changes to the new database (osl) code, which is generally
964 a good sign.
965
966 - Share some similar/duplicate code between the http and the
967   dccp sender.
968 - Generic access control lists for paraslash senders.
969 - dccp sender: Access control lists, connection limiting and support
970   for the allow,deny,on,off,help sender commands.
971 - The default dccp port changed from 5001 to 8000 (suggested by
972   Gerrit Renker).
973 - para_server starts even if not all public keys could be loaded.
974 - Audiod performance improvements.
975 - fix a bug in the "off" command of the http sender.
976 - fix some fd and memory leaks.
977 - Update to gengetopt-2.22.
978
979 -------------------------------------
980 0.3.0 (2008-01-12) "solar saturation"
981 -------------------------------------
982
983 paraslash.0.3.0 -- 'WWDBND --what would databases never do?'.
984
985
986 Usually one might expect lots of new features AND a big increase in size
987 for a major release like this.
988
989 However, paraslash-0.3.0.tar.bz2 is the smallest paraslash tarball
990 ever. The decrease in size is mostly due to the removal of some
991 graphical tools (which were only quick hacks anyway). But also the
992 fact that the mysql code is gone cuts down the size a bit.
993
994 Being independent of mysql comes at a cost: The fact that paraslash
995 now contains its own database (the object storage layer, osl) increases
996 the (stripped) binary size of para_server by ~50K on i386.
997
998 - no more restrictions on unique basenames.
999 - independent of mysql: The new self-contained object
1000   storage layer (osl) replaces the mysql database.
1001 - New executable para_fsck: Check integrity of osl tables.
1002 - Lyrics support.
1003 - Reliable audio file move/rename detection.
1004 - More portable than ever: Tested on Linux (x86_32, x86_64, sparc64),
1005   MacOS (ppc32, x86_32), FreeBSD (x86_32), NetBSD (x86_32) and
1006   Solaris (sparc64).
1007 - the new osl-based audio file selector (afs) replaces the random,
1008   the playlist and the mysql selector of paraslash-0.2.x.
1009 - IPv6 support (thanks to Gerrit Renker).
1010 - paraslash-0.2.x streams are now called "moods". Writing
1011   0.3.x-mood definitions should be both easier and more
1012   powerful than writing 0.2.x-stream definitions.
1013 - para_krell, para_slider, para_para_sdl_gui, para_dbadm have
1014   been removed. The world is a better place without them. However,
1015   para_gui is still there.
1016 - afs tracks audio file selection also in playlist mode.
1017 - few easy-to-use afs commands replace the many not-so-easy-to-use
1018   mysql commands (and are available also in playlist mode).
1019 - Improved error subsystem.
1020 - The earth-shaking new logo.
1021
1022 -----------------------------------------
1023 0.2.17 (2007-11-20) "isotropic threshold"
1024 -----------------------------------------
1025
1026 Mainly bugfixes and cleanups in this version which marks the end of
1027 the 0.2.x series if no serious bugs show up after the release.
1028
1029 - mysql_selector: fix a locking bug.
1030 - universal chunk queueing.
1031 - dccp sender uses chunk queueing if write() returns EAGAIN (thanks
1032   to Gerrit Renker).
1033 - be more carful wrt. signed vs. unsigned argument passing.
1034 - cleanup error.h and fix some references to invalid error
1035   codes.
1036 - update to gengetopt-2.21.
1037 - update to ortp-0.13.1.
1038 - autoconf: extend checks for headers, library functions and
1039   compiler characteristics.
1040 - Fix streaming of large mp3 files.
1041 - Fix an off-by-one bug in playlist handling.
1042
1043 --------------------------------------
1044 0.2.16 (2007-04-05) "neural discharge"
1045 --------------------------------------
1046
1047 The main change in this release is the major audio format handler
1048 cleanup which removes some similar/duplicate code and makes it easier
1049 to implement plugins for other audio formats. Of course, the usual mix
1050 of other improvements/changes/bugfixes also made it into the release.
1051
1052 - simplified audio format handlers (most of the handling functions
1053   were moved one layer up to the virtual streaming system).
1054 - para_server uses mmap to read audio files
1055 - repositioning of mp3 streams is much faster, in particular for
1056   jumping near the end of large mp3 files.
1057 - permission flags DB_READ,DB_WRITE have been renamed to AFS_READ
1058   and AFS_WRITE.
1059 - fix a bug in para_filter that caused decoding of aac files
1060   to start only after a few seconds.
1061 - fix osx_writer hangs
1062 - simplified dccp code (thanks to Gerrit Renker)
1063 - the compress filter works also on big endian systems (ppc)
1064
1065 -----------------------------------------
1066 0.2.15 (2007-02-16) "inductive resonance"
1067 -----------------------------------------
1068
1069 Minor improvements, more documentation and a bunch of bug fixes.
1070
1071 - para_server: The server.users file is only read once on server
1072   startup rather than for each connection
1073 - mp3dec: Fix decoding of corrupt mp3 files
1074 - afs (audio file sender) is now called vss (virtual streaming
1075   system). Consequently, the permission flags specified in
1076   ~/.paraslash/server.users have also changed: AFS_READ and AFS_WRITE
1077   become VSS_READ and VSS_WRITE respectively.
1078 - para_audiod/para_filter: Fix a bug that caused the last chunk
1079   of audio data not being written under certain circumstances
1080 - audiod: compute the difference of server time and local time
1081   correctly
1082 - para_server/para_audiod: Fix some memory leaks
1083 - documentation improvements
1084 - configure.ac: fix checks for para_krell
1085 - new man pages
1086
1087 -------------------------------------------
1088 0.2.14 (2006-10-15) "transient singularity"
1089 -------------------------------------------
1090
1091 The only major enhancement of this version is the osx writer which completes
1092 the Mac OS Port and was originally planned already for 0.2.13 but had to wait
1093 until now for reasons beyond the scope of this changelog entry.
1094
1095 - new output plugin for Mac Os: the osx writer
1096 - rename configure command line options from --enable-xxx-headers to
1097   --with-xxx-headers and  --enable-xxx-libs to --with-xxx-libs
1098 - configure: new command line options: --with-mad-headers,
1099   --with-mad-libs, --with-oggvorbis-headers, and --with-oggvorbis-libs
1100 - some robustness fixes
1101 - dymamic audio format recognition for audiod
1102 - para_server: new command line option: --autoplay_delay
1103 - para_audiod: new command line option: --clock_diff_count
1104
1105 ---------------------------------------
1106 0.2.13 (2006-07-14) "sonic convolution"
1107 ---------------------------------------
1108
1109 A bunch of new features and core changes.
1110
1111 - the new paraslash scheduler, short and sweet.
1112 - Support for m4a/mp4 files via the new aac audio format
1113   handler/filter (requires libfaad).
1114 - each writer has its own command line parser, just like
1115   para_recv and para_filter.
1116 - para_client and para_audioc use the error subsystem
1117 - writers are integrated in para_audiod (currently linux-only)
1118 - para_client is integrated in para_audiod
1119 - random/playlist selector: improved info strings
1120 - new audiod commands: tasks, kill
1121 - update to libortp-0.10.1
1122 - para_fade: wake time defaults to 8 hours from now
1123 - update to autoconf-2.60
1124
1125 ------------------------------------------
1126 0.2.12 (2006-05-12) "oriented abstraction"
1127 ------------------------------------------
1128
1129 Many user-visible changes in this release and lots of new
1130 features:
1131
1132 - the new optional dccp sender/receiver. It uses the datagram
1133   congestion control protocol. You'll need a fairly new kernel
1134   for this.
1135 - paraslash works on Mac OS X (thanks to Gerd Becker)
1136 - para_play renamed to para_write
1137 - modular output plugin design (writers) for para_write
1138 - new file_writer output plugin for para_write
1139 - compress filter speed improvements
1140 - update to libortp-0.9.1
1141 - update to gengetopt-2.17rc
1142 - para_client no longer depends on libreadline (as the
1143   code for the interactive mode was removed).
1144 - gcc-2-95 is no longer a supported compiler. It may still
1145   work, but it gets no more testing.
1146 - the tarball no longer contains the screenshot images which
1147   reduces its size quite a bit.
1148 - configure: new command line options: --enable-mysql-headers
1149   and --enable-mysql-libs
1150
1151 ------------------------------------
1152 0.2.11 (2006-03-11) "atomic duality"
1153 ------------------------------------
1154
1155 Here it is, the first paraslash release developed with git. There
1156 are fairly many user-visible changes in this release. As two out of
1157 the three "database tools" of paraslash don't use a database at all,
1158 they are now called "audio file selectors" instead.
1159
1160 - the cdt command (change database tool) becomes chs (change
1161   selector)
1162 - no more colon separators: The syntax of some options of
1163   para_audiod and para_filter have changed. Use --help for
1164   more info (and some examples).
1165 - update to gengetopt-2.16 (thanks to Lorenzo Bettini)
1166 - switch from cvs to git (should've done that earlier)
1167 - the new ipc subsystem
1168 - new audio file selector: playlist
1169 - para_server: the dopey selector is now called "random",
1170   and is the default selector. Use the --selector option to
1171   choose another selector at startup, or the chs command to
1172   change the selector at runtime.
1173 - X86_64 fixes (thanks to Steffen Klassert)
1174 - para_play fixes
1175
1176 --------------------------------------
1177 0.2.10 (2006-02-17) "cyclic attractor"
1178 --------------------------------------
1179
1180 Huge documentation update, a scrollable window for para_gui, ortp
1181 improvements, and of course many small fixes not mentioned here.
1182 The diffstat below is rather misleading as most insertions are due
1183 to the new source documentation.
1184
1185 - autoconf cleanup
1186 - para_server also uses the new error subsystem
1187 - lots of new documentation (UTSL)
1188 - gui improvements:
1189         - keysyms for cursor keys and for next/previous page keys
1190         - scrollable output window
1191         - new internal commands: scroll up/down, page up/down
1192         - fix color of command output.
1193 - ortp: the --chunk_time and --header flags are no longer needed
1194 for para_recv/para_audiod as this information is now encoded in
1195 each rtp packet sent by para_server.
1196
1197 -------------------------------------------
1198 0.2.9 (2006-01-24) "progressive turbulence"
1199 -------------------------------------------
1200
1201 Internal audiod receivers/filters, the new error subsystem and
1202 a lot of small improvements.
1203
1204 - para_recv and para_filter are integrated into the para_audiod
1205   binary, i.e. audiod no longer spawns a new process for
1206   each receiver/filter. As para_recv and para_filter might be
1207   useful as standalone programs, they still get built (linked
1208   against the same object files that are also used for audiod).
1209 - further ortp timing improvements should reduce the CPU usage
1210   of the ortp receiver.
1211 - improved audio grabbing. The 'grab' command of para_audiod
1212   has its own set of command line options. Read the output of
1213   "para_audioc help grab" for more info.
1214 - oggdec: configurable input prebuffer size.
1215 - the new error subsystem gives better error diagnostics
1216   and reduces code size.
1217
1218 -----------------------------------------
1219 0.2.8 (2006-01-02) "dynamic accumulation"
1220 -----------------------------------------
1221
1222 The new modular filter design and the para_play-hangs bugfix.
1223
1224 - new executable: para_filter. It combines para_mp3dec,
1225   para_oggdec and para_compress. It also adds a further filter
1226   type, wav, that just inserts a wave header at the desired point
1227   of the filter chain. All 'piping' is done in-memory (i.e. no
1228   read/write operations are used).
1229 - para_play: fix a stupid bug that caused it to hang under
1230   certain circumstances.
1231
1232 -------------------------------------------
1233 0.2.7 (2006-12-27) "transparent invariance"
1234 -------------------------------------------
1235
1236 Not many user-visible changes but a fair amount of internal improvements.
1237
1238 - The http sender buffers data if it can not be sent
1239   out immediately (because the socket is not writable). This
1240   should prevent para_server from shutting down the connection
1241   too early on a loaded network.
1242 - para_play also prebuffers data if it is told to start at a
1243   future time by the --start_time option.
1244 - The return of para_recv: It combines para_ortp_recv and
1245   para_http_recv. Use the --receiver option to switch between
1246   the two. para_recv builds without libortp, but contains
1247   only the http receiver in this case.
1248 - update to ortp 0.8.1. As this ortp release contains incompatible
1249   changes, para_recv-0.2.7 won't link against older ortp libs.
1250 - improved ortp timings.
1251 - use of gcc-extensions that #define away for non-gcc and
1252   gcc < 3.0.
1253
1254 -------------------------------------------
1255 0.2.6 (2005-10-29) "recursive compensation"
1256 -------------------------------------------
1257
1258 Transparent session encryption (uses openssl's Alleged RC4 cipher),
1259 the internal find command and several other improvements and cleanups.
1260
1261 - Encrypt the session if encryption is requested by the client
1262   (default for para_client 0.2.6). This is backwards
1263   compatible, so older clients can still connect to para_server
1264   0.2.6. Use the new client option --plain to request an
1265   uncrypted session (off by default, must be set to on in
1266   order to connect to para_server 0.2.x with 0 <= x <= 5).
1267 - para_server uses an internal function to locate audio files
1268   rather than calling find(1). The server option
1269   --mysql_audio_file_dir replaces --mysql_find_cmd.
1270 - documentation update
1271 - man pages
1272 - header file cleanup
1273 - para_client code cleanup
1274 - para_gui: faster display of output of display commands
1275
1276 ------------------------------------------
1277 0.2.5 (2005-10-13) "aggressive resolution"
1278 ------------------------------------------
1279
1280 This release adds internal senders, i.e. no more external programs are
1281 spawned for sending out the audio data. There are two different senders
1282 available: The http sender and the ortp sender (former para_send which
1283 is no longer needed).
1284
1285 The new sender code has a plugin-like design so it can be easily
1286 extended should there be be any future need for supporting another
1287 network streaming protocol. All senders are completely independent of
1288 each other. In particular, the http and the ortp sender can operate
1289 in parallel.
1290
1291 - new server command: sender to control senders at runtime.
1292   Read the output of "para_server -h" and "para_client help
1293   sender" for more information.
1294 - para_recv renamed to para_ortp_recv
1295 - new executable: para_http_recv, a simple command line
1296   http receiver.
1297 - major afs/mp3/ogg code simplifications due to internal
1298   senders.
1299 - ogg timing improvements
1300 - fix several minor memory leaks (found by valgrind)
1301 - empty stream definitions work again
1302 - com_ne(): ignore errors on remove
1303 - audiod: fix segfault on server restart
1304
1305 ---------------------------------------
1306 0.2.4 (2005-09-21) "toxic anticipation"
1307 ---------------------------------------
1308
1309 Several small improvements, fixes and the new grab command.
1310
1311 - audiod:
1312         - new command: "grab" to grab the output of the stream reader
1313           or any filters. Read the output of "para_audioc help grab"
1314           for more information.
1315         - fix memory leak
1316         - code cleanup
1317 - audioc: new command line option: --bufsize to specify a
1318   buffer size different from the default size 8192.
1319 - improved error diagnostics for para_play.
1320 - new configure option: --enable-ssldir so search for openssl in
1321   non-standard places
1322 - sdl_gui: Make it look nice again for 1024x768
1323 - server: report total size of memory allocated with sbrk by malloc,
1324   new command line option: --announce_time
1325
1326 -----------------------------------------
1327 0.2.3 (2005-09-01) "hydrophilic movement"
1328 -----------------------------------------
1329
1330 Two new executables and major feature enhancements.
1331
1332 - audiod filters: It is now possible to specify arbitrary many
1333   (including none) filters for each supported audio
1334   format. This can be used e.g. for normalizing volume,
1335   transforming or grabbing the audio stream, or for using
1336   visualizers.  Read the output of "para_audiod -h" for the
1337   syntax of the new --filter_cmd option.
1338 - new executable: para_play, a tiny alsa player. It
1339   can play wave files or raw pcm (16 bit little endian)
1340   from stdin.
1341 - new executable: para_compress, a dynamic range compressor
1342   intended to keep audio output at a consistent volume. Derived
1343   from [AudioCompress](http://trikuare.cx/code/AudioCompress.html).
1344 - audiod: New option: --stream_delay. This can be used in
1345   a local network to syncronize the audio output of all
1346   clients that play the same stream.
1347
1348 ------------------------------------------
1349 0.2.2 (2005-08-19) "tangential excitation"
1350 ------------------------------------------
1351
1352 Mostly internal changes in this release, but also some new commands
1353 for the mysql database tool.
1354
1355 - cleanup exec.c, fix para_exec bug
1356 - compile time loglevel (log messages below the given level
1357   won't be compiled in, which reduces the size of the
1358   resulting binaries)
1359 - new log macros that shorten the size of the source code.
1360 - workaround a gcc-4.1 bug (?) that caused send_cred_buffer()
1361   to send only zeros. With this workaround, para_audioc works
1362   again.
1363 - avoid gcc-4 warning: conflicting types for built-in function 'clog'
1364 - new mysql commands: "rm" (remove entry), "mv" (rename entry) "ne"
1365   (new entry), "snp" (set numplayed). Read the manual for more
1366   information.
1367
1368 ---------------------------------------
1369 0.2.1 (2005-08-15) "surreal experience"
1370 ---------------------------------------
1371
1372 Here comes paraslash-0.2.1. It contains a couple of new features and,
1373 surprise, only minor bug fixes.
1374
1375 - kill noisy mp3 debug message
1376 - cleanup of the build system
1377 - para_server and para_client directly use the crypto routines
1378   of the openssl library rather than invoking the openssl command
1379   line utitlity
1380 - server/audiod: new option --user to switch to the given user
1381   when invoked as root. Read the output of "para_server -h" for
1382   more information.
1383 - gui/sdl_gui: new option --stat_cmd to be used to retrieve the
1384   status. Default: "para_audioc stat"
1385 - sdl_gui: new option --pic_cmd to be used to download the picture.
1386   Default: "para_client pic"
1387 - audiod: 5 slots ought to be enough for everybody
1388 - audiod: new status item: Uptime, kill hup command
1389
1390 ------------------------------------------
1391 0.2.0 (2005-08-06) "distributed diffusion"
1392 ------------------------------------------
1393
1394 After several month of increased development activity, paraslash-0.2.0
1395 has arrived. It contains many new features and is much more
1396 self-contained than the old 0.1.x series. Enjoy!
1397
1398 - para_server: fix hang on song change and crash on sighup.
1399   Speed up mysql queries. The DIR_LIKE macro is gone.
1400 - new executables: para_audiod, the local audio daemon that
1401   starts playback (uses SCM_CREDENTIALS socket magic) and
1402   para_audioc, the corresponding client.
1403 - new executables: para_mp3dec/para_oggdec, two really teensy
1404   decoders. para_mp3dec is based on libmad, para_oggdec requires
1405   libvorbisfile.
1406 - ovsend/ovrecv are capable of streaming ogg as well as mp3, so
1407   they are now called para_send and para_recv respectively.
1408 - documentation updates
1409 - para_gui is themable. For now there is the default theme that
1410   looks as before and the simple theme: blue and easy.
1411 - gui: audio streaming is now handled by audiod. Time display shows
1412   playback time rather than streaming time
1413 - slider: update to libzmw-0.2.0
1414 - para_krell: fix crash on server shutdown
1415 - switch from gzip to bzip2
1416
1417 ----------------------------------------
1418 0.1.7 (2005-04-18) "melting penetration"
1419 ----------------------------------------
1420
1421 The main change in this release is clearly the oggvorbis rewrite,
1422 but there are also lots of smaller changes. If you intend to use both
1423 the mp3 and the ogg plugin, it is recommended to use software mixing,
1424 e.g. the dmix plugin which is provided by ALSA.
1425
1426 - new executables: para_ovsend and para_ovrecv for sending/receiving
1427   oggvorbis files via rtp. Requires the open rtp library. Get it at
1428   http://www.linphone.org/ortp/
1429 - rewrite of the ogg_vorbis core code
1430 - configure detects libzmw and, if detected, includes
1431   para_slider to the list of binaries to be built by make
1432 - server stream writers read from their associated fifo rather
1433   than from stdin
1434 - slider: two new sliders, lastplayed and numplayed
1435 - fix nasty double free bug which caused random segfaults in case of
1436   mp3 files with invalid header information
1437 - gui: new command line option: --stream_timeout=seconds  to
1438   deactivate a slot if it is idle for that many seconds (default=`5')
1439 - diffstats
1440
1441 ---------------------------------------
1442 0.1.6 (2005-03-05) "asymptotic balance"
1443 ---------------------------------------
1444
1445 Only little user-visible changes in this release. Mainly bugfixes and
1446 core code cleanup. This is probably the most stable version ever if you
1447 stick to mp3...
1448
1449 - fix several memory leaks
1450 - rename default name of mysql database from "music" to "paraslash".
1451   Use para_server's  --mysql_database option if you do not want to
1452   rename your old database.
1453 - rework ogg vorbis code
1454 - make update command work on mysql servers with LOCAL_INFILE
1455   disabled
1456 - gui: improved stream I/O (slots)
1457 - simplified audio format API
1458 - para_pob_ogg is gone
1459
1460 ------------------------------------
1461 0.1.5 (2004-12-31) "opaque eternity"
1462 ------------------------------------
1463
1464 Let's slide gently into the new year.
1465
1466 - new: para_slider (not built automatically, type "make
1467   para_slider" to build). A toy for those who always felt that
1468   creating stream definitions is difficult. See screenshots,
1469   README and FEATURES for more info.
1470 - improved signal handling. Fixes server segfault on SIGHUP
1471   for linux kernels newer than Aug 24 2004 and makes para_gui
1472   race-free.
1473 - reload database tool on SIGHUP
1474 - improved help message for sl
1475 - do not log "broken pipe" messages as errors. They are
1476   perfectly ok.
1477 - fix wrong error message on permission errors
1478
1479 -----------------------------------------
1480 0.1.4 (2004-12-19) "tunneling transition"
1481 -----------------------------------------
1482
1483 Bugfix release. As expected, 0.1.3 introduced a bunch of new bugs.
1484 Hopefully, most of them got wiped out with this release. Some
1485 enhancements went also in.
1486
1487 - improved error diagnostics for all commands
1488 - stradd/picadd: overwrite previous contents if entry already
1489   exists, rather than returning errors
1490 - stradd: use current stream if invoked without args
1491 - faster (and hopefully more stable) ogg-vorbis handling
1492 - para_krell: reap children to avoid zombie-flooding in case
1493   no server is running
1494 - si: report also server pid
1495 - server: don't busy-loop if dbtool reports only invalid files.
1496 - gui: CTRL+C works again, fix stream_read command line option
1497 - fix pic_add, hist
1498 - fix mysql dbtool startup in case no database exists
1499 - many small fixes and cleanups
1500
1501 ---------------------------------------
1502 0.1.3: (2004-12-10) "vanishing inertia"
1503 ---------------------------------------
1504
1505 Starting from this release, the database tools are integrated in the
1506 server binary. This decreases server startup time, reduces code size
1507 and speeds up database commands. However, the layout of the underlying
1508 mysql database changed only slightly and 0.1.3 should be backwards
1509 compatible in that respect.
1510
1511 Visible changes:
1512
1513 - If mysql is not detected at compile time, or fails to init
1514   at runtime, fall back to the dopey database tool which should
1515   always work.
1516 - para_dbtool and dbtool.conf are gone. All mysql specific
1517   options are read from server.conf and are prefixed by 'mysql_'.
1518 - new command: cdt (change database tool)
1519 - new command line option: dbtool (choose startup database tool)
1520 - The name of current stream is now stored in the database,
1521   so paraslash remembers its current stream when restarted.
1522 - new command: csp (change stream and play)
1523 - para_gui also reports current database tool and server uptime
1524
1525 -------------------------------------------
1526 0.1.2: (2004-11-28) "spherical fluctuation"
1527 -------------------------------------------
1528
1529 Point release before the big dbtool changes go in.
1530
1531 - dbtool: rename ca to cam (copy all meta data). It now also
1532   copies numplayed and lastplayed time as well as the picture
1533   id.
1534 - fix endless-loop-bug caused by mp3 files with invalid header
1535
1536 -----------------------------------------
1537 0.1.1: (2004-11-05) "floating atmosphere"
1538 -----------------------------------------
1539
1540 - gkrellm plugin
1541 - new dbtool command: mbox. Browse your sound-file collection
1542   with your favorite mail reader.
1543 - several small fixes
1544
1545 -------------------------------------
1546 0.1.0: (2004-10-22) "rotating cortex"
1547 -------------------------------------
1548
1549 - fix logging bug for loglevel > VERBOSE
1550 - fix skip command
1551 - correct timings for vbr mp3s
1552 - modular audio format support
1553 - ogg-vorbis support (experimental)
1554 - new server option: autoplay
1555
1556 -----------------------------------------
1557 0.0.99: (2004-07-25) "harmonic deviation"
1558 -----------------------------------------
1559
1560 - rename projectname from icc to paraslash (play, archive, rate
1561   and stream large audio sets happily)
1562 - paraslash is no longer restricted to one particular audio
1563   streaming software
1564 - new dbtool commands (stradd, strq, strdel) for easy stream
1565   managment w/o configuration file. That obsoletes stream_defs
1566   file/config option for dbtool.
1567 - picadd accepts jpeg data from stdin
1568 - new server commands: ps (select previous stream), sc (song change)
1569 - new default pictures for sdl_gui
1570 - gui: new key_map option for binding commands and internal
1571   functions to arbitrary keys, nice help screen, rip out
1572   soundcard/linux specific stuff, avoid noise artefacts while jumping,
1573   show silly logo on startup
1574 - new executables: para_fade for fading volume, para_dbadm for
1575   manipulating attributes
1576 - cdb adds _all_ tables to mysql database
1577 - revised and beautified documentation
1578 - sample dbtool rewritten in C
1579 - autoconf
1580
1581 ---------------------------------------------
1582 0.0.98: (2003-12-26) "incremental smoothness"
1583 ---------------------------------------------
1584
1585 - kick icecast in favour of poc. That removes some races and reduces
1586   core code considerably.
1587 - cbr/vbr is displayed by stat and gui/sdl_gui. New status flags
1588   give finer info on afs' status.
1589 - gui can start decoder (see config options). Further new gui
1590   commands: refresh (^L), jmp (F1-F10)
1591 - gui rereads conf on SIGUSR1 instead of SIGHUP. SIGHUP
1592   terminates gui. This fixes dead instances consuming memory
1593   continuously.
1594 - new dbtool command: verb for sending verbatim sql queries.
1595 - fix pid_list races (by removing pid_list)
1596 - codename funnies
1597
1598 --------------------
1599 0.0.97: (2003-10-26)
1600 --------------------
1601
1602 - installation prefix now defaults to /usr/local
1603 - new commands for gui: snozze, sleep and reread config
1604 - config file for gui and sdl_gui
1605 - fix problems with filenames containing funny characters
1606   (reported by Thomas Forell)
1607 - improved signal handling for gui, now it rereads conf on SIGHUP
1608 - new dbtool command: cdb (create database)
1609 - switch from argtable to gengetopt
1610 - major code cleanup and speed improvements
1611 - fix several potential buffer overflows
1612 - many small fixes and cleanups
1613
1614 -------------------
1615 0.0.96 (2003-08-30)
1616 -------------------
1617
1618 - easy stream_defs syntax
1619 - sdl_gui can display images associated to the file being played
1620 - Major feature enhancements for icc_gui including dynamic text
1621   placement and the top/bottom window design
1622 - vrfy/clean now also checks for NULL values in attributes as
1623   well as for invalid picture pointers
1624 - fix long outstanding case sensitivity bug
1625 - many small fixes and cleanups
1626
1627 -------------------
1628 0.0.95 (2003-06-29)
1629 -------------------
1630
1631 - sdl gui runs much faster
1632 - new dbtool command: ca (copy attributes)
1633 - count and display number of times the song has been played
1634 - new feature: scoring
1635 - command line options for sdl_gui
1636 - simpler syntax of streams file
1637 - decrease network traffic of stat
1638 - fix zombie bug
1639 - many small fixes and cleanups
1640
1641 -------------------
1642 0.0.94 (2003-05-04)
1643 -------------------
1644
1645 - new server command: ns (next stream)
1646 - new icc_gui command: c (change stream)
1647 - internal mp3info
1648 - stat shows also id3 tag info
1649 - new sdl based gui
1650 - log flodding bug fixed
1651 - many small fixes and cleanups
1652
1653 -------------------
1654 0.0.93 (2003-03-28)
1655 -------------------
1656
1657 - colors for icc_gui
1658 - icc_gui sets volume directly (linux only)
1659 - proper locking that fixes some races
1660 - fix security bug that caused commands to be executed even
1661   with unsufficient permissions
1662 - new command: hup to make all servers reread their configuration file
1663 - icecast meta data streaming
1664 - many small fixes and cleanups