Release 2.9.1
[abcde.git] / changelog
1 abcde 2.9.1
2
3  * Merged Debian packaging files updates
4  * Fixups in the new Musicbrainz code:
5    + Cope with not finding an entry for a CD!
6    + Fix (again!) dealing with CDs with no release events
7
8  -- Steve McIntyre <93sam@debian.org>  Fri, 09 Mar 2018 23:01:04 +0000
9
10 abcde 2.9
11
12  * Add some documentation for the aged CD ripper dagrab. Thanks to 
13    Teika Kazura for the notification and suggested documentation. This 
14    closes Issue 50: https://abcde.einval.com/bugzilla/show_bug.cgi?id=50
15  * Work by Matthias Andree <matthias.andree@gmx.de> to address the issue
16    where abcde fails with accented characters from CD-TEXT. The issue and
17    partial fix applied here documented in Issue 53:
18    https://abcde.einval.com/bugzilla/show_bug.cgi?id=53
19    and also in the abcde mailing list:
20    https://lists.einval.com/pipermail/abcde-users/2017-January/000232.html
21  * Allow for embedding of  album art downloaded by the getalbumart function. 
22    Currently this is available for flac (using metaflac), mp3 (using eyed3),
23     m4a (using AtomicParsley) and WavPack aka wv (using wvtag).
24     This can be invoked in 3 ways:
25      
26      1. Use the commandline '-B' option (this will also call getalbumart)
27      2. Use the commandline '-a embedalbumart' option to add to list of actions
28      3. Use 'embedalbumart' in the 'ACTIONS' list in ~/.abcde.conf
29      
30    Still needs more development but it is perfectly usable at the moment!
31  * Use md5 rather than md5sum under macOS. Thanks to JCount for the bug
32    report and also the fix. This solves Issue 59:
33    https://abcde.einval.com/bugzilla/show_bug.cgi?id=59
34  * Support added for encoding with Audio Interchange File Format (AIFF). 
35    Thanks to Massimo Villa for the feature request. FFmpeg is required
36    for the encoding, the container and suffix are 'aiff'.
37  * Allow selection of either cddb or musicbrainz from the command line:
38  
39   -Q   Select CDDBMETHOD from the command line. Choice is cddb or musicbrainz.
40   
41    Command line letters are fast running out but the 'Q' option quite neatly
42    stands for 'Query'!
43  * Allow for embedding with do_embedalbumart() for single track encodes when
44    OUTPUTFORMAT and ONETRACKOUTPUTFORMAT are different. Thanks to Ashley Gittins
45    for the bug report. This closes Issue 63:
46    https://abcde.einval.com/bugzilla/show_bug.cgi?id=63
47  * Experimental support for embedding albumart with ogg files. The slightly
48    tortuous technique drawn from 2 sources:
49
50    1. https://github.com/biapy/howto.biapy.com/blob/master/various/mussync-tools
51    2. https://github.com/acabal/scripts/blob/master/ogg-cover-art
52    
53    Testing is strongly encouraged, perhaps the simplest way to test is with:
54    
55        abcde -o ogg -B
56     
57     Or the appropriate settings in an ~/.abcde.conf file.
58  * Massive rework of CD lookup code so support multiple sources
59    better. Thanks to Gabriel Rosenkoetter for his initial idea in this
60    area, and to Tomasz Goliński on irc for initial inspiration on how
61    this should work better.
62    There are now 3 different options for CD lookup: cddb, musicbrainz and
63    cdtext. They can all be listed in a comma-separated list for
64    CDDBMETHOD and the code will now call all of them in the sequence
65    listed. All the results will be combined into one list at the end for
66    the user to select, just like would have previously worked for one
67    source only. Closes Issue 42:
68    https://abcde.einval.com/bugzilla/show_bug.cgi?id=42
69  * Fix Musicbrainz ID calculation in makeids()
70    Apply fix suggested by petecollins24@gmail.com; add PREGAP to
71    LEADOUT to correct Musicbrainz ID calculation. Hopefully closes
72    Issue 54: https://abcde.einval.com/bugzilla/show_bug.cgi?id=54
73  * Fix abcde.mkcue() when handling the --wholedisk option. Thanks to
74    Nino Burini for the patch. Closes Issue 47 and maybe also 45:
75    https://abcde.einval.com/bugzilla/show_bug.cgi?id=47
76    https://abcde.einval.com/bugzilla/show_bug.cgi?id=45
77  * Add more comprehensive examples for filename munging in the example
78    config file. Closes Issue 49:
79    https://abcde.einval.com/bugzilla/show_bug.cgi?id=49
80  * Add a more better fix for the year lookup problem in abcde-musicbrainz-tool
81    Thanks to Tom Samstag for the patch. Closes Issue 57:
82    https://abcde.einval.com/bugzilla/show_bug.cgi?id=57
83  * Redirect stderr on "which" calls to clear up error noise on some
84    systems. Closes Issue 56:
85    https://abcde.einval.com/bugzilla/show_bug.cgi?id=56
86  * Add Irix support, based on a patch by abcde@canavan.de. Closes Issue 29:
87    https://abcde.einval.com/bugzilla/show_bug.cgi?id=29
88  * Rework abcde-musicbrainz-tool to work with WebService::MusicBrainz 1.x
89    Thanks to Nicolas Guillaumin for the patch. Closes Issue 60:
90    https://abcde.einval.com/bugzilla/show_bug.cgi?id=60
91    Also added a specific dependency on version 1.0.4 or newer, so
92    abcde-musicbrainz-tool will abort if the version found is too old.
93    Since tweaked to deal with multi-artist albums and tracks more
94    completely.
95  * Add resume support in do_getalbumart()
96  * Fix getopts setup for "P". Thanks to Alan W. Kerr for reporting this.
97  * Major set of code cleanups to fix up lots of warnings found with
98    shellcheck, and a few other style issues:
99    + Lots of quoting fixes
100    + Use $( instead of `
101    + Stop using -o and -a syntax with if [ - use || or && instead
102    + Wrap and shorten some very long lines
103  * Wrap some output messages so they fit on a standard width console
104  * Factor out repeated code and make page() more useful
105  * Add version check before resuming from an old ripping run
106    
107  -- Steve McIntyre <93sam@debian.org>  Thu, 08 Mar 2018 00:14:56 +0000
108
109 abcde 2.8.1.
110
111  * Fix silly error introduced in abcde-musicbrainz-tool when fixing bug
112    30. Thanks to Thomas Klausner for the bug/patch. Closes Issue 52:
113    https://abcde.einval.com/bugzilla/show_bug.cgi?id=52
114
115  -- Steve McIntyre <93sam@debian.org>  Wed, 18 Jan 2017 11:02:38 +0000
116
117 abcde 2.8
118
119   * Make fdkaac the default for m4a encoding. Faac can still be selected
120     for m4a encding via ~/.abcde.conf file but best not to :).
121   * Split user-definable mungefilename function into mungetrackname,
122     mungeartistname, and mungealbumname, each of which default to
123     mungefilename Thanks to Gerald Turner for the patch and enhancement
124     request. This closes Issue 39:
125     https://abcde.einval.com/bugzilla/show_bug.cgi?id=39
126   * FAQs: Clarify the exit from multi-result CDDB search.
127   * Fix to allow multiple output formats when aac fallback is triggered.
128     Thanks to Birk Bremer for the bug report. This closes Issue 35:
129     https://abcde.einval.com/bugzilla/show_bug.cgi?id=35
130   * Fix for some erroneous error and status logging. Thanks to Christian
131     Wasem for the bug report and fix. This closes Issue 32:
132     https://abcde.einval.com/bugzilla/show_bug.cgi?id=32
133   * Add support for trying multiple CD lookup services in order. Thanks to
134     Gabriel Rosenkoetter for the patch. Closes Issue 42:
135     https://abcde.einval.com/bugzilla/show_bug.cgi?id=42
136   * Add Recommends on glyrc and imagemagick in Debian packaging. Closes
137     Debian Bug #827626
138   * Fix up handling of the first few sectors when reading
139     from a whole-CD flac file or using cdparanoia in one-track
140     mode. Thanks to Matthias König for the patch. Closes Issue 44:
141     https://abcde.einval.com/bugzilla/show_bug.cgi?id=44
142   * Tweak the fix in musicbrainz for handling sketchy returned data
143     some more. Hopefully closes Issue 30:
144     https://abcde.einval.com/bugzilla/show_bug.cgi?id=30
145   * Re-enable some commented out cdparanoia/debug code in do_discid.
146     Closes Issue 14:
147     https://abcde.einval.com/bugzilla/show_bug.cgi?id=14
148   * Add "-a" to lots of grep calls in case of "binary" looking data,
149     e.g. non-ascii text in track titles!
150     Closes Issue 24:
151     https://abcde.einval.com/bugzilla/show_bug.cgi?id=24
152   * Add "-L" to default curl options, to follow redirects if needed
153     Closes Issue 40:
154     https://abcde.einval.com/bugzilla/show_bug.cgi?id=40
155     Thanks to Gabriel Rosenkoetter for the patch.
156   * Switch default from "cddb" to "musicbrainz" for track lookup
157     Closes Debian Bug #842178
158
159  -- Steve McIntyre <93sam@debian.org>  Sat, 14 Jan 2017 00:53:48 +0000
160
161 abcde 2.7.2
162
163   * When using musicbrainz, don't assume that there will be release
164     events attached to a particular CD release. Bug fix for the addition
165     of year information support in 2.7.1. Thanks to Ed Oehler and Alan W.
166     Kerr for debugging help.
167   * Support for output to the Matroska container (mka). Encoder
168     is FFmpeg (or avconv). Typical conf file syntax would be:
169
170      MKAENCODERSYNTAX=ffmpeg
171      FFMPEG=ffmpeg
172      FFMPEGENCOPTS="-c:a ac3 -b:a 448k"
173      OUTPUTTYPE="mka"
174
175     Thanks to Shantiq and Fakeoutdoorsman of the Ubuntu Forums
176     for the idea.
177   * Add id3tag mp3 tagger as this is the tagger available to
178     OpenBSD users. Thanks to Christopher Zimmermann for the
179     notification and patch.
180   * Allow for cddb response 500. Thanks again to Von Welch for the
181     bug report and patch. This closes Issue 26:
182     http://abcde.einval.com/bugzilla/show_bug.cgi?id=26
183   * Fix for 'expansion of $REDIR' bug on MacOSX. Thanks to Von Welch
184     for the bug report. This closes Issue 22:
185     http://abcde.einval.com/bugzilla/show_bug.cgi?id=22
186   * Makefile adjusted to allow the sample abcde.conf file to be
187     installed by default to /etc rather than $(prefix)/etc.
188     Thanks to Volker Schmidt from archlinux for the bug report:
189     https://bugs.archlinux.org/task/46671
190   * Allow getalbumart to correctly place cover image when single
191     track is selected. Thanks to Nino Burini for the bug report
192     and also the fix. This closes Issue 25:
193     http://abcde.einval.com/bugzilla/show_bug.cgi?id=25
194
195  -- Andrew Strong <andrew.david.strong@gmail.com>  Wed, 6 Apr 2016 08:47:56 +0000
196     
197 abcde 2.7.1
198
199   * Rebuild of the abcde Makefile. Thanks to Reuben Thomas and Steve
200     McIntyre as well as ReaperX7, bobzilla, 55020, GazL and dugan from
201     the Slackware Forums. This closes Issue 4:
202     http://abcde.einval.com/bugzilla/show_bug.cgi?id=4 
203   * Fix incorrect use of 'break'. Thanks to Reuben Thomas for the
204     bug report and fix which closes Issue 6:
205     http://abcde.einval.com/bugzilla/show_bug.cgi?id=6
206   * Make older versions of id3 happy when 'Genre' field is empty.
207     Thanks to Martin Husemann for the fix which closes Issue 8:
208     http://abcde.einval.com/bugzilla/show_bug.cgi?id=8
209   * Add YEAR and GENRE variables to do_getalbumart(). Thanks to
210     Johannes Gernemann for this patch which closes issue 9:
211     http://abcde.einval.com/bugzilla/show_bug.cgi?id=9
212   * Support added for encoding to True Audio using tta while still
213     supporting the older ttaenc. Tagging is with mid3v2.
214   * Support added for encoding to MPEG-1 Audio Layer II (mp2)
215     with either twolame or FFmpeg / avconv. Tagging with mid3v2.
216   * Encoding to WavPack with FFmpeg. Some slight changes to WavPack
217     syntax with backward compatibility built in for abcde 2.7. 
218   * Encoding to m4a container with FFmpeg or avconv. This allows
219     for alac encoding with FFmpeg's reverse engineered alac encoder.
220   * AAC encoding with fhgaacenc via Wine. Tagging is provided
221     by AtomicParsley which has been added back to abcde :). This
222     allows encoding with HE-AAC v2, unavailable with qaac.
223   * Support added for AAC encoding with qaac via Wine. This
224     also allows for Apple Lossless Audio Coding (alac) using
225     either qaac or refalac. This closes Issue 142, thanks to
226     Bernd Fischer-Krellenberg for the enhancement request.
227   * Grab year information too when using musicbrainz. Thanks to
228     Marco Hoppstaedter for the patch. Closes issue 10:
229     http://abcde.einval.com/bugzilla/show_bug.cgi?id=10
230
231  -- Andrew Strong <andrew.david.strong@gmail.com>  Sun, 4 Oct 2015 09:31:07 +0000
232
233 abcde 2.7
234
235   * Rewrite of abcde's mungefilename function. Thanks to 
236     Andreas Kusalananda Kahari for this and also thanks
237     to Andrew Willis for the report which triggered the
238     rewrite. Thanks also to shughes for an earlier report.
239     This closes Issues 72 and 135.
240   * TRACKTOTAL now written to flac and ogg files. Thanks to 
241      monkth for the notification. This resolves Issue 76.
242   * Support added for the downloading of album art. A huge
243     thank you to Johannes Gernemann who came forward with
244     the technique used and also the original patch. An equally
245     huge thanks to Richard who extended and greatly enhanced
246     the original patch. Detailed documentation added to the
247     abcde FAQ document although the sane defaults in place
248     will guarantee a good experience even for those who do
249     not read documentation! This closes Issue 33.
250   * Support added for ripping with the GNU Compact Disc 
251     Input and Control library (libcdio) as requested by
252     both gentoo and NixOS. The utility used is cd-paranoia
253     and can best be called from a conf file as follows:
254
255      CDROMREADERSYNTAX=libcdio       
256      CD_PARANOIA=cd-paranoia  
257      CDPARANOIAOPTS="--never-skip=40 --verbose"
258
259     with the CD_PARANOIA variable giving the correct path 
260     to cd-paranoia. I believe that cd-paranoia uses the same
261     options as cdparanoia but if I am proven incorrect this 
262     will need to be rectified...
263   * Fix for encoding with bladeenc and usepipes.
264   * Fix for broken ripping with dagrab. Closes Issue 140.
265   * Fix for diskutil selecting wrong disk on OS X. Thanks
266     to Richard for this fix which closes Issue 139.
267   * Added some error checking and documentation for
268     the abcde-musicbrainz-tool. Thanks yet again to
269     Matthias Andree for this work! Closes issue 138.
270   * New variables for m4a/aac encoding options to be 
271     manipulated in a users ~/.abcde.conf file:
272      1. FAACENCOPTS for faac encoding options
273      2. NEROAACENCOPTS for neroAacEnc options
274      3. FDKAACENCOPTS for fdkaacenc options
275     Note that these options replace the now obsolete AACENCOPTS.
276   * Check added for neroAacTag when encoding with neroAacEnc.
277   * Several additions to usepipes with the following encoders 
278     being added:
279       1. mp3enc: mp3
280       2. speexenc: Speex
281       3. mpcenc: Musepack SV8
282       4. wavpack: WavPack
283       5. faac: aac
284       6. neroAacEnc: aac
285       7. fdkaac: aac
286     The cd ripper cdda2wav (icedax) has also been added.
287   * Ripping and encoding with 'usepipes' fixed. This fix
288     closes Issue 46.
289   * Suggested encoding options for mp3enc added to the sample
290     abcde.conf. Last release of mp3enc in 1998 but it still
291     works flawlessly with a modern abcde!
292   * Suggested encoding options for l3enc added to the sample
293     abcde.conf. Congratulations to abcde which in 2015 still 
294     works with l3enc which saw its final release in 1997!
295   * Fix for -o option use with options and multiple outputs.
296     This allows for commandline options such as the following:
297           abcde -o 'flac:-8,mp3:-b 320' 
298     Thanks to Matthias Andree for yet another quality patch! 
299     This closes Issue 136.
300   * Support added for ReplayGain with WavPack encoding.
301   * Fix for MusePack to allow the use of the SV8 ReplayGain 
302     application 'mpcgain'.
303   * Monkey's Audio (ape) encoding added. Tagging is with
304     Robert Muth's apetag. Thanks to Shantiq for testing.
305   * Simplify Opus tagging.This closes Issue 133.
306   * Allow 'clean' when OUTPUTTYPE=wav, broken for some time.
307     Thanks to Roger rogerx.oss<at>gmail.com for showing the
308     problem and demonstrating the fix. This closes Issue 94.
309   * Clarification that CDDBLOCALRECURSIVE=y is required for 
310     local CDDB search. Thanks to Reuben Thomas for the
311     notification. This partially resolves Issue 121.
312   * AtomicParsley removed from debian/control, WavPack added.
313   * Details of abcde's handling of faac compiled with and 
314     without mp4v2 added as a new entry to FAQs.
315   * Fix to allow display of the 'date' meta tag generated
316     by eyeD3 in vlc, Audacious and friends.
317     Thanks to Reuben Thomas. This closes Issue 126.
318   * Fix for flac floating point error. Thanks to rwvtveer
319     for the patch which closes Issue 113.
320   * Formalised 3 methods of mp3 tagging using ID3TAGV:
321       1.id3v2.4 using eyeD3 (set in abcde as the default)
322       2.id3v2.3 using id3v2
323       3.id3v1 using id3
324     Thanks to Adriaan for this patch which fixes issue 101.
325   * Support for WavPack added. Closes issue 123.
326   * Fix for mp3 encoding with different versions of eyeD3.
327     Thanks to Matthias Andree for this patch.
328   * Major AAC encoding cleanup, including addition of the fdkaac encoder. 
329     Thanks to Doug Mcmahon for assistance with this.
330
331  -- Andrew Strong <andrew.david.strong@gmail.com>  Thu, 18 Jun 2015 12:27:52 +0000
332
333 abcde 2.6
334
335   * Fix finding $CDROM on OS X. Thanks to niederstrasser for the patch.
336     Closes issue 71.
337   * USEID3 and USEID3V2 variables are unused now, so remove them. Thanks
338     to vskytta for the patch. Closes issue 73.
339   * Clean up movement to eyeD3, remove id3v2 remnants. Thanks to vskytta
340     for the patch. Closes issue 74.
341   * Fix infinite loop if cddb fails. Thanks to Dominic Hargreaves for the
342     patch. Closes: #687038 in Debian
343   * Switch from Musepack SV7 to SV8. Thanks to Andrew Strong for the
344     patch.
345   * Allow aac encoding with neroAacEnc. Thanks to atheren for the patch.
346     Closes issue 8.
347   * Allow opus encoding with opusenc. Thanks to Tomasz Golinski for the
348     patch. Closes issue 70.
349   * Fix typo: s/CUEWAVEFILE/CUEWAVFILE/ so that abcde.mkcue should now
350     produce working cue files. Closes issue 78.
351   * Remove no-op -q option. Closes issue 106. Thanks to vskytta for the
352     patch.
353   * Fix issue 112: perl encoding pragma deprecation. Thanks to Alex Corrie
354     for the patch.
355   * Fix option parsing for multiple output formats. Thanks to
356     matthias.andree@gmx.de for the patch. Closes issue 115.
357   * Fix eyeD3 tagging for cddb entries without year. Thanks to vskytta for
358     the patch. Closes issue 107
359   * Add mention of CD-TEXT support in the man page. Closes issue 102.
360   * Make Y/N prompting more consistent. Closes issue 95
361   * Remove the no-op -B option. Closes: #426531 in Debian
362   * Document the need to escape parentheses in tag comments.
363     Closes: #256941 in Debian.
364   * Concatenate option steps on -t/-T option. Thanks to Charles
365     Steinkuehler for the patch. Closes: #391294 in Debian
366   * Try to use bsd-mailx where possible to force UTF-8 for cddb-tool mail
367     submissions. If not possible, attempt to force UTF-8 via the
368     environment and fall back to mail instead. Closes: #756289 in Debian,
369     issue 111.
370
371  -- Steve McIntyre <93sam@debian.org>  Sun, 26 Oct 2014 13:17:24 -0700
372
373 abcde 2.5.4
374
375   * Update GPL/FSF headers to match current versions. Thanks to vskytta
376     for the patch. (Closes issue 69).
377   * Fix the command line for ID3SYNTAX=eyed3. Thanks to neil.gm.richards
378     for the patch. Closes issue 50.
379   * Switch to eyed3 by default for MP3 tagging, as it looks to do UTF-8
380     tagging better. Closes issue 22 (hopefully)
381
382  -- Steve McIntyre <93sam@debian.org>  Tue, 18 Sep 2012 12:42:11 +0100
383
384 abcde 2.5.3
385
386   * Sort options alphabetically (Closes issue 58).
387     Thanks to vskytta for the patch.
388   * Add Recommends: mailx in the Debian packaging for Debian/Ubuntu
389     users. Closes: #607147
390   * Fix encoding call for m4a. (Closes issue 31). Closes: #449045
391   * Fix do_musicbrainz() for the case where there are no matches.
392   * When using Musicbrainz, checksum and only output unique matches for an
393     album. Closes: #669143
394   * Add Recommends: atomicparsley in the Debian packaging for Debian/Ubuntu
395     users. LP: #535527
396   * Remove documentation of the old "-R" option for recursive searching of
397     local CDDB data, it's now enabled always. (Closes issue 57).
398   * Fix use of awk (sub instead of substr) when generating CRLF line endings.
399     (Closes issue 59).
400   * Make sure that ABCDETEMPDIR is quoted so we can deal with spaces in
401     file and directory names. Closes issue 64. Thanks to
402     richard.security.consultant for the patch, adapted slightly.
403   * Tweak do_cdtext() so it works on OS X too. Closes issue 65.
404     Thanks to richard.security.consultant for the patch.
405   * Change cddb-tool to use bash to make sure that echo -n works.
406     Closes issue 67.
407   * Fixes for lots of spelling mistakes from vskytta. Closes issue 68.
408   * For safety across different systems, avoid using "sed -i".
409     Closes issue 66.
410
411  -- Steve McIntyre <93sam@debian.org>  Sat, 16 Jun 2012 15:12:11 +0100
412
413 abcde 2.5.2
414
415   [ Steve McIntyre ]
416   * Re-fix speex tagging. (Closes issue 19).
417     Thanks to vskytta for pointing out the problem - patch not applied
418     properly in 2.5.1
419   * Quickly re-release as 2.5.2
420
421  -- Steve McIntyre <93sam@debian.org>  Sun, 29 Apr 2012 17:17:14 +0100
422
423 abcde 2.5.1
424
425   [ Steve McIntyre ]
426   * Several patches for improved Musicbrainz support from Martin Michlmayr:
427     + add musicbrainz support for FLAC files with embedded cue files.
428       Closes: #669139
429     + Don't submit to CDDB server when using musicbrainz
430       Closes: #669140
431     + Don't tag CDDB string with musicbrainz id
432       Closes: #669141
433   * Fix speex tagging. (Closes issue 19).
434     Thanks to vskytta for the patch.
435   * Fix aac tagging. (Closes issue 7).
436     Thanks to Andrew Strong for forwarding the patch.
437   * Add ATOMICPARSLEY=AtomicParsley (Closes issue 37).
438   * On OS X, switch from disktool to diskutil. (Closes issue 43).
439   * Updates for CD device detection:
440     + Look for /dev/sr0, in case /dev/cdrom doesn't exist.
441       (Closes issue 52).
442     + Add suggested diskutil code to auto-detect the CD on OS X.
443       (Closes issue 45).
444   * Check that we have $CDDBTOOL before we start. (Closes issue 27).
445   * Change the meaning of EXTRAVERBOSE; previously, it was a y/n option
446     to make things more verbose. Add extra levels of verbosity (0, 1, 2 so
447     far) and a new vvecho() function for callers to use.
448   * With EXTRAVERBOSE==2 or more, make run_command() print out each
449     command as it's run. (Closes issue 39).
450   * If we don't find any CDDB or Musicbrainz information for the CD, try
451     to extract CD-Text information to populate the cddbinfo template.
452     (Closes issue 41).
453   * Try to give more helpful error messages when we can't parse the
454     command line, and exit rather than carry on. (Closes issue 51).
455
456   [ Colin Tuckley ]
457   * replace deprecated egrep with grep -E (Closes issue 24).
458     Thanks to vskytta for the patch.
459   * remove -o 0 options from make install (Closes issue 17).
460     Thanks to vskytta for the patch.
461   * clean up indentation on older changelog entries
462   * remove tarball target from Makefile since dir structure
463     has changed now that we use subversion.
464   * improve presentation of options/defaults when asking a question
465     (closes issue 9)
466
467  -- Steve McIntyre <93sam@debian.org>  Wed, 25 Apr 2012 12:35:00 +0100
468
469 abcde 2.5.0
470
471   * Bumped to 2.5.0
472   * Add support for Musicbrainz using a perl helper script.
473     Closes: #665970
474   * Tweak man page. Thanks to Mats Erik Andersson for the patch.
475     Closes: #627237
476   * Make the -q option work again. Thanks to A Mennucc for the patch.
477     Closes: #562522
478
479  -- Steve McIntyre <93sam@debian.org>  Fri, 13 Apr 2012 22:29:45 +0100
480
481 abcde 2.4.2
482
483   * Bumped to 2.4.2
484   * Fix Cue file always references "dummy.wav" bug
485     patch from Chris Chiappa (Closes: #459928).
486   * Whitespace cleanup, replace single perl instance with sed
487     (Charles Steinkuehler)
488   * Fix leadin/leadout computation for cue files broken bug
489     Patch from Martin Michlmayr (Closes: #582175).
490
491  -- Colin Tuckley <colint@debian.org>  Sat, 29 May 2010 09:43:01 +0100
492
493 abcde 2.4.1
494
495   * Bumped to 2.4.1
496   * In manpage note a 2nd use for LOWDISK (or '-l' switch)
497     it's faster and better on scratchy disks (Closes: #426343).
498   * Add configurable options for replaygain tools.
499   * Fix syntax error in tagged speex command (Closes: #554406)
500     Ubuntu patch by Michael Helmling.
501   * Fix mp3 tagging fails for single author albums (Closes: #554030)
502
503  -- Colin Tuckley <colint@debian.org>  Sun, 14 Feb 2010 13:09:47 +0000
504
505 abcde 2.4.0
506
507   * Bumped to 2.4
508   * Corrected REDIR redirection, this time with ifs instead of variable
509     substitution, which did not work (Closes: #527191).
510   * Added TPE2 for Various artists definition (Closes: #521669).
511   * Incorporate syntax error fix patch from Andrew Ruder.
512   * Fix formatting for track number tagging.
513   * Replace dependency on cdda2wav with icedax since the former has
514     been superseded.
515
516  -- Colin Tuckley <colint@debian.org>  Fri, 16 Oct 2009 19:33:33 +0100
517
518 abcde 2.3.99.8
519
520   * Remove svn Revision tag from version.
521   * Correct homepage URL in README (Closes: #526165).
522   * Fix typos (Closes: #435605, #435606).
523   * Fix misspelling of comma in script and manpage (Closes: #435603).
524   * Fix Writable temp directories not owned/writeable (Closes: #143552).
525   * Fix broken range code, patch from Charles Steinkuehler (Closes: #389981).
526   * Remove unneeded escapes in cddb-tool URLs.
527     Add support for freedb2 (Closes: #391110).
528     another patch from Charles Steinkuehler.
529   * Fix Endless loop possible when mp3gain asks clipping question bug
530     (Closes: #411579).
531   * Update Vcs-Svn: tag in debian/control.
532   * Add a recommends for vorbis-tools (Closes: #392843).
533   * Update standards version to 3.8.2 (no changes required).
534   * Fix debian/preinst not to ignore errors.
535
536  -- Colin Tuckley <colint@debian.org>  Sun, 02 Aug 2009 13:32:30 +0100
537
538
539 abcde 2.3.99.7
540
541   [ Jesus Climent ]
542   * The "It took me a long time to get this release out" release.
543   * abcde.1: remove -M in favour of "-a cue" (Closes: #382614, #396505).
544   * Added a check for a DOCUE already set in the command line
545     (Closes: #385663).
546   * Added -q <Q> as a quality option.
547   * PREGAP was not set in some situations (Closes: #390170).
548   * Added -nv to wget for "no verbose" output, to avoid wget complaining it
549     cannot be quiet and verbose at the same time if "verbose = on" is set in
550     ~/.wgetrc (Closes: #388715).
551   * Added XS-Vcs-Svn: field to control file.
552   * Added some hints if we are using Debian for what packages need to be
553     installed if their binaries are not found.
554   * Spelling mistakes corrected (thanks to Ville Skytta).
555   * Unset GREP_OPTIONS to avoid things like printing number in the beginning of
556     the line (Closes: #383771).
557   * Default answer to erase a playlist was not working (thanks to Charles
558     Steinkuehler) (Closes: #395108).
559   * Corrected man page wrapping. Thanks to Edward J. Shornock
560     (Closes: #399289).
561   * Adds DISCNUMBER to Ogg/Vorbis and FLAC when using -W.
562   * Minor typos (Closes: #458995).
563   * Added AtomicParley for AAC encoding. Thanks to Bill Adams.
564   * Added by Marc Staveley:
565     - post_encode hook.
566     - track comments if null and present in CDDB.
567   * Corrected copyright information (Closes: #516535).
568
569   [ Colin Tuckley ]
570   * Added new uploader (Closes: #529695).
571   * Fix Lintian warning for make-clean-error.
572   * Fix FSF address in debian/copyright.
573   * Fix binary-arch-rules-but-pkg-is-arch-indep lintian warning.
574   * Add homepage: field to debian/control
575   * Update standards version to 3.8.0
576   * Remove debian/conffiles (it is not needed).
577   * Fix syntax error in abcde (missing fi).
578
579  -- Colin Tuckley <colint@debian.org>  Sat, 25 Jul 2009 09:50:42 +0100
580
581 abcde 2.3.99.6
582
583   * Default to UNICODE (UTF8) tags and comments (Closes: #282332).
584     - Added CDDBPROTO option in config file (Closes: #349951)
585   * Added a missing "INDEX 01" entry for CUE sheet creation.
586   * Avoid completing the encoding of files if we aborted previously.
587   * Embed the CUE sheet if we have a cuesheet file and we have a single FLAC
588     file, even if we are not tagging. This way we can use the file as a source
589     even if it is not tagged/named properly.
590   * Fails to quote filenames properly (Closes: #355296)
591   * Introduced VA/ONETRACKOUTPUTFORMAT.
592   * Added a missing check for AACENCODER.
593   * Updated config file with some new AAC bits.
594   * Updated FSF address.
595   * Corrected NetBSD options for ftp (Thanks to Marius).
596   * The final 2.4 will have "cuefile" as an action instead of as a flag.
597   * Create the cuefile when extracting from a FLAC file.
598   * Small bugs (Charles Steinkuehler):
599     - Added missing quotes (Closes: #375710)
600     - toolame is included in Debian as default MP3 encoder
601     - Use IFS to preserve spaces when adding metadata to a cuefile
602   * Small documentation changes:
603     - abcde.1 (Closes: #364978)
604   * The following entries have in common that both add an internal cue2discid
605     function. I will evaluate which one is more accurate and decide which one
606     to use. Right now they are not conflicting:
607     - Added internal mkcue and cue2discid functions (Charles Steinkuehler) and
608       add a check for internal abcde.<function> to make sure we are using the
609       correct version (not sure if needed ;)
610     - Added an internal implementation of cue2discid, so there is no need for
611       an external program to do the conversion. Thanks to Michael (sorry, his
612       mail does not have a surname).
613   * cue2discid is now an internal function, so no need for including the
614     python script in the path (Closes: #378407)
615   * cddb-tool.1 typo (Thanks to A. Costa) (Closes: #351775)
616   * abcde.1 typo (Thanks to David L. Anselmi) (Closes: #364978)
617   * Set proper nice values to not separate encoding and reading in the pipes
618     situation, while having a high priority process running in the system.
619     Also, set proper nice values to tagging tasks. Reading should remain as
620     the default higher priority task in the abcde flow (Closes: #359156)
621   * Standards bumped to 3.7.2.1, no changes needed.
622
623  -- Jesus Climent <jesus.climent@hispalinux.es>  Sat,  5 Aug 2006 05:26:56 +0300
624
625 abcde 2.3.99.5
626
627   * Repaired multiple CDDB entries when recursive search is active.
628   * Patch from A. Costa to clean some typos (Closes: #351774).
629
630  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 07 Feb 2006 23:48:00 +0200
631
632 abcde 2.3.99.4
633
634   * Repaired multiple output encoding (Closes: #351362).
635   * Added missing space on a [] test statement.
636   * Added "default" action, so that one can add things on top of what we do
637     regularly, without having to list everything: "-a default,playlist" works.
638   * Restored all the > /dev/null instead of using grep -q, since it is not
639     portable.
640   * Added Solaris OS entry, in case we need to define things for it.
641
642  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 05 Feb 2006 15:24:00 +0200
643
644 abcde 2.3.99.3
645
646   * The "Mao es nuestro indiscutible lider" release.
647   * Check the CDROMREADER options we have in Debian which we depend on. Thanks
648     to Jose Carlos Garcia Sogo for finding the error.
649   * New recursive option for local CDDB repositories, to cope with other
650     players saving the entries.
651   * Brand new CD backup procedure: rip a CD into a single FLAC trac with an
652     embedded cuesheet using "-1 -M -o flac" and proceed to rip your tracks
653     from the obtained file using "-d file.flac -o <format>". It needs
654     cue2discid script from the examples directory to work. OH! If you manage
655     to get it working with bash, we can get rid of the python dependency...
656   * Initial steps to make abcde working with musicbrainz, although it is not
657     ready yet.
658   * Added a missing $ in a variable (Closes: #345629).
659   * Added -p to the mkdir's for $ABCDETEMPDIR (Closes: #345630).
660   * Added iconv + converted to utf-8 the charset of a ready-to-send CDDB
661     entry (Closes: #345708).
662   * Added AAC (Mpeg4) support.
663   * Small cd-discid update.
664
665  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 19 Jan 2006 23:27:40 +0200
666
667 abcde 2.3.99.2
668
669   * Missing bits in the 2.3.99.1 changelog:
670     - Man page: added information about -z (Debug option).
671     - Corrected config file with the BATCHNORM/NOGAP split
672       (Closes: #337622).
673     - Uses /bin/bash for the time being... We need to get some substitution
674       functions/operations for the bashisms we have: Closes: #337139.
675   * Config bits with corrected typos
676   * Adding musicbrainz support. First bits.
677   * Reworked comparison for numerical answer when selecting a CDDB output.
678   * TODO updated
679
680  -- Jesus Climent <jesus.climent@hispalinux.es>  Mon, 12 Dec 2005 23:46:58 +0200
681
682 abcde 2.3.99.1
683
684   * Both -z and -C unset EJECTCD to avoid ejecting the CD when a) we are
685     debuging and b) we are not using the CD.
686   * If we are not reading the CD, set "loud" to see all the output messages
687     (that is, in most of the cases, the first encoding).
688   * Added -f to force some events that otherwise would erase files from our
689     current run. In the standard configuration ("OUTPUT=vorbis") the following
690     actions will need a "-f" to force the last one:
691       abcde -a read,encode -o ogg,flac
692       abcde -a tag,move,clean
693     During the second run abcde should complain that it is trying to erase the
694     working directory while the it has not performed any action on the FLAC
695     files, which we encoded previously.
696   * Convert the old cdparanoia-audio-tracks file into a status entry to avoid
697     eating files from previous rounds using an early version (Closes: #341050)
698
699  -- Jesus Climent <jesus.climent@hispalinux.es>  Tue, 29 Nov 2005 23:27:20 +0200
700
701 abcde 2.3.99
702
703   * Added diff choice to CDDB entries ("1,4").
704   * Added SHOWCDDBFIELDS to allow the user to show YEAR and GENRE in the
705     parsed CDDB output.
706   * Suggests mkcue, and erase old cdgrab info since sarge is out.
707   * Changed cdparanoia-audio-tracks to use the status file to save the data.
708   * Added the possibility of using a singletrack flac file with an embedded
709     cuesheet as a source of tracks.
710   * Added -z for easy and quick debug.
711   * BATCH has been split into two options: BATCHNORM which allows, by using
712     -b, to use the -a normalize in all the files at once, and NOGAP, that by
713     using -g, introduces the lame's --nogap extension.
714   * Added replygain using the appropriate tags with Ogg/Vorbis and Ogg/FLAC.
715   * Replaygain is an action, not a flag, since it can be performed individually
716     in the chain of events.
717   * debian/{rules,control}:
718     - Changed the target directory from tmp to abcde, to accommodate to compat
719     mode 4.
720     - Bump standards to 3.6.2.1. No changes needed.
721   * Added "decho" as a DEBUG output for some specific debug variables.
722   * Added USEPIPES file, with information about how to add Unix pipes support.
723   * Added one more checking for PIPES*_* unset variables (which means support
724     is not added to abcde).
725   * Added toolame as an optional MP3 encoder.
726
727  -- Jesus Climent <jesus.climent@hispalinux.es>  Sat,  8 Oct 2005 17:05:32 +0300
728
729 abcde 2.3.4
730
731   * Some patches from Tom Spindler <dogcow () babymeat ! com>
732     - Added some quoting to the md5sum checkings, since the variables could be
733       null.
734     - NetBSD bits to use ftp instead on anything else to fetch stuff.
735   * do_playlist needs to convert the OUTPUT to the CONTAINERS to avoid ending
736     with playlists pointing to .vorbis files (Closes: #326487).
737
738  -- Jesus Climent <jesus.climent@hispalinux.es>  Sat,  3 Sep 2005 16:50:07 +0300
739
740 abcde 2.3.3
741
742   * Rips done in a single track were getting tagged as Various. Corrected.
743   * Possibly eliminated some bashisms from using a variable as a variable
744     (Closes: #324399). Thanks to A Costa.
745
746  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 26 Aug 2005 01:36:35 +0300
747
748 abcde 2.3.2
749
750   * Too fast... I forgot to make the tarball and change the version strings in
751     several places. Fixed.
752
753  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 19 Aug 2005 00:44:37 +0300
754
755 abcde 2.3.1
756
757   * The new "I knew there were going to be bugs" upstream release!
758   * MKCUE needs to be passed some $CDROM as an option, or otherwise it will
759     not read the CDROM, in case is not /dev/cdrom.
760   * Also, make the CUEREADER a bit more general, since we might be using other
761     CUE extractors.
762
763  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 18 Aug 2005 23:44:20 +0300
764
765 abcde 2.3.0
766
767   * New upstream release!
768   * Defining the tracknumber now resets the first track if given a number
769     different than 1 (that is: abcde -T 1 2-10 creates songs 1 to 9).
770   * Modified the FAQ to reflect the changes on Marillat's repo
771     (Closes: #315724).
772   * Should be "space" safe: works properly when the working directory contains
773     a space (Closes: #147493).
774   * Repared the CD query for the discid code. When failing to read a disc,
775     actually report that there might be no disc in the drive.
776   * Right now, walk over the different encoders we Depends: on in Debian and
777     use the one available: if a user has a FLAC encoder, abcde will no install
778     vorbis-tools, so it will fail to run out of the box (Closes: #321216)
779   * Added CUE support. Still experimental...
780   * Added FLAC on Ogg. Still not activated, since we cannot get comments added
781     as a post-process action.
782   * Applied patches from Fedora Core (Credit goes to Nils Philippsen
783     <nphilipp@redhat.com>)
784   * Added a post_read() function to be executed before ejecting the CD.
785   * Typos reported by A Costa corrected (Closes: #311463)
786   * Problem with abcde being run in a directory with files containing only
787     numbers solved (Closes: #313628).
788   * vorbiscomment uses now "-R" (Closes: #303566).
789   * "-t" and "-T" use the first track as a starter for the track list.
790     (Closes: #305749).
791   * Added CDPARANOIACDROMBUS option to define -d in case of using IDE and SCSI
792     in case of using ide-scsi emulation layer (Closes: #290768).
793   * Define metaflac in abcde.conf (Closes: #303555)
794   * Added the default "-f" option to the configuration file, to represent the
795     actual default option.
796
797  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 11 Aug 2005 00:47:27 +0300
798
799 abcde 2.2.6
800
801   * Double quotation added to solve parsing * as a wildcard (Closes: #302904).
802     Thanks to Christian Grigis for the patch. Also (Closes: #268088).
803
804  -- Jesus Climent <jesus.climent@hispalinux.es>  Sun,  3 Apr 2005 18:18:03 +0000
805
806 abcde 2.2.5
807
808   * CDPARANOIAOUTPUT missed some quotes.
809   * Removed some useless lines.
810   * If BATCH is used with ONETRACK, disable BATCH.
811   * Small typos with CDROM comparisons.
812   * Logic for CDROM variable improved.
813   * Version bumped to 2.2.5 and targeted to Sarge.
814
815  -- Jesus Climent <jesus.climent@hispalinux.es>  Sat,  2 Apr 2005 21:05:18 +0300
816
817 abcde 2.2.4
818
819   * Changed the way we call flac, to adapt to the new times:
820     --import-vc-from= to --import-tags-from.
821   * DOSPLAYLIST was not included in the list of options.
822   * Options passed to the encoder by using <-o ogg:"-b 192"> are now
823     supported. One can modify the way abcde encodes just for the current CD.
824   * Unfortunately I forgot to add the starting number for tags in Ogg. For
825     MP3 is a bit more difficult, since it needs changing the X/YY code.
826   * Also, the order of the tags in metaflac is important for the utf8 names.
827     Thanks to Frederik Juul Christiani (Closes: #297482)
828   * Added CDROMID in the .conf file, for reader programs that need it
829     (Closes: #297005)
830   * Added a check for cdparanoia when encountering data-only CDs.
831
832  -- Jesus Climent <jesus.climent@hispalinux.es>  Tue,  1 Mar 2005 15:14:24 +0200
833
834 abcde 2.2.3
835
836   * debian/control
837     - suggest normalize-audio, since it changed its name (Closes: #287674).
838   * Use the default while erasing an existing playlist (Closes: #288835).
839   * Does not destroy track information when a track contains "=" in the name
840     (Closes: #290709).
841
842  -- Jesus Climent <jesus.climent@hispalinux.es>  Sat, 22 Jan 2005 15:35:46 +0200
843
844 abcde 2.2.2
845
846   * Quotes missing when evaluating a value (Closes: #284018).
847
848  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri,  3 Dec 2004 09:20:18 +0200
849
850 abcde 2.2.1
851
852   * Spotted and solved a problem with the way the data tracks were detected
853     (Closes: #282647).
854
855  -- Jesus Climent <jesus.climent@hispalinux.es>  Wed, 24 Nov 2004 22:47:54 +0200
856
857 abcde 2.2.0
858
859   * New release! Let's see if abcde 2.2 gets into Sarge.
860   * Added support for MPP/MP+(Musepack) encoding. Although I am trying to
861     get 2.2 for Debian Sarge release, mpc seems safe enough to introduce. See
862     corecodec.org for code.
863   * Some POSIX shell corrections (making the code more portable). Thanks to
864     Guillem Jover for pointing the problem out.
865   * CDYEAR is also passed to do_move(), so one can use it for sorting the
866     directories.
867   * Small MacOS X fix, allowing directories with "()" to work. Thanks to Evan
868     Jones.
869     - On the MacOS X, I still do not know if abcde works correctly. If does
870       not, please, drop a note. Or else.
871   * DOSPLAYLIST also changes "/" with "\".
872   * DATA tracks are now excluded from the ripping process using internally
873     the cdparanoia "-Q" query option. If using another ripper, it does not
874     work (at least there is no support for them in abcde)
875     (Closes: #112692, #117412).
876   * New "0" choice for "None of the above" has been introduced. If selected, a
877     template is created and the user encouraged to edit it (Closes: #147683).
878   * New options for when the PLAYLIST already exists: erase, append or keep.
879   * Bug fixes along the code:
880     - abcde.1 corrections and additions
881     - abcde corrections and code reorganization. abcde now exits earlier if
882       some of the options are incompatible. Also the actions are set as
883       variables earlier, so we use less calls to external tools.
884     - abcde.conf additions
885   * The GENRE is munged now in its own mungegenre function, so that no more
886     upper-to-lowercase is done (forced) except if the default is used.
887   * Examples added to the tarball and /usr/share/doc/abcde/examples with two
888     scripts to make abcde kind-of-a ripper daemon.
889   * Changed to experimental to have an stable 2.1.x version in Sarge.
890   * Add CDDB information to Ogg/Vorbis and FLAC files (Closes: #265358).
891   * Added INTERACTIVE option. Set it to "n" and there you go, without user
892     interaction.
893   * Changes normalize to normalize-audio (Closes: #267053)
894   * Copes with wav files being erased by the ripping tool.
895   * Small patch to support ()'s in the path under MacOSX. Thanks to Evan Jones
896     for noticing and sending the patch.
897   * Added -w for COMMENT seed. Used to give a comment to a given CD.
898   * Option "-t <number>" added to modify the numbering from a starting point
899     (Closes: #95828). Geez! That is low bug number...
900   * Added -T to modify also the tag entries on the songs. Currently available
901     for FLAC and Ogg/Vorbis.
902   * Removes trailing spaces (Closes: #280382).
903   * TRACKNAME now combines multi-lines from long CDDB entries.
904   * debian/rules:
905     - s/dh_installmanpages/dh_installman/
906
907  -- Jesus Climent <jesus.climent@hispalinux.es>  Sun,  7 Nov 2004 03:11:22 +0200
908
909 abcde 2.1.21
910
911   * Changed normalize with normalize-audio (Closes: #267053).
912
913  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 20 Aug 2004 13:16:46 +0000
914
915 abcde 2.1.20
916
917   * The "Let's have a good abcde in Sarge" release.
918   * The mungefile() function changes * with + by default to avoid creating
919     directories with the start expanded to the files found in the current
920     directory. abcde2.2 will most likelly contain a better workaround.
921   * Correct default OUTPUTFORMAT in man page (Closes: #250649)
922
923  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 30 Jul 2004 10:16:46 +0300
924
925 abcde 2.1.19
926
927   * Encoding the whole CD in one file is now possible. Use "-1" as a flag
928     (Closes: #126267).
929
930  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri,  9 Apr 2004 17:04:58 +0000
931
932 abcde 2.1.18
933
934   * Do not release in a hurry. The eject program is not needed if CDSPEEDVALUE
935     is not set and no EJECT action is performed (Closes: #242506)
936
937  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu,  8 Apr 2004 05:18:49 +0000
938
939 abcde 2.1.17
940
941   * Dud! Those missing quotes are going to kill me. Quotes restored and
942     (Closes: #242508).
943
944  -- Jesus Climent <jesus.climent@hispalinux.es>  Wed,  7 Apr 2004 06:30:31 +0000
945
946 abcde 2.1.16
947
948   * New setting for the CD speed. Some drives have a higher failure ratio when
949     spinning at high speed.
950   * Added a pre-read function for preparations. Uses include closing the CD
951     tray (Closes: #137548).
952   * Added COMMENT part in OggFlac metadata.
953   * Documentation update: README, abcde.1
954   * Do not tag GENRE and DATE in Ogg/Vorbis if CDDB does not provide them
955     (Closes: #235531).
956   * Solved bug with batch encoding, thanks to Travis McKay.
957   * When *DATAPREFIX was set, the playlist creation was made without newline.
958   * Added >&2 redirection to visualize the "Erase playlist" question
959     (Closes: #241221).
960   * Added the option "-m" to modify the resulting playlist, to contain CRLF at
961     the end of every line, letting some hardware players which insist with
962     DOS-style files to use them. Also, added DOSPLAYLIST as a config option.
963   * When using a selected, localy cached CDDB entry, we forgot to show the
964     selection when asking the user for editing the choice. Now we show it.
965   * Improved the logic in the order of events when using a local CDDB repo.
966
967  -- Jesus Climent <jesus.climent@hispalinux.es>  Tue,  6 Apr 2004 05:29:38 +0000
968
969 abcde 2.1.15
970
971   * EDITOR is called now evaluating the variable, so it works with full path
972     and arguments.
973   * Patch for making md5sum a variable (since some systems use a different
974     name).
975   * Correction by "huf" <mihi at mail.eol.hu>. The test code in line 376
976     needed some quotes.
977   * The PADDING code and some CDDB funcions were *really* messy. Now it looks
978     cleaner, works faster and some not needed network operations are no
979     longer performed when we are working with local CDDB repositories.
980   * Added "-V" for extra verbosity (on slow networks the user might be waiting
981     and wondering is something is happening).
982   * Solved a bug with the non-interactive code.
983
984  -- Jesus Climent <jesus.climent@hispalinux.es>  Mon, 16 Feb 2004 00:13:12 +0000
985
986 abcde 2.1.14
987
988   * Missing quotes restored (Closes: #228648).
989
990  -- Jesus Climent <jesus.climent@hispalinux.es>  Tue, 20 Jan 2004 06:43:04 +0000
991
992 abcde 2.1.13
993
994   * Solved the problem with re-runs of multiple choices not showing all the
995     choices (Closes: #228405) (this was a quick one)
996   * We now show the selected CDDB entry on a second run, instead of all of
997     them (not that one should stop abcde, but just in case). This way
998     consecutive interrupted runs obtain the same results.
999
1000  -- Jesus Climent <jesus.climent@hispalinux.es>  Sun, 18 Jan 2004 22:42:15 +0000
1001
1002 abcde 2.1.12
1003
1004   * Check if normalizer is found in the PATH (Closes: #228014)
1005   * Added (commented) bits to check if the CD being processed is the CD on the
1006     tray, so that if differs we do not eject it.
1007   * Store locally the CDDB information, under $HOME/.cddb since it is being
1008     used by Grip (at least). PATH is user defined (Closes: #88048)
1009   * If you are using cdda2wav and SCSI drives, you can set CDROMID for the
1010     SCSI drive, since it differs from the cd-discid CDROM parameter
1011     (Closes: #121987).
1012   * MacOSX keeps on failing because the OS mounts the CD before we finish
1013     ripping it... or something else. Please, test test test the code, and
1014     report your findings. Pretty please. I have not been able to make it work
1015     with the reports I have received.
1016
1017  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 16 Jan 2004 12:06:07 +0000
1018
1019 abcde 2.1.11
1020
1021   * Urgent fixes for the FreeBSD and MacOSX bits. When using cdda2wav, the
1022     CDROM variable must be modified depending on the device interface. By now
1023     we will not try to be very smart.
1024   * Added a test for HTTPGETOPTS since it cannot be empty for the default
1025     HTTPGET options.
1026   * Quick release to fix a problem with the CDROM detection code.
1027     (Closes: #226647)
1028   * Cleaned a bashism. Thanks to Klaus Ethgen (Closes: #226782).
1029   * Rewrote some parts of the cdda2wav code. Since I do not have a machine
1030     where cdda2wav works, I cannot test the code. The modifications have been
1031     done following user reports. If you use cdda2wav and abcde does not work
1032     for you, please, contact me and we will try to sort things out. Thanks.
1033
1034  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu,  8 Jan 2004 21:36:23 +0000
1035
1036 abcde 2.1.10
1037
1038   * INLINETAG and STARTTRACKNUMBER flags added.
1039   * CDROM checking is now done with a bit more wiselly (Closes: #219768)
1040   * HTTPGET is only requested is "cddb" action is performed.
1041   * Workout the possibility of cdparanoia erasing our wav files
1042     (Closes: #172694)
1043   * The default answer for editing CDDB data is now "y" if the disk is
1044     unknown. If not, the default is "n". Requested by Ricky Buchanan.
1045   * Now we do not erase silently any previous $PLAYLISTFILE left behind by a
1046     previous CD ripping (Closes: #220753)
1047   * Write info file with cdda2wav (Closes: #187702).
1048     I do not use cdda2wav myself (me is cd-paranoid) so if anyone using
1049     cdda2wav has a problem with this, please, report.
1050   * CDROM comes in 1,0,0 kind of format for cdda2wav ripper. Corrected with a
1051     quick patch. Kudos go to Mikhail Manuilov <viper5k at pisem dot net> for
1052     noticing.
1053   * Merged bits to make abcde work under MacOSX. Thanks to Evan Jones.
1054   * Merged bits to avoid FreeDB people anger and to cut down the "abcde." part
1055     of the discid. Now you can set the "-C" command with the directory name.
1056     Kudos go to Bart Samwel.
1057   * Added some info bits to the config file about normalize, requested by
1058     Ricky Buchanan.
1059   * Added some testing for the wav file before normalizing, to check that the
1060     file is actually there.
1061
1062  -- Jesus Climent <jesus.climent@hispalinux.es>  Mon,  5 Jan 2004 14:43:59 +0000
1063
1064 abcde 2.1.9
1065
1066   * The "First snow in Finland" release.
1067   * One head was missing a "-n"
1068   * Not use relative links when PLAYLISTDATAPREFIX is set (Closes: #165368)
1069   * Stupid use of $OUTPUTTYPE in flac tagging (Closes: #218625)
1070
1071  -- Jesus Climent <jesus.climent@hispalinux.es>  Sun,  2 Nov 2003 09:05:17 +0000
1072
1073 abcde 2.1.8
1074
1075   * Small typo corrected (Closes: #217149)
1076   * KEEPWAVS now sets the "clean" action to "no", so the wavs are kept.
1077     (Closes: #216551)
1078   * Quick release fixing a couple of bugs introduced by the padding patch
1079     (Closes: #215962)
1080   * Control: Build-Depends-Indep: moved to Build-Depends:, as per
1081     http://www.debian.org/doc/debian-policy/ch-relationships.html#s-sourcebinarydeps
1082     (Closes: #214200)
1083
1084  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 23 Oct 2003 09:49:01 +0000
1085
1086 abcde 2.1.7
1087
1088   * The "Engineer" release. Yeah! I graduated!
1089   * Patch applied to solve the track submission interface issues. Kudos to
1090     Marc HE Brockschmidt, again (Closes: #126289)
1091   * Small bug related with DISTMP3NICE solved. Kudos to Wilbert Alberts.
1092     (Closes: #213756)
1093   * Padding now creates the list with padded numbers. Test patch. This should
1094     solve the problem with delayed tagging a single file.
1095
1096  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 13 Oct 2003 09:50:09 +0000
1097
1098 abcde 2.1.6
1099
1100   * Removed a nasty bug where even if the encode failed, the track was marked
1101     as successfully encoded (Closes: #208391)
1102   * Various Artists has now its own PLAYLIST format (Closes: #137432)
1103   * metaflac path corrected (Closes: #206110)
1104   * Hopefully this version repairs the comment part for Ogg/Vorbis files.
1105   * If nothing breaks, 2.2 will be released as soon as the KNOWNBUG is solved.
1106   * Removed all the inline tagging since it breaks the action chain, except
1107     in Ogg/Speex. Need to check if "vorbiscomment" can be used for it.
1108     (Closes: #206311)
1109   * Added DISTMP3NICE variable, to nice the distmp3 program (Closes: #208398)
1110
1111  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu,  4 Sep 2003 10:53:09 +0000
1112
1113 abcde 2.1.5
1114
1115   * Small fixes and patches.
1116     + GENRE can be used for OUTPUTFORMAT and PLAYLISTFORMAT
1117     + id3v2 should work now with -c for comments (Closes: #199949)
1118     + small bug with batch encoding
1119     + Variables are exported before the CDDB functions are called, so they
1120       should use the right variables for the HTTPGET command.
1121     + Tagging also use TRACKS and CDGENRE for MP3 files (kudos to Dirk
1122       Ruediger)
1123     + FLAC encoding now uses dismp3 to encode remotely (kudos to Taylor and
1124       Kevin Cramer). HANDLE WITH CARE ;)
1125       Also FLAC now uses CDGENRE and CDYEAR for tagging.
1126   * tail/head change: -1 has been deprecated. Noted by Stephan Kulow.
1127   * Ogg/Speex support added, for speech encoding (Closes #204635)
1128   * Documentation update (Closes: #198825)
1129   * Patch for "=" in the name applied (Closes: #197199)
1130
1131  -- Jesus Climent <jesus.climent@hispalinux.es>  Thu, 14 Aug 2003 16:45:29 +0000
1132
1133 abcde 2.1.4
1134
1135   * Small bug fixes:
1136     + COMMENT should work now.
1137     + Aesthetic padding on the total amount of tracks.
1138     + CDROM typo
1139     + CDROM is now checked after reading the user defined entries.
1140   * Remove trailing args from $EDITOR when checking -x: Closes #179222.
1141
1142  -- Jesus Climent <jesus.climent@hispalinux.es>  Sun, 18 May 2003 18:47:36 +0000
1143
1144 abcde 2.1.3
1145
1146   * Makefile was missing cddb-tool.1.
1147   * Introduced dagrab as CD ripping utility.
1148   * cddb-tool seq calls converted to functions. No more distro dependencies.
1149   * WGET* variables converted to HTTPGET* variables. FreeBSD can safelly use
1150     fetch.
1151   * More FreeBSD specific bits: CDROM and EJECT changes.
1152   * Typo in abcde.conf
1153   * Added CDDBPROTO for specifying the protocol level of the cddb query.
1154   * CDDB protocol upgraded to 5. CDYEAR and CDGENRE are now used for CD
1155     tagging.
1156   * COMMENT is now used for inline tagging with oggenc (my mistake it was
1157     missing): Closes: #191475.
1158
1159  -- Jesus Climent <jesus.climent@hispalinux.es>  Sat, 10 May 2003 07:49:22 +0000
1160
1161 abcde 2.1.2
1162
1163   * Documentation updates: Closes: #186230.
1164   * Usual set of bug fixes and corrections.
1165   * Default behaviour of VAOUTPUTFORMAT output changed to avoid multiple
1166     directories for a same album. I think the format is more logical, and you
1167     can always split the files once they are created.
1168   * Padding track wavs with 0 so if you want to burn those wavs just cdrecord
1169     *.wav will do it. Use "-p" to force it when encoding a small (<9) number
1170     of files (Closes: #111627).
1171   * Added "KEEPWAVS" as a variable to keep those wavs. Default is "no". Can
1172     use also "-k" in the command line. (Closes: #160372).
1173     This probably should be changed with an option to move the wav files to
1174     another directory instead of just keep de abcde.<cdid> directory.
1175   * Added documentation comments about OUTPUTTYPE (Closes: #184963).
1176   * abcde.conf cleanup: (Closes: #186230, #187400).
1177
1178  -- Jesus Climent <jesus.climent@hispalinux.es>  Tue, 25 Mar 2003 16:39:25 +0200
1179
1180 abcde 2.1.1
1181
1182   * New release.
1183
1184  -- Jesus Climent <jesus.climent@hispalinux.es>  Mon, 17 Mar 2003 08:52:01 +0200
1185
1186 abcde 2.1.0-3
1187
1188   * Since abcde does not depend on eject, an execution test ([-x]) was added,
1189     but that means abcde needs a test for eject in the patch if -x is passed:
1190     Closes: #184151.
1191   * Merged some more bits from Marc 'HE' Brockschmidt: Closes: #126289.
1192   * A bit of more info in abcde.conf: Closes: #184963.
1193   * cddb-tool version updated to 0.4.2
1194
1195  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 14 Mar 2003 18:00:03 +0000
1196
1197 abcde 2.1.0-2
1198
1199   * Old version string left behind. Updated.
1200   * Few more doc update bits.
1201   * Patches from Marc 'HE' Brockschmidt: Closes: #149499.
1202   * Small patch from Norbert Preining to support multiple output in the output
1203     directory.
1204   * cddb-tool parses CDYEAR with the help of awk: Closes: #114848.
1205   * cddb-tool does not globe "*" characters anymore: Closes: #157448.
1206
1207  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 7 Mar 2003
1208
1209 abcde 2.1.0
1210   * The infamous "Works for me(TM)" and "Time to release" release.
1211     + We preppend track number now: Closes: #128966.
1212     + Itegrate flac: Closes: #126311.
1213     + Multi-format encode: Closes: #148934.
1214     + Gapless lame encoding: Closes: #172696.
1215     + CDROM documented: Closes: #182403.
1216   * Applied OpenBSD patches to make the script more portable. Thanks to Han
1217     Boetes.
1218   * Documentation fixes: closes: #100844, #136741.
1219   * NetBSD patches applied:
1220     - EXPERIMENTAL Normalize and Batch support.
1221     - EXPERIMENTAL FLAC support.
1222   * EXPERIMENTAL multiple output support:
1223     + multiple output and error checking
1224     + multiple lists support
1225   * Default output file changed to have the $track_number in the beginning.
1226   * abcde takeover.
1227
1228  -- Jesus Climent <jesus.climent@hispalinux.es>  Fri, 28 Feb 2003
1229
1230 abcde 2.0.3
1231   * The Fixed-Yet?-How-About-Now?-What-About-Now?-Now? Release
1232   * SMP fixed, mad props to Steve Madsen, closes: #69828, #111806
1233   * Minor code cleanups thanks to Adam Heath
1234   * Multiple inexact match results are generated in a safe manner
1235     thanks to Nick Martin, closes: #126025
1236   * Removed cddb-tool template generation bashism, thanks to Greg
1237     Norris, closes: #126327
1238   * Windows can't handle double quotes in filenames either.
1239     The default mungefilename now removes them, closes: #127643
1240   * Using -C with WAVOUTPUTDIR fixed, closes: #127728
1241   * Resuming various artists discs fixed, closes: #127731
1242
1243  -- Robert Woodcock <rcw@debian.org>  Sun, 27 Jan 2002
1244
1245 abcde 2.0.2
1246   * The One-More-Time-With-Feeling Release
1247   * Bladeenc really works this time. Honest. closes: #121988
1248
1249  -- Robert Woodcock <rcw@debian.org>  Mon,  3 Dec 2001
1250
1251 abcde 2.0.1
1252
1253   * The I-Don't-Listen-To-Sssca Release
1254   * Example abcde.conf fixes, closes: #111580
1255   * So much for bladeenc's l3enc compatibility, closes: #110863
1256   * CDDB submit fixes (to enable CDDB submitting, put
1257     UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your abcde.conf),
1258     closes: #111478, #111500
1259   * Minor mungefilename() cleanup
1260   * Small manpage fix
1261   * Works with oggenc when POSIXLY_CORRECT is defined, thanks to Juhapekka
1262     Tolvanen
1263   * Quote remote locations when calling distmp3
1264   * Allow remote encoding of oggs
1265   * Only remove wav files if the encoding succeeded
1266   * No-local-encoding via -j 0 fixed, thanks to Hans-Joachim Baader
1267   * CD read errors are trapped/resumed cleanly now thanks to Pete,
1268     closes: #111618
1269   * devfs device check fix, thanks to Clint Adams
1270   * Check for seq command - some BSD's have jot instead and abcde can't
1271     use that yet
1272   * Various Artists playlist generation fixed, thanks to William Lash
1273
1274  -- Robert Woodcock <rcw@debian.org>  Tue,  6 Nov 2001
1275
1276 abcde 2.0
1277
1278   * The Psychiatrist-Says-I'm-Stable-Again Release
1279   * Renamed to 2.0
1280   * Minor documentation updates
1281
1282  -- Robert Woodcock <rcw@debian.org>  Wed, 15 Aug 2001
1283
1284 abcde 1.9.10
1285
1286   * The Waiter-There's-A-Proof-In-My-Pudding Release
1287   * Fixed some quoting issues preventing abcde from using a temp directory
1288     containing spaces, closes: #89682
1289   * Now purges encodetracklocation notes from the status file when resuming.
1290   * -a playlist now implies -a cddb
1291   * Manpage and default config file updates, closes: #78726, #100841, #100845
1292   * Applied checkstatus patch by Itai Zukerman, fixes certain track number
1293     status checking situations, closes: #93395
1294   * Check to see if things run through run_command return a nonzero error
1295     code and present the command and error code to the user later,
1296     closes: #93485
1297   * Devfs fixup - If /dev/cdrom doesn't exist, try /dev/cdroms/cdrom0,
1298     closes: #101933
1299   * If a background process returned an error, log it. If it was an encode
1300     process, abandon that encode location and don't wait for the encode
1301     process to finish. Display the commandlines that resulted in error exits
1302     with their exit codes before aborting.
1303   * do_tag handles vorbis commenting failures idempotently
1304   * -n works again
1305   * Resumes encoding if all files have ripped, closes: #101843
1306   * do_cddbedit code checks to see if it's already been run
1307
1308  -- Robert Woodcock <rcw@debian.org>  Wed,  1 Aug 2001
1309
1310 abcde 1.9.9
1311
1312   * The Not-Quite-Last-In-The-Development-Series Release
1313   * I broke ID3v1 comments in 1.9.8, it's fixed now, thanks to Christian
1314     Beyerlein for noticing this
1315
1316  -- Robert Woodcock <rcw@debian.org>  Tue, 13 Mar 2001
1317
1318 abcde 1.9.8
1319
1320   * The Groundshaking Release
1321   * Now defaults to using FreeDB instead of Gracenote. Pricks.
1322   * New VAOUTPUTFORMAT variable for those who like their various artists
1323     discs named in a different format
1324   * Accommodates the fact that OpenBSD xargs does not eat whitespace, thanks
1325     to Marcus Daniel for discovering this
1326   * New scheduler for distmp3, thanks to David Bergeron
1327   * xingmp3enc support, thanks to Brian Gannon
1328   * Stripped down cddb-tool a little bit so that abcde no longer requires
1329     mktemp
1330   * New -C option to let people continue where they left off if they no
1331     longer have the CD handy
1332   * ID3COMMENT is now COMMENT
1333   * Ogg commenting is now done separately so resuming doesn't break it
1334   * More documentation updates
1335
1336  -- Robert Woodcock <rcw@debian.org>  Sat, 10 Mar 2001
1337
1338 abcde 1.9.7
1339
1340   * The Overcast Partial Eclipse Release
1341   * Supports ID3v2
1342   * Various Artists heuristics patch by Kevin Everets
1343   * New -c option to specify an extra configuration file
1344   * Does not try to check if a tagger exists unless OUTPUTTYPE=mp3
1345   * cddb-tool template output fixes
1346   * Yet more documentation updates
1347   * Avoids id3v2's -c option for now
1348   * Adds support for another Various Artists format, "Artist: Title", thanks
1349     to Wolfgang Borgert
1350   * Fixed typo that was breaking remote encoding support
1351   * Hitting control-c while there's nothing in the foreground no longer
1352     causes abcde to delete all its work upon exit
1353
1354  -- Robert Woodcock <rcw@debian.org>  Sun,  7 Jan 2001
1355
1356 abcde 1.9.6
1357
1358   * The Squishy Release
1359   * Updated getopts call to remove obsoleted options
1360   * More documentation fixes, closes: #77957
1361   * Single inexact match spurious question fix
1362   * Fixed encoder trigger timing when using -l, closes: #77854
1363
1364  -- Robert Woodcock <rcw@debian.org>  Sun, 26 Nov 2000
1365
1366 abcde 1.9.5
1367
1368   * The "Run Towards Trick Or Treaters With Scissors" Release
1369   * Some documentation updates
1370   * mungefilename quoting fix
1371   * Implemented -a, which replaces -p, -P, and a number of other things
1372
1373  -- Robert Woodcock <rcw@debian.org>  Mon, 30 Oct 2000
1374
1375 abcde 1.9.4
1376
1377   * The "Run With Scissors" Release
1378   * Various Artists support by Kevin Everets
1379   * Specifying track numbers on the command line should work again, bash was
1380     getting a wee bit confuzzled with the way I had things before.
1381   * A couple more error output changes and miscellaneous fixes
1382   * OUTPUTDIR works again
1383
1384  -- Robert Woodcock <rcw@debian.org>  Thu, 28 Sep 2000
1385
1386 abcde 1.9.3
1387
1388   * The ugh Release
1389   * Brown Paper Bag fix for mp3enc users
1390   * Recreated the rest of the variable environment in do_playlist, fixes
1391     TRACKNUM availability for real this time, closes: #72535
1392
1393  -- Robert Woodcock <rcw@debian.org>  Tue, 26 Sep 2000
1394
1395 abcde 1.9.2
1396
1397   * The "Very Long Changelog Entries Can Become Addicting" Release.
1398   * Switched default output type to ogg, default encoder to oggenc
1399   * Since 1.9.x prompts for CDDB edits by default there is now a -N switch
1400     for non-interactivity.
1401   * Handles cddb entries with random sprinklings of CR's and LF's
1402   * You can now specify niceness for the reader and encoders, thanks to
1403     Kevin Everets <kevin.everets@alcatel.com>
1404   * -j 0 will now disable local encoding, thanks to Antonio Fiol
1405     <Antonio.FIOL@enst-bretagne.fr>
1406   * Vorbize should actually work now, thanks to Kevin Everets and James
1407     LewisMoss
1408   * Oggenc/Vorbize commenting support
1409   * Made TRACKNUM available for playlist generation
1410   * Fleshed out the TODO list a bit more
1411   * mungefilename() now translates ':' to ' -' by default. Rationale: You
1412     can't put ':' on a FAT filesystem. It also wreaks havoc with Samba.
1413
1414  -- Robert Woodcock <rcw@debian.org>  Mon, 25 Sep 2000
1415
1416 abcde 1.9.1
1417
1418   * The "Don't Fraun" Release.
1419   * Fixed a half-dozen minor buglets
1420   * A little less debug output, a lot more normal output
1421   * Resuming operation works better now
1422   * Patched up offline usage again
1423   * Broke OUTPUTFORMAT - if you plan on ever using Ogg support, and you've
1424     overridden the OUTPUTFORMAT default, change the ".mp3" to
1425     ".${OUTPUTTYPE}"
1426   * Beginnings of Ogg Vorbis support (vorbize and oggenc) - warning:
1427     completely untested
1428
1429  -- Robert Woodcock <rcw@debian.org>  Thu, 17 Aug 2000
1430
1431 abcde 1.9
1432
1433   * The "" Release.
1434   * Completely redone tmpfile handling, abcde can now continue where you left
1435     off. closes: #42970, #50883, #66668
1436   * Restructured program execution scheduling around central status file
1437   * Moved cddb-tool interactivity to abcde, 'cddb-tool get' no longer exists,
1438     it is now 'cddb-tool query' and 'cddb-tool read'.
1439   * Removed -e, -v, and -V, since abcde will now prompt you if you want to
1440     edit or otherwise muck with the data after you have a chance to see it.
1441
1442  -- Robert Woodcock <rcw@debian.org>  Thu, 22 Jun 2000
1443
1444 abcde 1.1.1
1445
1446   * The "That wasn't chicken" release.
1447   * Remote distributed encoding had a bad bug in 1.1 - work to be done
1448     remotely was duplicated locally (everything still turned out ok - there
1449     was just no speedup). Fixed that.
1450   * Restructured encode_and_tag function.
1451
1452  -- Robert Woodcock <rcw@debian.org>  Sun, 07 May 2000
1453
1454 abcde 1.1
1455
1456   * The "We heard Mr. Garrison say them a couple of times" Release.
1457   * New -r and REMOTEHOSTS option to use distmp3 to encode to multiple
1458     hosts at once.
1459   * Command-line track range specification (f.e. "abcde 1-12"
1460     (Thanks: Vincent Ho)
1461   * Now displays minutes/seconds for each track while displaying track titles
1462     at the start
1463
1464  -- Robert Woodcock <rcw@debian.org>  Tue, 18 Apr 2000
1465
1466 abcde 1.0.6
1467
1468   * The "Inspected by #17" Release.
1469   * New EJECTCD option to eject the CD after all tracks are read (thanks:
1470     Hrafnkell F Hlodversson)
1471
1472  -- Robert Woodcock <rcw@debian.org>  Sun,  2 Apr 2000
1473
1474 abcde 1.0.5
1475
1476   * The "...So we can both watch X-Files..." Release.
1477   * Quoting fix for setups without space->underscore filename munging
1478   * README file URL fixes/updates
1479
1480  -- Robert Woodcock <rcw@debian.org>  Thu, 16 Mar 2000
1481
1482 abcde 1.0.4
1483
1484   * CDPARANOIAOPTS and CDDA2WAVOPTS should work now.
1485
1486  -- Robert Woodcock <rcw@debian.org>  Sun, 20 Feb 2000
1487
1488 abcde 1.0.3
1489
1490   * The "This Space Intentionally Left Blank" Release
1491   * Support for reverse and dashed Various Artists discs
1492   * More elegant way of passing backtick data
1493   * Replaced all `foo` commands with $(foo)
1494   * Custom filename munging, closes: #38448
1495
1496  -- Robert Woodcock <rcw@debian.org>  Wed,  9 Feb 2000
1497
1498 abcde 1.0.2
1499
1500   * Now eats backticks in CDDB input (thanks to Steve Beattie)
1501   * mp3enc support (thanks to Richard Jelinek and Chris Ruvolo), closes: #56189
1502   * cddb-tool more gracefully handles no net connection for those with
1503     local caching name servers
1504   * Fixed HELLOINFO documentation bug, closes: #56189
1505
1506  -- Robert Woodcock <rcw@debian.org>  Wed, 26 Jan 2000
1507
1508 abcde 1.0.1
1509
1510   * The "s/ever/ Three Days/" Release
1511   * Now properly handles double-quotes in Artist and Album data
1512     (thanks to Clint Adams), closes: #54888
1513
1514  -- Robert Woodcock <rcw@debian.org>  Thu, 13 Jan 2000
1515
1516 abcde 1.0
1517
1518   * The "But a 1.0 is Forever" Release
1519   * Backed out cddb-tool quoting change, closes: #54005
1520   * Now strips carriage returns from CDDB data, closes: #53815
1521   * Added ID3COMMENT config option
1522
1523  -- Robert Woodcock <rcw@debian.org>  Mon, 10 Jan 2000
1524
1525 abcde 0.8.9
1526
1527   * The "Get it Before the World Implodes" Release
1528   * Added -D (debugging option, outputs debugging information to stderr).
1529     Very useful for submitting bug reports, hint hint hint :)
1530     Just do 'abcde -D 2>logfile' and include logfile in your bug report.
1531   * Now uses id3's new -T option to embed track numbers in ID3 tags.
1532   * Fixed cddb-tool output for FreeDB submissions, closes: #51986.
1533     Thanks to Clint Adams for spotting the problem
1534   * New -v switch for Various Artist CD's (thanks to Magenta Hari Nezumi)
1535     closes: #43581
1536   * Fixed minor cddb-tool manpage buglet
1537   * Fixed cddb-tool output for shell quoting, thanks to Philipp Meier.
1538     closes: #52469
1539
1540  -- Robert Woodcock <rcw@debian.org>  Fri, 31 Dec 1999
1541
1542 abcde 0.8.8
1543
1544   * Added gogo explainations to manpages and example config file
1545   * Added code by Stuart Ballard <sballard@netreach.net> to intelligently use
1546     relative paths for playlist files
1547   * Added PLAYLISTDATAPREFIX config option for those who wish to prefix their
1548     playlist data with things like URL's
1549   * Fixed bug added in 0.8 where the multiple inexact match choice selection
1550     would be hidden to the user (cddb-tool wasn't sending all user output to
1551     stderr as it should).
1552
1553  -- Robert Woodcock <rcw@debian.org>  Sun, 28 Nov 1999
1554
1555 abcde 0.8.7
1556
1557   * Removed parallelization of silent encoder processes
1558
1559  -- Robert Woodcock <rcw@debian.org>  Tue, 16 Nov 1999
1560
1561 abcde 0.8.6
1562
1563   * Removed bashisms (again :)
1564
1565  -- Robert Woodcock <rcw@debian.org>  Sun, 14 Nov 1999
1566
1567 abcde 0.8.5
1568
1569   * Fixed some output issues regarding background encoding that cropped up in
1570     0.8.3
1571
1572  -- Robert Woodcock <rcw@debian.org>  Sun,  7 Nov 1999
1573
1574 abcde 0.8.4
1575
1576   * New name. A Better CD Encoder. cdgrab was already taken - the original
1577     cdgrab name belongs to a CDDA reading program for DOS dating back to
1578     1993. It's still in use and active development, so I'm changing the
1579     name of cdgrab instead. See this URL for a description of the original
1580     cdgrab: http://www.scn.rain.com/pub/cdrom/cdgrab.txt
1581
1582     Your old /etc/cdgrab.conf and/or ~/.cdgrab.conf can simply be
1583     renamed to /etc/abcde.conf and ~/.abcde.conf.
1584
1585     The program name is now 'abcde'.
1586
1587  -- Robert Woodcock <rcw@debian.org>  Tue,  2 Nov 1999
1588
1589 cdgrab 0.8.3
1590
1591   * cdgrab 0.7 through 0.8.2 would leave around cdgrab.xxxxxx
1592     tempfiles with -j. Fixed that.
1593   * Fixed quoting issues regarding spaces in output files
1594
1595  -- Robert Woodcock <rcw@debian.org>  Thu, 28 Oct 1999
1596
1597 cdgrab 0.8.2
1598
1599   * Supports the 'gogo' mp3 encoder
1600   * cddb-tool escapes double quotes when sourcing its temp files
1601   * Added cddb-tool manpage
1602
1603  -- Robert Woodcock <rcw@debian.org>  Sun, 10 Oct 1999
1604
1605 cdgrab 0.8.1
1606
1607   * Cleared up some bashisms from the patches merged in 0.8
1608
1609  -- Robert Woodcock <rcw@debian.org>  Sun, 19 Sep 1999
1610
1611 cdgrab 0.8
1612
1613   * Fixed a bug where if multiple tracks (but not the entire CD) was
1614     specificed explicitly, cdgrab would loop forever after the first track
1615   * Now uses Debian's sensible-editor wrapper if available
1616   * Merged in patches from Nathaniel J Smith that puts cddb lookup
1617     functionality in a separate script, cddb-tool
1618   * Adds WAVOUTPUTDIR environment variable for those running out of space in
1619     OUTPUTDIR.
1620
1621  -- Robert Woodcock <rcw@debian.org>  Thu, 26 Aug 1999
1622
1623 cdgrab 0.7.7
1624
1625   * Yet another quick fix to finish what 0.7.6 started - cdgrab should now
1626     handle multiple inexact matches as well. (Thanks again to Robert Macaulay)
1627
1628  -- Robert Woodcock <rcw@debian.org>  Thu, 12 Aug 1999
1629
1630 cdgrab 0.7.6
1631
1632   * Another quick bugfix release - hopefully this will handle inexact matches
1633     properly now. (Thank you Robert Macaulay :)
1634
1635  -- Robert Woodcock <rcw@debian.org>  Mon,  9 Aug 1999
1636
1637 cdgrab 0.7.5
1638
1639   * Quick bugfix release - with any luck I can start on 0.8 soon :)
1640   * **** YOU WILL NEED TO EDIT CDGRAB.CONF **** if you use lame as
1641     /usr/bin/lamer. The default program name is now 'lame' as of lame v3.0.
1642     If you don't want to touch your lame installation, put the following in
1643     your cdgrab.conf: "LAME=lamer"
1644   * Omits -w from cdparanoia commands
1645   * Depends on cdparanoia-bin or cdparanoia now - this accommodates the recent
1646     cdparanoia package namechange.
1647   * Fixed a stealth-whitespace typo at line 495. Thanks go to Gregory T.
1648     Norris for tracking this down.
1649
1650  -- Robert Woodcock <rcw@debian.org>  Tue, 13 Jul 1999
1651
1652 cdgrab 0.7.4
1653
1654   * Now only uses the first match from a CDDB datafile for the track
1655     information, this works around a cddb glitch some of you may have
1656     hit last month
1657   * Default config file now gets version number from program.
1658   * added 'debug' option to CDROMREADERSYNTAX to get cdparanoia to only rip
1659     the first 5 seconds of a track. This is very useful to those debugging
1660     cdgrab, makes things go much faster. This will also prevent me releasing
1661     another 0.7.2 :)
1662   * Now puts options last on the encoder command line if you are using
1663     bladeenc or l3enc, this should allow the proper use of these encoders
1664     with additional commandline options (thanks to Justin Hugh Daly for
1665     pointing this out)
1666   * m3u PLAYLIST SUPPORT! Check out the new -p and -P options!
1667
1668  -- Robert Woodcock <rcw@debian.org>  Mon,  7 Jun 1999
1669
1670 cdgrab 0.7.3
1671
1672   * Fixes wget calling method
1673   * -l/LOWDISK documented
1674   * Fixes the lowdisk #2 option so it exits cleanly
1675   * Lets you enter track info for CDs without CDDB matches now
1676
1677  -- Robert Woodcock <rcw@debian.org>  Sun, 23 May 1999
1678
1679 cdgrab 0.7.2
1680
1681   * Woops, left some debugging code in 0.7.1 - if you have truckloads of 80kb
1682     mp3's, try this :)
1683
1684  -- Robert Woodcock <rcw@debian.org>  Sun, 16 May 1999
1685
1686 cdgrab 0.7.1
1687
1688   * LOWDISK/-l option added for those who don't have the disk space to run a
1689     parallelized session.
1690   * MAXPROCS added to config file
1691   * CDDB handling revisited - cdgrab should now properly handle CD's with
1692     multiple or inexact CDDB entries.
1693
1694  -- Robert Woodcock <rcw@debian.org>  Fri, 14 May 1999
1695
1696 cdgrab 0.7
1697
1698   * Parallelizes ripping and encoding - this may take substantially more disk
1699     space temporarily (up to 500MB or so depending on how fast your CPU is
1700     compared to your cdrom drive) but cdgrab will be done with your CD
1701     much more quickly.
1702   * Allows for SMP optimizations (multiple encoders running at once) with the
1703     new -j option
1704   * Output fix for TOC printing
1705   * cd-discid split off into it's own package
1706
1707  -- Robert Woodcock <rcw@debian.org>  Fri,  7 May 1999
1708
1709 cdgrab 0.6.2
1710
1711   * Fixes encoder and cdrom reader option-passing bug
1712
1713  -- Robert Woodcock <rcw@debian.org>  Sun,  4 Apr 1999
1714
1715 cdgrab 0.6.1
1716
1717   * Adds the -H option (don't create .inf files) when calling cdda2wav
1718   * Removed a bashism from the usage function
1719
1720  -- Robert Woodcock <rcw@debian.org>  Mon, 29 Mar 1999
1721
1722 cdgrab 0.6
1723
1724   * Tacks a .wav extension to the wave data temporary file to make bladeenc
1725     happy.
1726   * Munges /'s to _'s now instead of eating them
1727   * Adds command-line option configuration options for backend programs
1728   * Properly zero-pads the TRACKNUM variable
1729
1730  -- Robert Woodcock <rcw@debian.org>  Sun, 28 Mar 1999
1731
1732 cdgrab 0.5
1733
1734   * Added support for inexact or multiple CDDB matches
1735   * Properly bombs out if CDDB can't come up with a match
1736     (without CDDB, you might as well use cdparanoia -B)
1737
1738  -- Robert Woodcock <rcw@debian.org>  Thu, 18 Mar 1999
1739
1740 cdgrab 0.4
1741
1742   * Added ALBUMFILE, fixed manpage reference to it
1743   * Deletes editor backups from 'cdgrab -e' automagically
1744     (I wish mutt did this :)
1745   * Bombs out if there's no CD in the drive
1746   * Bombs out if any necessary external programs don't exist
1747   * Encourages people to use brackets for OUTPUTFORMAT variables to
1748     handle formats like Artist/TrackName_Number.mp3
1749
1750  -- Robert Woodcock <rcw@debian.org>  Tue, 16 Mar 1999
1751
1752 cdgrab 0.3
1753
1754   * Fixed one thinko in user preferences loading and another in the tagger
1755   * New option syntax - if you used to specify a cdrom device through the
1756     command line, use 'cdgrab -d device' now to get the same result.
1757   * Allows you to edit CDDB response data before using it (-e)
1758   * Added support for getting a user-specified selection of tracks
1759   * Added support for user-specified output file formats
1760
1761  -- Robert Woodcock <rcw@debian.org>  Wed, 10 Mar 1999
1762
1763 cdgrab 0.2
1764
1765   * Initial release
1766
1767  -- Robert Woodcock <rcw@debian.org>  Sun, 21 Feb 1999