kill mallinfo
[paraslash.git] / NEWS
1 NEWS
2 ====
3
4 0.?.? (to be announced) "oriented abstraction"
5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
7         o the new optional dccp sender/receiver. It uses the datagram
8         congestion control protocol. You'll need a fairly new kernel
9         for this.
10
11         o compress filter speed improvements
12
13         o update to libortp-0.9.1
14
15         o update to gengetopt-2.17
16
17
18 0.2.11 (2006-03-11) "atomic duality"
19 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20
21 Here it is, the first paraslash release developed with git. There
22 are fairly many user-visible changes in this release. As two out of
23 the three "database tools" of paraslash don't use a database at all,
24 they are now called "audio file selectors" instead.
25
26
27         o the cdt command (change database tool) becomes chs (change
28         selector)
29
30         o no more colon separators: The syntax of some options of
31         para_audiod and para_filter have changed. Use --help for
32         more info (and some examples).
33
34         o update to gengetopt-2.16 (thanks to Lorenzo Bettini)
35
36         o switch from cvs to git (should've done that earlier)
37
38         o the new ipc subsystem
39
40         o new audio file selector: playlist
41
42         o para_server: the dopey selector is now called "random",
43         and is the default selector. Use the --selector option to
44         choose another selector at startup, or the chs command to
45         change the selector at runtime.
46
47         o X86_64 fixes (thanks to Steffen Klassert)
48
49         o para_play fixes
50
51
52 0.2.10 (2006-02-17) "cyclic attractor"
53 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
54
55 Huge documentation update, a scrollable window for para_gui, ortp
56 improvements, and of course many small fixes not mentioned here.
57 The diffstat below is rather misleading as most insertions are due
58 to the new source documentation.
59
60         o autoconf cleanup
61
62         o para_server also uses the new error subsystem
63
64         o lots of new documentation (UTSL)
65
66         o gui improvements:
67                 - keysyms for cursor keys and for next/previous page keys
68                 - scrollable output window
69                 - new internal commands: scroll up/down, page up/down
70                 - fix color of command output.
71
72         o ortp: the --chunk_time and --header flags are no longer needed
73         for para_recv/para_audiod as this information is now encoded in
74         each rtp packet sent by para_server.
75
76 New files: daemon.h net.h ringbuffer.c ringbuffer.h string.h web/para.css
77 Doxyfile
78
79  Makefile.in               |   99 ++-----
80  NEWS                      |   19 +
81  README                    |    6
82  README.mysql              |   21 -
83  afs.c                     |  223 +++++++++------
84  afs.h                     |  140 ++++++++--
85  audioc.c                  |    5
86  audiod.c                  |  503 +++++++++++++++++-------------------
87  audiod.h                  |   11
88  client.c                  |   12
89  close_on_fork.c           |   43 +++
90  close_on_fork.h           |    1
91  command.c                 |  283 ++++++++------------
92  compress.c                |   34 +-
93  configure.ac              |  402 +++++++++++++---------------
94  crypt.c                   |   63 ++--
95  crypt.h                   |   12
96  daemon.c                  |   76 ++++-
97  db.c                      |   90 ++++--
98  db.h                      |   97 ++++++
99  dbadm.c                   |   23 +
100  dopey.c                   |   59 ++--
101  error.h                   |  315 +++++++++++++++++-----
102  exec.c                    |   55 +++
103  fade.c                    |    4
104  filter.c                  |   23 -
105  filter.ggo                |    2
106  filter.h                  |  307 +++++++++++++++++++--
107  filter_chain.c            |  147 +++++++---
108  grab_client.c             |   87 ++++--
109  grab_client.h             |   41 +-
110  gui.c                     |  422 ++++++++++++++++++++++--------
111  gui_common.c              |    2
112  http.h                    |    1
113  http_recv.c               |   99 ++++---
114  http_send.c               |  164 ++++++++---
115  list.h                    |    5
116  mp3.c                     |  246 +++++++++--------
117  mp3dec.c                  |   88 +++---
118  mysql.c                   |  339 ++++++++++--------------
119  net.c                     |  271 ++++++++++++++-----
120  ogg.c                     |   86 +++---
121  oggdec.c                  |   86 +++---
122  ortp.h                    |   31 ++
123  ortp_recv.c               |  162 ++++++-----
124  ortp_recv.ggo             |    2
125  ortp_send.c               |  138 +++++----
126  para.h                    |   93 ------
127  play.c                    |   20 -
128  recv.c                    |   11
129  recv.h                    |  147 +++++++++-
130  recv_common.c             |    9
131  sdl_gui.c                 |   21 -
132  send.h                    |   82 +++++
133  server.c                  |  119 +++++---
134  server.h                  |  117 ++++++--
135  signal.c                  |   70 ++++-
136  slider.c                  |    5
137  stat.c                    |   89 +++++-
138  string.c                  |  243 ++++++++++-------
139  time.c                    |   78 ++++-
140  wav.c                     |   26 -
141  web/documentation.in.html |   14 -
142  web/header.html           |   13
143  web/index.in.html         |    1
144  65 files changed, 4146 insertions(+), 2357 deletions(-)
145
146 0.2.9 (2006-01-24) "progressive turbulence"
147 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148
149 Internal audiod receivers/filters, the new error subsystem and
150 a lot of small improvements.
151
152         o para_recv and para_filter are integrated into the para_audiod
153           binary, i.e. audiod no longer spawns a new process for
154           each receiver/filter. As para_recv and para_filter might be
155           useful as standalone programs, they still get built (linked
156           against the same object files that are also used for audiod).
157
158         o further ortp timing improvements should reduce the CPU usage
159           of the ortp receiver.
160
161         o improved audio grabbing. The 'grab' command of para_audiod
162           has its own set of command line options. Read the output of
163           "para_audioc help grab" for more info.
164
165         o oggdec: configurable input prebuffer size.
166
167         o the new error subsystem gives better error diagnostics
168           and reduces code size.
169
170 New files: audiod.h error.h grab_client.c grab_client.ggo grab_client.h
171 http_recv.ggo ortp_recv.ggo recv_common.c
172
173  FEATURES                |   49 -
174  INSTALL                 |   22
175  Makefile.in             |   87 +-
176  NEWS                    |   73 ++
177  README                  |   89 +-
178  README.mysql            |   18
179  audioc.c                |    5
180  audiod.c                | 1243 +++++++++++++++-----------------------
181  audiod.ggo              |   97 ++
182  command.c               |    5
183  compress.c              |   44 -
184  compress_filter.ggo     |    4
185  configure.ac            |  127 +++
186  daemon.c                |   12
187  exec.c                  |   34 -
188  filter.c                |   66 +-
189  filter.h                |   24
190  filter_chain.c          |  126 ++-
191  gcc-compat.h            |    8
192  http_recv.c             |   56 +
193  http_send.c             |   35 -
194  mp3.c                   |   12
195  mp3dec.c                |   27
196  net.c                   |  133 ++--
197  oggdec.c                |  108 +--
198  oggdec_filter.ggo       |    3
199  ortp.h                  |    2
200  ortp_recv.c             |  290 +++++---
201  ortp_send.c             |  187 ++---
202  para.h                  |   17
203  play.c                  |   17
204  recv.c                  |  101 +--
205  recv.ggo                |   15
206  recv.h                  |   51 +
207  scripts/demo-script     |   12
208  server.c                |   15
209  signal.c                |   11
210  skencil/overview.sk     |  300 ++++-----
211  stat.c                  |   11
212  string.c                |  170 ++++-
213  wav.c                   |   12
214  web/demo.in.html        |   72 --
215  web/download.in.html    |    3
216  web/index.in.html       |    1
217  web/license.in.html     |    5
218  web/screenshots.in.html |    4
219  46 files changed, 2042 insertions(+), 1761 deletions(-)
220
221 0.2.8 (2006-01-02) "dynamic accumulation"
222 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
223
224 The new modular filter design and the para_play-hangs bugfix.
225
226         o new executable: para_filter. It combines para_mp3dec,
227           para_oggdec and para_compress. It also adds a further filter
228           type, wav, that just inserts a wave header at the desired point
229           of the filter chain. All 'piping' is done in-memory (i.e. no
230           read/write operations are used).
231
232         o para_play: fix a stupid bug that caused it to hang under
233           certain circumstances.
234
235 New files: compress_filter.ggo filter.c filter.ggo file filter.h
236 filter_chain.c oggdec_filter.ggo wav.c
237
238  INSTALL           |    4
239  Makefile.in       |   36 +++++---
240  NEWS              |   15 +++
241  README            |   25 ++----
242  command.c         |    8 +
243  compress.c        |  149 ++++++++++++++++++++----------------
244  configure.ac      |   37 +++++---
245  http_recv.c       |  121 ++++++++++++++++++-----------
246  mp3dec.c          |  216 +++++++++++++++++++++-------------------------------
247  oggdec.c          |  223 ++++++++++++++++++++++++++++++++++++------------------
248  ortp_recv.c       |  167 ++++++++++++++++++++--------------------
249  ortp_send.c       |    2
250  play.c            |    2
251  recv.c            |   44 +++++++---
252  recv.ggo          |   12 --
253  recv.h            |   37 +++++++-
254  server.ggo        |    2
255  web/index.in.html |    1
256  18 files changed, 631 insertions(+), 470 deletions(-)
257
258 0.2.7 (2006-12-27) "transparent invariance"
259 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
260 Not many user-visible changes but a fair amount of internal improvements.
261
262
263         o The http sender buffers data if it can not be sent
264           out immediately (because the socket is not writable). This
265           should prevent para_server from shutting down the connection
266           too early on a loaded network.
267
268         o para_play also prebuffers data if it is told to start at a
269           future time by the --start_time option.
270
271         o The return of para_recv: It combines para_ortp_recv and
272           para_http_recv. Use the --receiver option to switch between
273           the two. para_recv builds without libortp, but contains
274           only the http receiver in this case.
275
276         o update to ortp 0.8.1. As this ortp release contains incompatible
277           changes, para_recv-0.2.7 won't link against older ortp libs.
278
279         o improved ortp timings.
280
281         o use of gcc-extensions that #define away for non-gcc and
282           gcc < 3.0.
283
284 New files: gcc-compat.h
285
286  CREDITS      |   14 +-
287  FEATURES     |   10 -
288  INSTALL      |   36 +++--
289  Makefile.in  |  171 +++++++++++++++++----------
290  NEWS         |   30 ++++
291  README       |  128 ++++++++------------
292  README.mysql |    4
293  afs.c        |  113 +++++++++++++-----
294  afs.h        |    2
295  audioc.c     |   21 +++
296  audiod.c     |  226 +++++++++++++++++++++---------------
297  audiod.ggo   |    4
298  client.c     |    9 -
299  command.c    |   71 +++++++----
300  compress.c   |   15 +-
301  compress.ggo |    4
302  configure.ac |   30 ++--
303  crypt.c      |    2
304  daemon.c     |    6
305  db.c         |    4
306  dbadm.c      |   46 ++-----
307  dopey.c      |   16 +-
308  fade.c       |    3
309  gui.c        |   77 ++++++------
310  http_recv.c  |  143 +++++++++++++----------
311  http_send.c  |  217 ++++++++++++++++++++++-------------
312  index.html   |  154 +++++++++++++------------
313  list.h       |  361 -----------------------------------------------------------
314  mp3.c        |   17 +-
315  mp3dec.c     |    5
316  mysql.c      |   57 ++++++---
317  net.c        |   12 +
318  ogg.c        |   26 ++--
319  oggdec.c     |   34 +++--
320  ortp.h       |    2
321  ortp_recv.c  |  263 +++++++++++++++++++++---------------------
322  ortp_send.c  |   96 ++++++++++-----
323  para.h       |   51 +++-----
324  play.c       |  173 +++++++++++++++++++---------
325  play.ggo     |    2
326  sdl_gui.c    |   27 +++-
327  send.h       |    2
328  server.c     |  100 ++++++++--------
329  stat.c       |   68 ++++++++---
330  string.c     |   41 +++---
331  45 files changed, 1500 insertions(+), 1393 deletions(-)
332
333 0.2.6 (2005-10-29) "recursive compensation"
334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
335 Transparent session encryption (uses openssl's Alleged RC4 cipher),
336 the internal find command and several other improvements and cleanups.
337
338         o Encrypt the session if encryption is requested by the client
339           (default for para_client 0.2.6). This is backwards
340           compatible, so older clients can still connect to para_server
341           0.2.6. Use the new client option --plain to request an
342           uncrypted session (off by default, must be set to on in
343           order to connect to para_server 0.2.x with 0 <= x <= 5).
344
345         o para_server uses an internal function to locate audio files
346           rather than calling find(1). The server option
347           --mysql_audio_file_dir replaces --mysql_find_cmd.
348
349         o documentation update
350
351         o man pages
352
353         o header file cleanup
354
355         o para_client code cleanup
356
357         o para_gui: faster display of output of display commands
358
359 New files: afs.h close_on_fork.c close_on_fork.h db.c db.h rc4.h
360
361  1.0          |    3
362  INSTALL      |   51 +-
363  Makefile.in  |   53 +--
364  NEWS         |   28 +
365  README       |   27 -
366  README.mysql |   45 +-
367  SFont.c      |   20 -
368  afs.c        |   51 --
369  audioc.c     |    6
370  audiod.c     |  303 +++++++++--------
371  client.c     |  174 +++-------
372  client.ggo   |    1
373  command.c    |  608 ++++++++++++++++++++---------------
374  compress.c   |    3
375  compress.ggo |    4
376  configure.ac |    2
377  crypt.c      |   50 +-
378  crypt.h      |    2
379  dopey.c      |  136 +++++--
380  exec.c       |   39 --
381  fade.c       |    4
382  gui.c        |   74 ++--
383  http_recv.c  |    4
384  http_send.c  |   51 +-
385  index.html   |   12
386  krell.c      |    2
387  mp3.c        |    5
388  mysql.c      | 1008 ++++++++++++++++++++++++++++++++---------------------------
389  net.c        |  122 ++-----
390  ogg.c        |    5
391  ortp_send.c  |   37 +-
392  para.h       |   39 +-
393  send.h       |    2
394  server.c     |   49 +-
395  server.ggo   |    2
396  server.h     |   68 ---
397  stat.c       |  132 ++++---
398  string.c     |   33 -
399  38 files changed, 1738 insertions(+), 1517 deletions(-)
400
401 0.2.5 (2005-10-13) "aggressive_resolution"
402 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
403 This release adds internal senders, i.e. no more external programs are
404 spawned for sending out the audio data. There are two different senders
405 available: The http sender and the ortp sender (former para_send which
406 is no longer needed).
407
408 The new sender code has a plugin-like design so it can be easily
409 extended should there be be any future need for supporting another
410 network streaming protocol. All senders are completely independent of
411 each other. In particular, the http and the ortp sender can operate
412 in parallel.
413
414         o new server command: sender to control senders at runtime.
415           Read the output of "para_server -h" and "para_client help
416           sender" for more information.
417
418         o para_recv renamed to para_ortp_recv
419
420         o new executable: para_http_recv, a simple command line
421           http receiver.
422
423         o major afs/mp3/ogg code simplifications due to internal
424           senders.
425
426         o ogg timing improvements
427
428         o fix several minor memory leaks (found by valgrind)
429
430         o empty stream definitions work again
431
432         o com_ne(): ignore errors on remove
433
434         o audiod: fix segfault on server restart
435
436 New files: http.h http_recv.c http_recv.ggo http_send.c ortp.h ortp_recv.c
437         ortp_recv.ggo ortp_send.c
438
439  FEATURES            |   27 +++-
440  INSTALL             |   19 +--
441  Makefile.in         |   54 ++++-----
442  NEWS                |   36 ++++++
443  README              |   45 ++++---
444  afs.c               |  311 +++++++++++++++-------------------------------------
445  audioc.c            |   10 +
446  audiod.c            |   82 +++++++------
447  audiod.ggo          |    2
448  command.c           |  184 +++++++++++++++++++++++++++---
449  configure.ac        |   36 ++++--
450  daemon.c            |   10 +
451  exec.c              |   33 -----
452  gui.c               |    6 -
453  index.html          |    6 -
454  mp3.c               |  144 ++++--------------------
455  mysql.c             |   52 ++++----
456  net.c               |   58 ++++++++-
457  ogg.c               |  289 ++++++++++++++----------------------------------
458  oggdec.c            |   19 ++-
459  para.h              |   23 ++-
460  server.c            |  128 ++++++++++++++-------
461  server.ggo          |   17 ++
462  server.h            |   40 ++++--
463  skencil/overview.sk |   86 +++-----------
464  string.c            |   51 +++++---
465  26 files changed, 870 insertions(+), 898 deletions(-)
466
467
468 0.2.4 (2005-09-21) "toxic anticipation"
469 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
470 Several small improvements, fixes and the new grab command.
471
472         o audiod:
473                 - new command: "grab" to grab the output of the stream reader
474                   or any filters. Read the output of "para_audioc help grab"
475                   for more information.
476                 - fix memory leak
477                 - code cleanup
478
479         o audioc: new command line option: --bufsize to specify a
480           buffer size different from the default size 8192.
481
482         o improved error diagnostics for para_play.
483
484         o new configure option: --enable-ssldir so search for openssl in
485           non-standard places
486
487         o sdl_gui: Make it look nice again for 1024x768
488
489         o server: report total size of memory allocated with sbrk by malloc,
490           new command line option: --announce_time
491
492 New files: list.h
493
494  Makefile.in  |   39 ++-
495  NEWS         |   24 ++
496  README       |   22 +-
497  afs.c        |    9
498  audioc.c     |   55 ++++-
499  audioc.ggo   |    1
500  audiod.c     |  577 ++++++++++++++++++++++++++++++++++++++++-------------------
501  client.c     |   20 +-
502  client.ggo   |   12 -
503  command.c    |   14 -
504  configure.ac |   64 +++---
505  crypt.c      |    8
506  daemon.c     |    6
507  gui.c        |   52 ++---
508  gui_common.c |   70 -------
509  index.html   |    2
510  mp3.c        |    2
511  mp3dec.c     |    6
512  net.c        |    2
513  ogg.c        |    2
514  oggdec.c     |    8
515  para.h       |    8
516  play.c       |   51 ++---
517  sdl_gui.c    |   53 ++---
518  server.c     |   48 +---
519  server.ggo   |    1
520  server.h     |    2
521  stat.c       |   65 ++++++
522  28 files changed, 744 insertions(+), 479 deletions(-)
523
524 0.2.3 (2005-09-01) "hydrophilic movement"
525 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
526 Two new executables and major feature enhancements.
527
528         o audiod filters: It is now possible to specify arbitrary many
529           (including none) filters for each supported audio
530           format. This can be used e.g. for normalizing volume,
531           transforming or grabbing the audio stream, or for using
532           visualizers.  Read the output of "para_audiod -h" for the
533           syntax of the new --filter_cmd option.
534
535         o new executable: para_play, a tiny alsa player. It
536           can play wave files or raw pcm (16 bit little endian)
537           from stdin.
538
539         o new executable: para_compress, a dynamic range compressor
540           intended to keep audio output at a consistent volume. Derived
541           from AudioCompress, http://trikuare.cx/code/AudioCompress.html.
542
543         o audiod: New option: --stream_delay. This can be used in
544           a local network to syncronize the audio output of all
545           clients that play the same stream.
546
547 New files: compress.c compress.ggo play.c play.ggo
548
549  CREDITS             |    2
550  FEATURES            |   31 +--
551  Makefile.in         |   31 ++-
552  NEWS                |   24 ++
553  README              |    8
554  afs.c               |   14 -
555  audiod.c            |  463 +++++++++++++++++++++++++++++++++++++++++-----------
556  audiod.ggo          |    7
557  configure.ac        |   16 +
558  index.html          |   19 ++
559  mysql.c             |   17 +
560  net.c               |    8
561  recv.c              |   42 +++-
562  scripts/demo-script |    2
563  signal.c            |   22 ++
564  stat.c              |    2
565  16 files changed, 542 insertions(+), 166 deletions(-)
566
567 0.2.2 (2005-08-19) "tangential excitation"
568 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
569 Mostly internal changes in this release, but also some new commands
570 for the mysql database tool.
571
572         o cleanup exec.c, fix para_exec bug
573         o compile time loglevel (log messages below the given level
574           won't be compiled in, which reduces the size of the
575           resulting binaries)
576         o new log macros that shorten the size of the source code.
577         o workaround a gcc-4.1 bug (?) that caused send_cred_buffer()
578           to send only zeros. With this workaround, para_audioc works
579           again.
580         o avoid gcc-4 warning: conflicting types for built-in function 'clog'
581         o new mysql commands: "rm" (remove entry), "mv" (rename entry) "ne"
582           (new entry), "snp" (set numplayed). Read the manual for more
583           information.
584
585  INSTALL             |   10 -
586  Makefile.in         |    7 -
587  NEWS                |   19 +++
588  README              |    5
589  afs.c               |   75 ++++++--------
590  audioc.c            |    5
591  audiod.c            |  137 ++++++++++++-------------
592  client.c            |   83 +++++++--------
593  command.c           |   85 +++++++---------
594  configure.ac        |    2
595  crypt.c             |    6 -
596  daemon.c            |   26 ++--
597  dbadm.c             |  128 ++++++++++++------------
598  dopey.c             |    9 -
599  exec.c              |  180 ++++++----------------------------
600  fade.c              |   76 +++++++-------
601  gui.c               |   88 ++++++++--------
602  krell.c             |  113 ++++++++++-----------
603  mp3.c               |   49 ++++-----
604  mysql.c             |  275 ++++++++++++++++++++++++++++++++++++++++++++--------
605  net.c               |   44 ++------
606  ogg.c               |   91 ++++++++---------
607  oggdec.c            |    2
608  para.h              |  110 +++++++++++++-------
609  recv.c              |   26 ++--
610  scripts/demo-script |    4
611  sdl_gui.c           |    3
612  send.c              |   26 ++--
613  server.c            |   74 ++++++-------
614  signal.c            |   19 +--
615  skencil/overview.sk |   34 +++---
616  slider.c            |    4
617  stat.c              |   27 ++---
618  string.c            |   62 +++++++----
619  34 files changed, 1000 insertions(+), 904 deletions(-)
620
621 0.2.1 (2005-08-15) "surreal experience"
622 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
623 Here comes paraslash-0.2.1. It contains a couple of new features and,
624 surprise, only minor bug fixes.
625
626         o kill noisy mp3 debug message
627         o cleanup of the build system
628         o para_server and para_client directly use the crypto routines
629           of the openssl library rather than invoking the openssl command
630           line utitlity
631         o server/audiod: new option --user to switch to the given user
632           when invoked as root. Read the output of "para_server -h" for
633           more information.
634         o gui/sdl_gui: new option --stat_cmd to be used to retrieve the
635           status. Default: "para_audioc stat"
636         o sdl_gui: new option --pic_cmd to be used to download the picture.
637           Default: "para_client pic"
638         o audiod: 5 slots ought to be enough for everybody
639         o audiod: new status item: Uptime, kill hup command
640
641
642 New files: crypt.c crypt.h
643
644  1.0                 |    2
645  FEATURES            |   18 +++----
646  INSTALL             |   37 ++++++++++-----
647  Makefile.in         |  114 +++++++++++++++++++++---------------------------
648  NEWS                |   38 +++++++++++-----
649  README              |   27 +++++------
650  afs.c               |    6 --
651  audiod.c            |  117 ++++++++++++++++++-------------------------------
652  audiod.ggo          |    1
653  client.c            |   78 +++------------------------------
654  command.c           |  103 +++++++------------------------------------
655  configure.ac        |   78 ++++++++++++++++++++++-----------
656  daemon.c            |   44 +++++++++++++++++-
657  dbadm.c             |    7 +-
658  dopey.c             |   14 ++---
659  fade.c              |    3 -
660  gui.c               |    7 +-
661  gui.ggo             |    3 -
662  gui_common.c        |    7 ++
663  gui_theme.c         |  122 ++++++++++++++++++++++++++++------------------------
664  index.html          |   38 ++++++++++------
665  mp3.c               |   79 +++++++++++++++++----------------
666  mp3dec.c            |    8 +--
667  mysql.c             |   14 ++++-
668  net.c               |    3 -
669  ogg.c               |   21 ++++----
670  para.h              |   11 ++--
671  sdl_gui.c           |   19 ++++----
672  sdl_gui.ggo         |   10 ++--
673  server.c            |   19 --------
674  server.ggo          |    3 -
675  server.h            |    3 -
676  slider.c            |   19 +++-----
677  stat.c              |   24 +++++-----
678  string.c            |   12 ++++-
679  36 files changed, 530 insertions(+), 581 deletions(-)
680
681
682 0.2.0 (2005-08-06) "distributed diffusion"
683 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
684 After several month of increased development activity, paraslash-0.2.0
685 has arrived. It contains many new features and is much more
686 self-contained than the old 0.1.x series. Enjoy!
687
688
689         o para_server: fix hang on song change and crash on sighup.
690           Speed up mysql queries. The DIR_LIKE macro is gone.
691         o new executables: para_audiod, the local audio daemon that
692           starts playback (uses SCM_CREDENTIALS socket magic) and
693           para_audioc, the corresponding client.
694         o new executables: para_mp3dec/para_oggdec, two really teensy
695           decoders. para_mp3dec is based on libmad, para_oggdec requires
696           libvorbisfile.
697         o ovsend/ovrecv are capable of streaming ogg as well as mp3, so
698           they are now called para_send and para_recv respectively.
699         o documentation updates
700         o para_gui is themable. For now there is the default theme that
701           looks as before and the simple theme: blue and easy.
702         o gui: audio streaming is now handled by audiod. Time display shows
703           playback time rather than streaming time
704         o slider: update to libzmw-0.2.0
705         o para_krell: fix crash on server shutdown
706         o switch from gzip to bzip2
707
708 New files: audioc.c audioc.ggo audiod.c audiod.ggo daemon.c gui_theme.c mp3dec.c oggdec.c
709         recv.c recv.ggo send.c send.ggo stat.c
710
711  1.0                |    1
712  COPYING            |    2
713  CREDITS            |    4
714  FEATURES           |   24 -
715  INSTALL            |  131 ++++-
716  Makefile.in        |   83 ++-
717  NEWS               |   58 +-
718  PUBLIC_KEY         |   43 +
719  README             |  125 +++--
720  README.mysql       |   18
721  afs.c              |  330 +++++++++-----
722  client.c           |   41 -
723  client.conf.sample |    2
724  client.ggo         |    5
725  command.c          |  350 +++++++--------
726  configure.ac       |   38 +
727  dopey.c            |    2
728  exec.c             |  242 ++++++----
729  fade.c             |   43 -
730  fade.ggo           |    2
731  gui.c              | 1169 +++++++++--------------------------------------------
732  gui.ggo            |   10
733  gui_common.c       |   58 +-
734  index.html         |  176 ++++++-
735  krell.c            |    4
736  mp3.c              |  341 +++++++++------
737  mysql.c            |  180 ++++----
738  net.c              |  161 +++++++
739  ogg.c              |  444 +++++++++++++-------
740  para.h             |  103 ++++
741  sdl_gui.c          |  708 ++++++++++++++------------------
742  sdl_gui.ggo        |    2
743  server.c           |  175 +++----
744  server.ggo         |   13
745  server.h           |   20
746  slider.c           |  160 +++----
747  string.c           |   63 ++
748  time.c             |  103 +++-
749  38 files changed, 2821 insertions(+), 2613 deletions(-)
750
751
752 0.1.7 (2005-04-18) "melting penetration"
753 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
754 The main change in this release is clearly the oggvorbis rewrite,
755 but there are also lots of smaller changes. If you intend to use both
756 the mp3 and the ogg plugin, it is recommended to use software mixing,
757 e.g. the dmix plugin which is provided by ALSA.
758
759         o new executables: para_ovsend and para_ovrecv for sending/receiving
760           oggvorbis files via rtp. Requires the open rtp library. Get it at
761           http://www.linphone.org/ortp/
762         o rewrite of the ogg_vorbis core code
763         o configure detects libzmw and, if detected, includes
764           para_slider to the list of binaries to be built by make
765         o server stream writers read from their associated fifo rather
766           than from stdin
767         o slider: two new sliders, lastplayed and numplayed
768         o fix nasty double free bug which caused random segfaults in case of
769           mp3 files with invalid header information
770         o gui: new command line option: --stream_timeout=seconds  to
771           deactivate a slot if it is idle for that many seconds (default=`5')
772         o diffstats
773
774 New files: ovrecv.c ovrecv.ggo ovsend.c ovsend.ggo time.c
775  CREDITS         |    2
776  FEATURES        |   14 -
777  Makefile.in     |   20 +
778  NEWS            |   25 ++
779  README          |   28 ++
780  README.mysql    |   18 -
781  afs.c           |  238 ++++++++++++++++-------
782  autogen.sh      |    5
783  bash_completion |    2
784  command.c       |    9
785  configure.ac    |  115 ++++++++---
786  exec.c          |    6
787  gui.c           |    8
788  gui.ggo         |    1
789  krell.c         |   14 -
790  mp3.c           |  117 +++++++----
791  mysql.c         |    4
792  ogg.c           |  578 +++++++++++++++++++++-----------------------------------
793  para.h          |    9
794  server.c        |   65 ++++--
795  server.ggo      |    2
796  server.h        |   17 +
797  slider.c        |   68 ++++++
798  string.c        |   11 +
799  24 files changed, 794 insertions(+), 582 deletions(-)
800
801
802 0.1.6 (2005-03-05) "asymptotic balance"
803 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
804 Only little user-visible changes in this release. Mainly bugfixes and
805 core code cleanup. This is probably the most stable version ever if you
806 stick to mp3...
807
808         o fix several memory leaks
809         o rename default name of mysql database from "music" to "paraslash".
810           Use para_server's  --mysql_database option if you do not want to
811           rename your old database.
812         o rework ogg vorbis code
813         o make update command work on mysql servers with LOCAL_INFILE
814           disabled
815         o gui: improved stream I/O (slots)
816         o simplified audio format API
817         o para_pob_ogg is gone
818
819 0.1.5 (2004-12-31) "opaque eternity"
820 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
821 Let's slide gently into the new year.
822
823         o new: para_slider (not built automatically, type "make
824           para_slider" to build). A toy for those who always felt that
825           creating stream definitions is difficult. See screenshots,
826           README and FEATURES for more info.
827         o improved signal handling. Fixes server segfault on SIGHUP
828           for linux kernels newer than Aug 24 2004 and makes para_gui
829           race-free.
830         o reload database tool on SIGHUP
831         o improved help message for sl
832         o do not log "broken pipe" messages as errors. They are
833           perfectly ok.
834         o fix wrong error message on permission errors
835
836 0.1.4 (2004-12-19) "tunneling transition"
837 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
838 Bugfix release. As expected, 0.1.3 introduced a bunch of new bugs.
839 Hopefully, most of them got wiped out with this release. Some
840 enhancements went also in.
841
842         o improved error diagnostics for all commands
843         o stradd/picadd: overwrite previous contents if entry already
844           exists, rather than returning errors
845         o stradd: use current stream if invoked without args
846         o faster (and hopefully more stable) ogg-vorbis handling
847         o para_krell: reap children to avoid zombie-flooding in case
848           no server is running
849         o si: report also server pid
850         o server: don't busy-loop if dbtool reports only invalid files.
851         o gui: CTRL+C works again, fix stream_read command line option
852         o fix pic_add, hist
853         o fix mysql dbtool startup in case no database exists
854         o many small fixes and cleanups
855
856 0.1.3: (2004-12-10) "vanishing inertia"
857 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
858 Starting from this release, the database tools are integrated in the
859 server binary. This decreases server startup time, reduces code size
860 and speeds up database commands. However, the layout of the underlying
861 mysql database changed only slightly and 0.1.3 should be backwards
862 compatible in that respect.
863
864 Visible changes:
865
866         o If mysql is not detected at compile time, or fails to init
867           at runtime, fall back to the dopey database tool which should
868           always work.
869         o para_dbtool and dbtool.conf are gone. All mysql specific
870           options are read from server.conf and are prefixed by 'mysql_'.
871         o new command: cdt (change database tool)
872         o new command line option: dbtool (choose startup database tool)
873         o The name of current stream is now stored in the database,
874           so paraslash remembers its current stream when restarted.
875         o new command: csp (change stream and play)
876         o para_gui also reports current database tool and server uptime
877
878
879 0.1.2: (2004-11-28) "spherical fluctuation"
880 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
881 Point release before the big dbtool changes go in.
882
883         o dbtool: rename ca to cam (copy all meta data). It now also
884           copies numplayed and lastplayed time as well as the picture
885           id.
886         o fix endless-loop-bug caused by mp3 files with invalid header
887
888 0.1.1: (2004-11-05) "floating atmosphere"
889 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
890         o gkrellm plugin
891         o new dbtool command: mbox. Browse your sound-file collection
892           with your favorite mail reader.
893         o several small fixes
894
895 0.1.0: (2204-10-22) "rotating cortex"
896 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
897         o fix logging bug for loglevel > VERBOSE
898         o fix skip command
899         o correct timings for vbr mp3s
900         o modular audio format support
901         o ogg-vorbis support (experimental)
902         o new server option: autoplay
903
904 0.0.99: (2004-07-25) "harmonic deviation"
905 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
906         o rename projectname from icc to paraslash (play, archive, rate
907           and stream large audio sets happily)
908         o paraslash is no longer restricted to one particular audio
909           streaming software
910         o new dbtool commands (stradd, strq, strdel) for easy stream
911           managment w/o configuration file. That obsoletes stream_defs
912           file/config option for dbtool.
913         o picadd accepts jpeg data from stdin
914         o new server commands: ps (select previous stream), sc (song change)
915         o new default pictures for sdl_gui
916         o gui: new key_map option for binding commands and internal
917           functions to arbitrary keys, nice help screen, rip out
918           soundcard/linux specific stuff, avoid noise artefacts while jumping,
919           show silly logo on startup
920         o new executables: para_fade for fading volume, para_dbadm for
921           manipulating attributes
922         o cdb adds _all_ tables to mysql database
923         o revised and beautified documentation
924         o sample dbtool rewritten in C
925         o autoconf
926
927 0.0.98: (2003-12-26) "incremental smoothness"
928 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
929         o kick icecast in favour of poc. That removes some races and reduces
930           core code considerably.
931         o cbr/vbr is displayed by stat and gui/sdl_gui. New status flags
932           give finer info on afs' status.
933         o gui can start decoder (see config options). Further new gui
934           commands: refresh (^L), jmp (F1-F10)
935         o gui rereads conf on SIGUSR1 instead of SIGHUP. SIGHUP
936           terminates gui. This fixes dead instances consuming memory
937           continuously.
938         o new dbtool command: verb for sending verbatim sql queries.
939         o fix pid_list races (by removing pid_list)
940         o codename funnies
941
942 0.0.97: (2003-10-26)
943 ~~~~~~~~~~~~~~~~~~~~
944         o installation prefix now defaults to /usr/local
945         o new commands for gui: snozze, sleep and reread config
946         o config file for gui and sdl_gui
947         o fix problems with filenames containing funny characters
948           (reported by Thomas Forell)
949         o improved signal handling for gui, now it rereads conf on SIGHUP
950         o new dbtool command: cdb (create database)
951         o switch from argtable to gengetopt
952         o major code cleanup and speed improvements
953         o fix several potential buffer overflows
954         o many small fixes and cleanups
955
956 0.0.96 (2003-08-30)
957 ~~~~~~~~~~~~~~~~~~~
958         o easy stream_defs syntax
959         o sdl_gui can display images associated to the file being played
960         o Major feature enhancements for icc_gui including dynamic text
961           placement and the top/bottom window design
962         o vrfy/clean now also checks for NULL values in attributes as
963           well as for invalid picture pointers
964         o fix long outstanding case sensitivity bug
965         o many small fixes and cleanups
966
967 0.0.95 (2003-06-29)
968 ~~~~~~~~~~~~~~~~~~~
969         o sdl gui runs much faster
970         o new dbtool command: ca (copy attributes)
971         o count and display number of times the song has been played
972         o new feature: scoring
973         o command line options for sdl_gui
974         o simpler syntax of streams file
975         o decrease network traffic of stat
976         o fix zombie bug
977         o many small fixes and cleanups
978
979 0.0.94 (2003-05-04)
980 ~~~~~~~~~~~~~~~~~~~
981         o new server command: ns (next stream)
982         o new icc_gui command: c (change stream)
983         o internal mp3info
984         o stat shows also id3 tag info
985         o new sdl based gui
986         o log flodding bug fixed
987         o many small fixes and cleanups
988
989 0.0.93 (2003-03-28)
990 ~~~~~~~~~~~~~~~~~~~
991         o colors for icc_gui
992         o icc_gui sets volume directly (linux only)
993         o proper locking that fixes some races
994         o fix security bug that caused commands to be executed even
995           with unsufficient permissions
996         o new command: hup to make all servers reread their configuration file
997         o icecast meta data streaming
998         o many small fixes and cleanups