-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathChanges.tex
1576 lines (1494 loc) · 51.8 KB
/
Changes.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%%*** Changes.tex *************************************************************
%%
%% This file is part of BibTool.
%% It is distributed under the Creative Commons Attribution-Share
%% Alike 3.0 License.
%%
%% (c) 2010-2022 Gerd Neugebauer
%%
%% Net: gene@gerd-neugebauer.de
%%
%%-----------------------------------------------------------------------------
%% Usage: latex Changes
%% latex Changes
%%*****************************************************************************
\documentclass[11pt,a4paper]{scrartcl}
\usepackage{multicol}
\usepackage{ragged2e}
\newenvironment{Developers}{}{}
\newcommand\Developer[3]{}
\newcommand\Arg[1]{\texttt{#1}}
\newcommand\rsc[1]{\texttt{#1}}
\newcommand\File[1]{\textsf{#1}}
\newcommand\BibTool{\textsc{BibTool}}
\newcommand\BibTcl{\textsc{BibTcl}}
\newcommand\BibTeX{\textsc{Bib}\TeX}
\newenvironment{Releases}{\begin{multicols}2\RaggedRight}{\end{multicols}}
\newenvironment{Release}[2]{%
\def\tmp{#2}%
\section*{Release #1 \ifx\tmp\empty\else{\normalsize[#2]}\fi}
\begin{itemize}
}{\end{itemize}}
\newenvironment{Fix}[1]{\item }{}
\newenvironment{New}[1]{\item }{}
\newenvironment{Doc}[1]{\item }{}
\newenvironment{Update}[1]{\item }{}
\newcommand\BS{\char`\\}
\begin{document}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{\BibTool{} Change Log}
\author{Gerd Neugebauer}
\date{}
\maketitle
\begin{Developers}
\Developer{gene}{Gerd Neugebauer}{gene@gerd-neugebauer.de}
\end{Developers}
\begin{Releases}
% =====================================================================
\begin{Release}{2.69}{?? ??, 20??}
\begin{New}{gene}
The resource \rsc{print.align} takes the special value
\texttt{auto}. In such a case the alignment column is computed
automatically based on the widest field name in the respective
record.
\end{New}
\begin{Fix}{gene}
Problem in recursive rewriting month names (may) fixed.
\end{Fix}
\begin{Fix}{gene}
Problem in typesetting command lines in the documentation fixed.
\end{Fix}
\begin{Fix}{gene}
Support for \verb|make check| fixed.
\end{Fix}
\begin{Fix}{gene}
Several typos in the documentation fixed.
\end{Fix}
\begin{Fix}{gene}
Potential overflow in \File{names.c} fixed.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.68}{April 13, 2020}
\begin{Fix}{gene}
Initialization bug in \File{key.c} fixed which came up when using a title
format without setting a fmt parameter.
\end{Fix}
\begin{Fix}{gene}
Nasty bug in the memory management fixed which could have appeared
during extracting by aux file.
\end{Fix}
\begin{Fix}{gene}
Casting error and incomplete path in \File{rewrite.c} fixed.
\end{Fix}
\begin{Update}{gene}
Handling of extracting by aux file improved.
\end{Update}
\begin{New}{gene}
Record extended by attribute \texttt{lineno}.
This attribute carries the line number of the initiating \@.
\end{New}
\begin{Update}{gene}
The format of the error messages has been slightly streamlined.
Double spaces are avoided; two colons in one message are avoided.
\end{Update}
\begin{Update}{gene}
The format of the messages of \verb|check_rule| include file and line
number.
\end{Update}
\begin{New}{gene}
Warning for double fields added.
\end{New}
\begin{New}{gene}
The empty output file is used to signal that the output should be
suppressed.
\end{New}
\begin{New}{gene}
The resources \rsc{check.warning.rule} and \rsc{check.error.rule}
have been introduced to allow semantic checks to be classified as
warning or error.
\end{New}
\begin{New}{gene}
The behaviour of the resource \rsc{check.double} has been
generalized. The requirement of double entries to be adjacent has
been dropped. This has the impact that the processing is slightly
slower.
\end{New}
\begin{New}{gene}
New resource file \rsc{unique.field} introduced. With this
resource it is possible to specify additional unique constraints
for fields. If different records have the same value for one of
those fields then a warning is issued.
\end{New}
\begin{Update}{gene}
Static library renamed from \File{libbib.a} to \File{libbibtool.a}.
\end{Update}
\begin{Update}{gene}
Environment variables added to reference card.
\end{Update}
\begin{New}{gene}
New source files \File{check.c} and \File{check.h} intruduced.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.67}{January 14, 2017}
\begin{Fix}{gene}
Treatment of empty values for key separators fixed.
\end{Fix}
\begin{New}{gene}
Resource \rsc{parse.exit.on.error} added to force a stop when a parsing
error is encountered. The default is false, i.e. an error recovery is
attempted.
\end{New}
\begin{Update}{gene}
Error messages for parsing resource arguments improved. The usual pointer
is used there as well.
\end{Update}
\begin{Update}{gene}
Documentation extended to cover the exit codes of \BibTool.
\end{Update}
\begin{Update}{gene}
Some updates in the documentation files for the new \TeX\ live:
removing old font commands.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.66}{October 30, 2016}
\begin{Fix}{gene}
\File{lib/biblatex.rsc} fixed.
\end{Fix}
\begin{New}{gene}
Resource \rsc{keep.field} added to get rid of unknown fields.
\end{New}
\begin{Update}{gene}
Internal memory management rewritten to get rid of unused memory
some time in the future. For now just the C code is changed
incompatibly if the macro \verb|COMPLEX_SYMBOL| is defined upon
compilation.
\end{Update}
\begin{Update}{gene}
Refactoring applied to make use of the C99 feature
\File{stdbool.h}.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.65}{June 14, 2016}
\begin{Fix}{gene}
Hash function and value storing for field name mapping during xref
expansion fixed.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.64}{June 6, 2016}
\begin{New}{gene}
New resource \rsc{expand.xdata} introduced to control the
expansion of xdata references.
\end{New}
\begin{New}{gene}
New resource \rsc{crossref.map} introduced to add a field name
mapping for cross-refs.
\end{New}
\begin{New}{gene}
New resource \rsc{clear.crossref.map} introduced to clear the
field name mapping for cross-refs.
\end{New}
\begin{Update}{gene}
\File{io.c} introduced to contain input and output file parameters.
\end{Update}
\begin{Update}{gene}
Documentation switched to Lua\LaTeX.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.63}{January 16, 2016}
\begin{Fix}{gene}
Omission of the previous release fixed.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.62}{January 16, 2016}
\begin{Fix}{gene}
Combined rewrite and delete bug fixed.
\end{Fix}
\begin{Update}{gene}
Minor improvements for the distribution.
\end{Update}
\begin{Update}{gene}
\File{README} renamed to \File{README.md} to comply with the
conventions of the GitHub repository.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.61}{July 12, 2015}
\begin{New}{gene}
New resource \rsc{rename.field} introduced to conditionally rename a
field.
\end{New}
\begin{Update}{gene}
Typedef \verb|String| for \verb|Uchar*| and used across.
\end{Update}
\begin{Fix}{gene}
Duplicate file \File{doc/bibtool.tex} in the distribution tar ball
eliminated.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.60}{June 9, 2015}
\begin{Fix}{gene}
The field name and other symbols may start with any allowed
character. Non-alpha characters at the beginning are treated as
warning only.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.59}{March 14, 2015}
\begin{Fix}{gene}
Fix in \File{print.c} to omit an empty line after overflowing lines.
\end{Fix}
\begin{Fix}{gene}
Fix in \File{print.c} to avoid an overflow situation.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.58}{February 9, 2015}
\begin{Update}{gene}
Library \File{tex\_def.rsc} extended with the primitives \verb|\i| and
\verb|\j|.
\end{Update}
\begin{Update}{gene}
The source tar is signed. The key of the author can be obtained
from \texttt{pgp.mit.edu}.
\end{Update}
\begin{Update}{gene}
\texttt{Test} renamed to \texttt{test}.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.57}{April 18, 2014}
\begin{Fix}{gene}
Segfault in deTeX fixed.
\end{Fix}
\begin{Fix}{gene}
Compiler warnings silenced.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.56}{April 14, 2014}
\begin{Fix}{gene}
Disambiguating numbers adapted to fit to documentation.
\end{Fix}
\begin{Fix}{gene}
Configuration of regex fixed to work on Linux.
\end{Fix}
\begin{Fix}{gene}
Documentation typos fixed.
\end{Fix}
\begin{Fix}{gene}
Signed characters fro translation tables changed to unsigned.
\end{Fix}
\begin{Fix}{gene}
Autoconf configuration improved.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.55}{April 15, 2012}
\begin{New}{gene}
Library \File{biblatex.rsc} added. It contains capitalizations of
fields used in bib\LaTeX.
\end{New}
\begin{Fix}{gene}
Fix for a misbehavior when selecting entries according to an aux file
with deeply nested @strings.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.54}{February 21, 2012}
\begin{New}{gene}
Command line parameter \Arg{-V} documented.
\end{New}
\begin{New}{gene}
Resource \rsc{key.make.alias} added to create new \texttt{@ALIAS}
records for any newly generated key.
\end{New}
\begin{New}{gene}
Resource \rsc{apply.alias} added to expand the \texttt{@ALIAS}
records.
\end{New}
\begin{New}{gene}
Resource \rsc{apply.include} added to expand the \texttt{@INCLUDE}
records.
\end{New}
\begin{New}{gene}
Resource \rsc{apply.modify} added to expand the \texttt{@MODIFY}
records.
\end{New}
\begin{Update}{gene}
Error message for \Arg{-o} without parameter added.
\end{Update}
\begin{Fix}{gene}
\texttt{@ALIAS} and \texttt{@INCLUDE} records where not printed.
This has been fixed.
\end{Fix}
\begin{New}{gene}
A test suite for \BibTool{} has been integrated. It requires Perl
to be present on the system on which the tests should be run.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.53}{September 25, 2011}
\begin{Update}{gene}
In \texttt{tex.define} spaces before the = are ignored instead of
leading to unwanted definitions.
\end{Update}
\begin{Fix}{gene}
An initialization error showed up on MacOS. This has been fixed.
\end{Fix}
\begin{Fix}{gene}
The prepared makefiles for various operating systems missed an
entry for \texttt{crossref.[cho]}.
\end{Fix}
\begin{Fix}{gene}
Typo in help text and copyright year fixed.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.52}{June 6, 2011}
\begin{Fix}{gene}
A few incompatibilities with signed and unsigned characters which
showed up on MacOS only have been fixed.
\end{Fix}
% \end{Release}
% =====================================================================
% \begin{Release}{2.52}{April 26, 2011}
\begin{Fix}{gene}
A few compiler warnings have been fixed.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.51}{May 12, 2010}
\begin{Fix}{gene}
Bug fix in \File{names.c}: The classification of name parts
erroneously has used a wrong translation under certain circumstances.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.50}{May 12, 2010}
\begin{Fix}{gene}
Bug fix in \File{names.c}: The classification of name parts
erroneously has used a wrong translation under certain
circumstances.
\end{Fix}
%\end{Release}
% =====================================================================
%\begin{Release}{2.50}{February 6, 2010}
\begin{Fix}{gene}
Bug fix in \File{key.c}: The classification of name parts
erroneously has considered, to be a first name under certain
circumstances. This has been improved.
\end{Fix}
\begin{Fix}{gene}
Improvement in \File{names.c} and \File{key.c} concerning printing in
debug mode.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.49}{February 8, 2007}
\begin{New}{gene}
New resource \rsc{expand.crossref} introduced. This resource
enables the expansion of fields inherited via the cross-ref
mechanism.
\end{New}
\begin{Fix}{gene}
Bug fix in \File{names.c}: The classification of name parts
erroneously has considered the initials V., I., and X. to be Roman
numerals belonging to the jr part under special circumstances.
This has been improved.
\end{Fix}
% =====================================================================
%\begin{Release}{2.49}{January 5, 2010}
\begin{New}{gene}
Name formatting now uses a fractional part to restrict the number
of name parts considered.
\end{New}
% =====================================================================
%\begin{Release}{2.49}{February 8, 2007}
\begin{New}{gene}
New resource \rsc{expand.crossref} introduced. This resource
enables the expansion of fields inherited via the cross-ref
mechanism.
\end{New}
\begin{Fix}{gene}
Bug fix in \File{print.c}: Some national characters have been lost.
It was necessary to use an unsigned character as elsewhere.
\end{Fix}
\end{Release}
% =====================================================================
\begin{Release}{2.48}{August 6, 2004}
\begin{New}{gene}
Resource \rsc{print.terminal.comma} introduced. This resource can
be used to request commas after the last record even if it
contradicts the rules of \BibTeX.
\end{New}
\begin{New}{gene}
\File{makefile.in} for configure extended to support the variable
\texttt{INSTALLPREFIX} to be prepended to installation
directories.
\end{New}
\begin{Fix}{gene}
Bug fix in \File{main.c}: Some compilers didn't like the method
true().
\end{Fix}
\begin{Fix}{gene}
Bug fix for kpathsea under Suse 9.1.
\end{Fix}
\begin{Fix}{gene}
Bug fixes in expansion.
\end{Fix}
%\end{Release}
% =====================================================================
%\begin{Release}{2.48}{February 8, 2004}
\begin{Update}{gene}
\BibTcl{} has been taken out of the default making since it has
caused troubles on several machines.
\end{Update}
\begin{Update}{gene}
The printing of Strings honors now the dependencies that
\BibTeX{} relies on. This has been accomplished by a change in
the printing routine for databases. No new resource is involved.
\end{Update}
\begin{Update}{gene}
Minor modification to the C API.
\end{Update}
\begin{New}{gene}
Feature: When searching for an aux file and none is found then
\texttt{.aux} is appended and a reopen is tried with the new name.
\end{New}
\begin{Update}{gene}
Feature: When \rsc{expand.macros} is set the macros will be
suppressed automatically. No need to set \rsc{print.entry.types}
any more.
\end{Update}
\begin{New}{gene}
The boolean resource \rsc{select.crossrefs} has been introduced.
This resource can be used to force cross-referenced entries for
selected entries to be included in the output.
\end{New}
\begin{Update}{gene}
Feature: deleted entries are not reported as "`written"' by the
statistics any more.
\end{Update}
\begin{Fix}{gene}
Bug fix: Bug in extracting by aux file. Crossrefed entries where
sometimes ignored.
\end{Fix}
\begin{Fix}{gene}
Bug fix: Bug in parsing of backslashes in resources has been fixed.
Unfortunately this bug appeared in one of the examples in the
manual.
\end{Fix}
\begin{Fix}{gene}
Bug fix: Bug in expansion introduced in 2.47 has been fixed. An
error occurred when expanding macros.
\end{Fix}
\begin{New}{gene}
The resource loading with \rsc{resource} now issues a warning when
the file could not be found.
\end{New}
\begin{Doc}{gene}
The meaning of post for the format specifiers \%d and \%D has been
documented.
\end{Doc}
\begin{Fix}{gene}
Bug fix: \BibTool{} has misinterpreted pre for the format specifier
\%t and \%T due to an over-optimization. This has been fixed.
\end{Fix}
\begin{Fix}{gene}
Bug fix: \BibTool{} has ignored \rsc{preserve.key.case} for
cross-referenced keys. This has been fixed.
\end{Fix}
\begin{Fix}{gene}
Bug fix: Some compilers don't like it if static strings are
modified. Thus I have made them dynamic.
\end{Fix}
\begin{New}{gene}
Experimental feature \rsc{regexp.syntax} added.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.47}{January 16, 2003}
\begin{Fix}{gene}
Bug fix: \BibTool{} looped when parsing unbalanced blocks due to a
too short type in \File{parse.c}. This has been fixed and some
error messages have been improved.
\end{Fix}
\begin{Doc}{gene}
Some additions to the documentation due to Patrice Dumas.
\end{Doc}
\begin{New}{gene}
Resource \rsc{fmt.word.separator} introduced. This resource can be
used to mark additional characters to be considered as word
separators.
\end{New}
\begin{Fix}{gene}
Bug fix: \BibTool{} looped when a malformed string of some kind was
given to expansion. This has been fixed in \verb|expand()|.
\end{Fix}
\begin{Fix}{gene}
Bug fix: \BibTool{} crashed when called with empty format string
due to an uninitialized variable. This has been fixed in
\verb|parse_fmt()|.
\end{Fix}
\begin{Doc}{gene}
Bug fix: Documentation bug fixed. The default for \rsc{sort.key}
should be \verb|%s($key)|. This has been fixed in
\File{Lib/default.rsc} and the manual.
\end{Doc}
\end{Release}
% =====================================================================
\begin{Release}{2.46}{February 12 2002}
\begin{New}{gene}
Resource \rsc{sort.cased} introduced to allow the sorting order to
take advantage of upper and lower case characters. The default is
false which is the previous behavior.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.45}{October 22 2001}
\begin{New}{gene}
Resource \rsc{suppress.initial.newline} introduced to suppress the
empty line at the beginning of the output file.
\end{New}
\begin{Fix}{gene}
Bug fix: Some C compilers don't like the initialization of static
variables with \texttt{stderr}. The code has been moved to a
initialization routine.
\end{Fix}
\begin{Fix}{gene}
Bug fix: \texttt{-R} disables the reading of the resource at the
end of processing of command line arguments.
\end{Fix}
\begin{Fix}{gene}
Bug fix: Parsing of select arguments with backslashes were not treated
correctly.
\end{Fix}
\begin{Doc}{gene}
Minor documentation bugs fixed.
\end{Doc}
\end{Release}
% =====================================================================
\begin{Release}{2.44}{April 7 1999}
\begin{Fix}{gene}
Key generation fixed to expand \BibTeX{} strings. The current
behavior is likely to change again in a future release.
\end{Fix}
\begin{Update}{gene}
Updated to work with kpathsea 3.1 (partially).
\end{Update}
\begin{New}{gene}
Searching for the kpathsea library is now the default in the
configure script. Thus it is possible to simply place \BibTool{}
in a web2c tree. This only requires that the directory is named
bibtool and bibtool is added to the file lists in Makefile,
configure, and configure.in of the web2c main directory.
\end{New}
\begin{Fix}{gene}
\rsc{check.double} message improved.
\end{Fix}
\begin{Fix}{gene}
Initialization bug for kpathsea fixed.
\end{Fix}
\begin{Fix}{gene}
Bug fix for cross referencing: normalization to lowercase was
missing twice.
\end{Fix}
\begin{Fix}{gene}
Bug fix in the \TeX{} reading routines: spaces after active
characters are not ignored. All characters are treated as
unsigned. This seems to be preferable for extended ASCII
characters.
\end{Fix}
\begin{Update}{gene}
Key generation routines adapted to work with multiple databases.
The symbol table is no longer abused to store information for the
key generation. This may slow down the key generation a little
bit. If it turns out to be a problem I will use a better
algorithm.
\end{Update}
\begin{Update}{gene}
Minor modifications in makefiles.
\end{Update}
\begin{New}{gene}
The configuration of \BibTcl{} is now done automatically.
\end{New}
\begin{New}{gene}
New data type introduced: \verb|Uchar| will hold Unicode characters in a
future release. I just have to find regexp routines to work with UTF-8.
\end{New}
\begin{Update}{gene}
Extraction extended to allow negation of the regular expression and string
matching result. New resources \rsc{select.non} and
\rsc{select.by.non.string} to specify such a request. C function
\verb|add_extract()| extended to cover negated values and the former
function \verb|add_s_extract()|.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.43}{}
\begin{New}{gene}
Additional library \rsc{braces.rsc} to translate quotes as field
delimiters into braces.
\end{New}
\begin{Update}{gene}
\verb|bibtool -h| reports now also the library path. This can be
used by external scripts to find the installation directory of
\BibTool.
\end{Update}
\begin{Fix}{gene}
Bug fix: comments are no longer crippled.
\end{Fix}
\begin{Fix}{gene}
Minor bug fix in rewriting code: empty pattern works again.
\end{Fix}
\begin{Fix}{gene}
The regression tests have revealed a bug fix in the key generation
code. I am not aware of the change that has let to this effect but
the new behavior is correct. Before, the macro expansion was
suppressed under certain circumstances.
\end{Fix}
\begin{New}{gene}
\BibTcl: \verb|bibtool count db| added.
\end{New}
\begin{Fix}{gene}
\BibTcl: \verb|bibtool missing| ignores the case of the field
name.
\end{Fix}
\begin{Update}{gene}
\BibTcl: consistently renaming \verb|record| to \verb|entry|.
\end{Update}
\begin{Fix}{gene}
Minor modifications of makefile to correctly generate
\File{libbib.a} and install the header files.
\end{Fix}
\begin{Update}{gene}
Reorganization of the code; header files are now in their own directory. I
don't have the appropriate information for some DOS compilers yet.
Thus minor modifications in the makefile might be required.
\end{Update}
\begin{New}{gene}
C function \verb|entry_statistics()| removed. The functionality
can be modeled with the new C function \verb|db_count()|. This
takes into account that several databases can be managed
internally.
\end{New}
\begin{Update}{gene}
C function \verb|save_word()| renamed to \verb|add_word()|.
\verb|list_words()| removed since it has been used for debugging
only.
\end{Update}
\begin{Update}{gene}
EntryTypes implementation changed. The API doesn't change.
Data type \verb|StringTab| is now local to \File{symbols.c}.
Data type \verb|Rule| is now local to \File{rewrite.c}.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.42}{}
\begin{New}{gene}
New selection operation introduced. The selection with regular expressions
is complemented by a selection according to simple sub-strings. This
selection is initiated with the new resource \rsc{select.string}
which takes the same arguments as the resource \rsc{select} but
does comparison for a sub-string instead of regular expression matching.
The value of \rsc{select.case.sensitive} is taken into account but
at run-time and not at specification time. Certain characters can be
ignored for the comparison. Those are contained in the new string resource
\rsc{select.ignored}.
\end{New}
\begin{New}{gene}
New resource \rsc{print.entry.types} introduced. This resource
controls the entry types and the order in which they are printed.
In fact the macro printing facility is obsolete with this new
resource.
\end{New}
\begin{New}{gene}
New resource \rsc{clear.ignored.words} introduced. In fact this is
a function which deletes all ignored words. Thus it is possible to
determine all ignored words at run-time--even the compiled in
defaults.
\end{New}
\begin{Fix}{gene}
Bug fixed: selection honors the resource \rsc{print.all.strings}
now.
\end{Fix}
\begin{Update}{gene}
Makefiles slightly improved. Less manual adaption. Installation of all
library files -- even on Solaris.
\end{Update}
\begin{Fix}{gene}
Name formatting omission fixed: Translation and length are taken
into account correctly. The new name format sign * has been
introduced to denote the inheritance of the translation from the
calling format.
\end{Fix}
\begin{Update}{gene}
Restriction relaxed. Now it is possible to declare up to MAXINT
entry types and not only 4096. The \verb|Record| data structure
and the associated macros have been modified slightly to
accomplish this.
\end{Update}
\begin{Fix}{gene}
Bug in the aux file selection mechanism fixed. This bug caused some cross
referenced entries to be missing under special circumstances.
\end{Fix}
\begin{Fix}{gene}
Bug in \File{key.c} fixed which caused a crash because an
initialization was missing under certain circumstances.
\end{Fix}
\begin{New}{gene}
Make target \File{libbib.a} added. This is known to work on UNIX. I would
like to get feedback for other systems.
\end{New}
\begin{Fix}{gene}
Minor bug in \File{names.c} fixed.
\end{Fix}
\begin{Fix}{gene}
Minor bug in \File{print.c} fixed. \rsc{print.wide.equal} does not
have exceptions any more.
\end{Fix}
\begin{Fix}{gene}
Minor bug in \File{print.c} fixed. Deleted fields are treated better.
\end{Fix}
\begin{Fix}{gene}
Bug in \File{database.c} fixed which caused macro expansion to fail under
certain circumstances.
\end{Fix}
\begin{Update}{gene}
\BibTcl: \verb|bibtool format| allows to use the full power of
format specifications.
\end{Update}
\begin{New}{gene}
\BibTcl: \verb|bibtool sprint| added which returns the formatted
string representation of an entry.
\end{New}
\begin{Fix}{gene}
\BibTcl: Bug in \verb|$rec set \$key ...| fixed.
\end{Fix}
\begin{Update}{gene}
Minor changes in the C interface (Just wait for the compiler or
linker to complain about different arguments:-).
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.41}{}
\begin{New}{gene}
New Boolean resource \rsc{print.equal.right} which controls whether
the = in normal entries is aligned right or left.
\end{New}
\begin{New}{gene}
New Boolean \rsc{resource print.wide.equal} which controls whether
the equal sign is surrounded by spaces even if the alignment forces a
narrower layout.
\end{New}
\begin{New}{gene}
New Boolean resource \rsc{print.comma.at.end} which control-ls
whether the comma between fields is printed at the end or at the beginning
of a field/value pair.
\end{New}
\begin{New}{gene}
New Boolean resource \rsc{print.deleted.entries} which controls the
treatment of deleted entries. If this resource is true then delete entries
are put as comments into the output. This is the old behavior and thus it
is the default.
\end{New}
\begin{New}{gene}
Pseudo field \rsc{sortkey} added.
\end{New}
\begin{New}{gene}
Pseudo field \rsc{source} added which contains the file name the
record has been read from or the empty string if this can not be
determined.
\end{New}
\begin{Fix}{gene}
Makefile adapted to meet the description.
\end{Fix}
\begin{New}{gene}
configure creates \File{./config.h} as well.
\end{New}
\begin{New}{gene}
Strings can be either local to a database or global. The output of macros
does include local macros only. This is a point of incompatibility with
previous versions.
\end{New}
\begin{New}{gene}
Massive extensions to \BibTcl.
\end{New}
\begin{Doc}{gene}
Cleaning of the sources and massive addition of documentation. Now the
documentation of the C functions is present. Thus it becomes possible to
use the \BibTool{} routines to write C programs. \BibTcl{} is a first
application of this technique. Nevertheless a few changes seem possible
before things are cut in stone.
\end{Doc}
\begin{Doc}{gene}
According to a suggestion by Oren Patashnik the term entry is used instead
of record -- at least in the documentation.
\end{Doc}
\begin{Fix}{gene}
Minor bug in \File{print.c} fixed which caused looping when small values
for line length and alignment column was given.
\end{Fix}
\begin{Fix}{gene}
Minor bug-fix in \File{key.c}. The resource \rsc{crossref.limit} was
off by 1.
\end{Fix}
\begin{New}{gene}
Some additions have been made to support new features in the forthcoming
\BibTeX{} 1.0. They do not really work right now but just restrict the
accepted input files.
\end{New}
\begin{New}{gene}
Flag \texttt{--with-kpathsea} added to configure.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.40}{}
\begin{New}{gene}
Sorting uses the new key instead of the old one as before. This has not
been specified, but the new behavior might be more intuitive.
\end{New}
\begin{Fix}{gene}
\rsc{key.format=empty} fixed. \rsc{key.format} \rsc{short.need}
and \rsc{long.need} are aliases for \rsc{new.short} and
\rsc{new.long} resp.
\end{Fix}
\begin{Update}{gene}
Some error messages slightly improved.
\end{Update}
\begin{Fix}{gene}
Minor print bug fixed: additional commas appeared when the last field was
deleted.
\end{Fix}
\begin{Doc}{gene}
Typo in documentation: I had typed \rsc{preserve.key} instead of
\rsc{preserve.keys}. Shame on me:-) Some additional examples in the
documentation.
\end{Doc}
\begin{Update}{gene}
Field deletion completely covered by the rewriting mechanism.
\rsc{delete.field} is kept for backward compatibility as an alias.
\end{Update}
\end{Release}
% =====================================================================
\begin{Release}{2.39}{}
\begin{Update}{gene}
The default for the pattern in the select resource is now '.'.
Thus it is easier to select entries with a given type.
\end{Update}
\begin{New}{gene}
New resource \rsc{preserve.keys} introduced. If this resource is on
then key generation touches only entries with empty keys. The keys of
other entries are left unchanged. Initially this resource is off.
\end{New}
\begin{Update}{gene}
The disambiguation now respects the order of the entries. Previously it
used the reverse order which was contra-intuitive.
\end{Update}
\begin{Update}{gene}
Formatting names: Names connected by ~ or tight initials (A.U. Thor) are
now treated better.
\end{Update}
\begin{Fix}{gene}
Nasty little bug in the key specification parser fixed. This has
(sometimes) let to a wrong evaluation of disjunctions.
\end{Fix}
\begin{Fix}{gene}
Minor bug in verbose messages fixed.
\end{Fix}
\begin{New}{gene}
AutoConf scripts added.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.38}{}
\begin{New}{gene}
Format specifier \%d enhanced. It can fail now if no number is found in
the field. The minus sign means padding to a fixed length. The plus sign
means not to fail but use 0. The post specifier can be used to select
another but the first number. E.g. \%.2d means to use the second number.
\end{New}
\begin{New}{gene}
Format specifier \%D introduced. It acts like \%d but does not truncate
the number. Thus larger numbers are used completely.
\end{New}
\begin{Fix}{gene}
Bug fixed. If the key format failed then the key was left empty. Now the
default key is used as written in the documentation. Somehow the bug fix
for the select statement has not made it into the last release. Now it
should be in.
\end{Fix}
\begin{Doc}{gene}
Several mistakes in the documentation corrected.
\end{Doc}
\end{Release}
% =====================================================================
\begin{Release}{2.37}{}
\begin{New}{gene}
kpathsea support for searching \BibTeX{} files added.
\end{New}
\begin{Fix}{gene}
Bugs fixed: Searching/key generation combination and aux file evaluation.
\end{Fix}
\begin{New}{gene}
The distribution is now available in two forms: as a gzipped tar file and
as a zip archive.
\end{New}
\end{Release}
% =====================================================================
\begin{Release}{2.36}{}
\begin{New}{gene}
Added sample file for interfacing \BibTool{} with Tcl:
\File{Tcl/bibtool.tcl}.
\end{New}
\begin{New}{gene}
Added sample file for interfacing \BibTool{} with Perl:
\File{Perl/bibtool.pl}.
\end{New}
\begin{Fix}{gene}
Minor bug fix in string parsing routines. E.g. select from command line
was not evaluated properly.