File: Changes.xml

package info (click to toggle)
bibtool 2.48alpha.2-3.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,208 kB
  • ctags: 1,974
  • sloc: ansic: 18,936; xml: 1,036; makefile: 672; sh: 293; perl: 261; tcl: 51; awk: 15; sed: 8
file content (1141 lines) | stat: -rw-r--r-- 40,568 bytes parent folder | download | duplicates (3)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- ====================================================================== -->
<!--  $Id: Changes.xml,v 0.00 2002/02/12 18:54:58 gene Exp $                -->
<!-- ====================================================================== -->

<changes>
 <devs>
  <person id="gene" email="gene@gerd-neugebauer.de">Gerd Neugebauer</person>
 </devs>

 <!-- ===================================================================== -->
 <release version="2.48" date="">
  <action dev="gene" type="change">
	BibTcl has been taken out of the default making since it has
	caused troubles on several maschines.
  </action>
  <action dev="gene" type="change">
	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.
  </action>
  <action dev="gene" type="change">
	Minor modification to the C API.
  </action>
  <action dev="gene" type="add">
	Feature: When searching for an aux file and none is found then
	<tt>.aux</tt> is appended and a reopen is tried with the new
	name.
  </action>
  <action dev="gene" type="change">
	Feature: When expand.macros is set the macros will be
	suppressed automatically. No need to set
	<tt>print.entry.types</tt> any more.
  </action>
  <action dev="gene" type="add">
        The boolean resource <tt>select.crossrefs<tt> has been
        introduced. This resource can be used to force crossreferenced
        entries for selected entrie to be included in the output.
  </action>
  <action dev="gene" type="change">
	Feature: deleted entries are not reported as "written" by the
	statistics any more.
  </action>
  <action dev="gene" type="fix">
	Bugfix: Bug in extracting by aux file. Crossrefed entires
	where sometimes ignored.
  </action>
  <action dev="gene" type="fix">
	Bugfix: Bug in parsing of backslashes in resources has been
	fixed. Unfortunately this bug appeared in one of the
	examples in the manual.
  </action>
  <action dev="gene" type="fix">
	Bugfix: Bug in expansion introduced in 2.47 has been fixed. An
	error occured when expanding macros.
  </action>
  <action dev="gene" type="add">
	The resource loading with <code>resource</code> now issues a
	warning when the file could not be found.
  </action>
  <action dev="gene" type="doc">
	The meaning of post for the format specifiers %d and %D has
	been documented.
  </action>
  <action dev="gene" type="fix">
	Bugfix: BibTool has misinterpreted pre for the format
	specifier %t and %T due to an over-optimization. This has been
	fixed.
  </action>
  <action dev="gene" type="fix">
	Bugfix: BibTool has ignored <code>preserve.key.case</code> for
	crossreferenced keys. This has been fixed.
  </action>
  <action dev="gene" type="fix">
	Bugfix: Some compilers don't like it if static strings are
	modified. Thus I have made them dynamic.
  </action>
  <action dev="gene" type="add">
	Experimental feature <code>regexp.syntax</code> added.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.47" date="January 16, 2003">
  <action dev="gene" type="fix">
	Bugfix: BibTool looped when parsing unbalanced blocks due to a
	too short type in <code>parse.c</code>. This has been fixed
	and some error messages have been improved.
  </action>
  <action dev="gene" type="doc">
	Some additions to the documentation due to Patrice Dumas.
  </action>
  <action dev="gene" type="add">
	Resource <code>fmt.word.separator</code> introduced. This
	resource can be used to mark additional characters to be
	considered as word separators.
  </action>
  <action dev="gene" type="fix">
	Bugfix: BibTool looped when a malformed string of some kind
	was given to expansion. This has been fixed in
	<code>expand()</code>.
  </action>
  <action dev="gene" type="fix">
	Bugfix: BibTool crashed when called with empty format string
	due to an uninitialized variable. This has been fixed in
	<code>parse_fmt()</code>.
  </action>
  <action dev="gene" type="doc">
	Bugfix: Documentation bug fixed. The default for
	<code>sort.key</code> should be <code>%s($key)</code>. This
	has been fixed in<code>Lib/default.rsc</code> and the manual.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.46" date="February 12 2002">
  <action dev="gene" type="add">
	Resource <code>sort.cased</code> introduced to allow the
	sorting order to take advantage of upper and lower case
	characters. The default is false which is the previous
	behaviour.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.45" date="October 22 2001">
  <action dev="gene" type="add">
	Resource <code>suppress.initial.newline</code> introduced to
	suppress the empty line at the beginning of the output file.
  </action>
  <action dev="gene" type="fix">
	Bugfix: Some C compilers don&apos;t like the initialization of
	static variables with <code>stderr</code>. The code has been
	moved to a initialization routine.
  </action>
  <action dev="gene" type="fix">
	Bugfix: <code>-R</code> disables the reading of the resource
	at the end of processing of command line arguments.
  </action>
  <action dev="gene" type="fix">
	Bugfix: Parsing of select arguments with backslashes were not
	treated correctly.
  </action>
  <action dev="gene" type="doc">
	Minor documentation bugs fixed.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.44" date="April 7 1999">
  <action dev="gene" type="fix">
	Key generation fixed to expand BibTeX strings. The current
	behaviour is likely to change again in a future release.
  </action>
  <action dev="gene" type="update">
	Updated to work with kpathsea 3.1 (partially).
  </action>
  <action dev="gene" type="add">
	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 filelists in
	Makefile, configure, and configure.in of the web2c main
	directory.
  </action>
  <action dev="gene" type="fix">
	<code>check.double</code> message improved.
  </action>
  <action dev="gene" type="fix">
	Initialization bug for kpathsea fixed.
  </action>
  <action dev="gene" type="fix">
	Bugfix for cross referencing: normalization to lowercase was
	missing twice.
  </action>
  <action dev="gene" type="fix">
	Bugfix in the TeX reading routines: spaces after active
	characters are not ignored. All characters are treated as
	unsigned. This seems to be preferrable for extended ASCII
	characters.
  </action>
  <action dev="gene" type="update">
	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.
  </action>
  <action dev="gene" type="update">
	Minor modifications in makefiles.
  </action>
  <action dev="gene" type="add">
	The configuration of BibTcl is now done automatically.
  </action>
  <action dev="gene" type="add">
	New datatype introduced: <code>Uchar</code> will hold UniCode
	characters in a future release. I just have to find regexp
	routines to work with UTF-8.
  </action>
  <action dev="gene" type="update">
	Extraction extended to allow negation of the regular
	expression/string matching result. New resources
	<code>select.non</code> and <code>select.by.non.string</code>
	to specify such a request. C function
	<code>add_extract()</code> extended to cover negated values
	and the former function	<code>add_s_extract()</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.43" date="">
  <action dev="gene" type="add">
	Additional library <code>braces.rsc</code> to translate quotes
	as field delimiters into braces.
  </action>
  <action dev="gene" type="update">
	<code>bibtool -h</code> reports now also the library path.
	This can be used by external scripts to find the installation
	directory of BibTool.
  </action>
  <action dev="gene" type="fix">
	Bugfix: comments are no longer crippled.
  </action>
  <action dev="gene" type="fix">
	Minor bugfix in rewriting code: empty pattern works again.
  </action>
  <action dev="gene" type="fix">
	The regression tests have revealed a bugfix in the key
	generation code. I am not aware of the change that has let to
	this effect but the new behaviour is correct. Before, the
	macro expansion was suppressed under certain circumstances.
  </action>
  <action dev="gene" type="add">
	BibTcl: <code>bibtool count db</code> added.
  </action>
  <action dev="gene" type="fix">
	BibTcl fix: <code>bibtool missing</code> ignores the case of
	the field name.
  </action>
  <action dev="gene" type="update">
	BibTcl: consistently renaming <code>record</code> to
	<code>entry</code>.
  </action>
  <action dev="gene" type="fix">
	Minor modifications of makefile to correctly generate
	<code>libbib.a</code> and install the header files.
  </action>
  <action dev="gene" type="update">
	Reorganization of the code; header files are now in their own
	directory. I don&apos;t have the appropriate information for
	some DOS compilers yet. Thus minor modifications in the
	makefile might be required.
  </action>
  <action dev="gene" type="add">
	C function <code>entry_statistics()</code> removed. The
	functionality can be modeled with the new C function
	<code>db_count()</code>. This takes into account that several
	databases can be managed internally.
  </action>
  <action dev="gene" type="update">
	C function <code>save_word()</code> renamed to
	<code>add_word()</code>. <code>list_words()</code> removed
	since it has been used for debugging only.
  </action>
  <action dev="gene" type="update">
	EntryTypes implementation changed. The API doesn&apos;t
	change. Datatype <code>StringTab</code> is now local to
	<code>symbols.c</code>. Datatype <code>Rule</code> is now
	local to <code>rewrite.c</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.42" date="">
  <action dev="gene" type="add">
	New selection operation introduced. The selection with regular
	expressions is complemented by a selection according to simple
	substrings. This selection is initiated with the new resource
	<code>select.string</code> which takes the same arguments as
	the resource <code>select</code> but does comparison for a
	substring instead of regular expression matching. The value of
	<code>select.case.sensitive</code> is taken into account but
	at runtime and not at specification time. Certain characters
	can be ignored for the comparison. Those are contained in the
	new string resource <code>select.ignored</code>.
  </action>
  <action dev="gene" type="add">
	New resource <code>print.entry.types</code> introduced. This
	resource controlls the entry types and the order in which they
	are printed. In fact the macro printing facility is obsolete
	with this new resource.
  </action>
  <action dev="gene" type="add">
	New resource <code>clear.ignored.words</code> introduced. In
	fact this is a function which deletes all ignored words. Thus
	it is possible to determine all ignored words at runtime--even
	the compiled in defaults.
  </action>
  <action dev="gene" type="fix">
	Bug fixed: selection honours the resource
	<code>print.all.strings</code> now.
  </action>
  <action dev="gene" type="update">
	Makefiles slightly improved. Less manual adaption.
	Installation of all library files -- even on Solaris.
  </action>
  <action dev="gene" type="fix">
	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.
  </action>
  <action dev="gene" type="update">
	Restriction relaxed. Now it is possible to declare up to
	MAXINT entry types and not only 4096. The <code>Record</code>
	data structure and the associated macros have been modified
	slightly to accomplish this.
  </action>
  <action dev="gene" type="fix">
	Bug in the aux file selection mechanism fixed. This bug caused
	some cross referenced entries to be missing under special
	circumstances.
  </action>
  <action dev="gene" type="fix">
	Bug in <code>key.c</code> fixed which caused a crash because
	an initialization was missing under certain circumstances.
  </action>
  <action dev="gene" type="add">
	Make target <code>libbib.a</code> added. This is known to work
	on UNIX. I would like to get feedback for other systems.
  </action>
  <action dev="gene" type="fix">
	Minor bug in <code>names.c</code> fixed.
  </action>
  <action dev="gene" type="fix">
	Minor bug in <code>print.c</code> fixed.
	<code>print.wide.equal</code> does not have exceptions any
	more.
  </action>
  <action dev="gene" type="fix">
	Minor bug in <code>print.c</code> fixed. Deleted fields are
	treated better.
  </action>
  <action dev="gene" type="fix">
	Bug in <code>database.c</code> fixed which caused macro
	expansion to fail under certain circumstances.
  </action>
  <action dev="gene" type="update">
	BibTcl: <code>bibtool format</code> allows to use the full
	power of format specifications.
  </action>
  <action dev="gene" type="add">
	BibTcl: <code>bibtool sprint</code> added which returns the
	formatted string representation of an entry.
  </action>
  <action dev="gene" type="fix">
	BibTcl: Bug in <code>$rec set \$key ...</code> fixed.
  </action>
  <action dev="gene" type="update">
	Minor changes in the C interface (Just wait for the compiler
	or linker to complain about different arguments:-).
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.41" date="">
  <action dev="gene" type="add">
	New boolean resource <code>print.equal.right</code> which
	controls whether the = in normal entries is aligned right or
	left.
  </action>
  <action dev="gene" type="add">
	New boolean <code>resource print.wide.equal</code> which
	controlls whether the equal sign is surrounded by spaces even
	if the alignment forces a narrower layout.
  </action>
  <action dev="gene" type="add">
	New boolean resource <code>print.comma.at.end</code> which
	controlls whether the comma between fields is printed at the
	end or at the beginning of a field/value pair.
  </action>
  <action dev="gene" type="add">
	New boolean resource <code>print.deleted.entries</code> 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.
  </action>
  <action dev="gene" type="add">
	Pseudo field <code>sortkey</code> added.
  </action>
  <action dev="gene" type="add">
	Pseudo field <code>source</code> added which contains the
	filename the record has been read from or the empty string if
	this can not be determined.
  </action>
  <action dev="gene" type="fix">
	Makefile adapted to meet the description.
  </action>
  <action dev="gene" type="add">
	configure creates <code>./config.h</code> aswell.
  </action>
  <action dev="gene" type="add">
	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.
  </action>
  <action dev="gene" type="add">
	Massive extensions to BibTcl.
  </action>
  <action dev="gene" type="doc">
	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.
  </action>
  <action dev="gene" type="doc">
	According to a suggestion by Oren Patashnik the term entry is
	used instead of record -- at least in the documentation.
  </action>
  <action dev="gene" type="fix">
	Minor bug in <code>print.c</code> fixed which caused looping
	when small values for line length and alignment column was
	given.
  </action>
  <action dev="gene" type="fix">
	Minor bugfix in <code>key.c</code>. The resource
	<code>crossref.limit</code> was off by 1.
  </action>
  <action dev="gene" type="add">
	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.
  </action>
  <action dev="gene" type="add">
	Flag <code>--with-kpathsea</code> added to configure.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.40" date="">
  <action dev="gene" type="add">
	Sorting uses the new key instead of the old one as before.
	This has not been specified, but the new behaviour might be
	more intuitive.
  </action>
  <action dev="gene" type="fix">
	<code>key.format=empty</code> fixed. <code>key.format</code>
	<code>short.need</code> and <code>long.need</code> are aliases
	for <code>new.short</code> and <code>new.long</code> resp.
  </action>
  <action dev="gene" type="update">
	Some error messages slightly improved.
  </action>
  <action dev="gene" type="fix">
	Minor print bug fixed: additional commas appeared when the
	last field was deleted.
  </action>
  <action dev="gene" type="doc">
	Typo in documentation: I had typed <code>preserve.key</code>
	instead of <code>preserve.keys</code>. Shame on me:-) Some
	additional examples in the documentation.
  </action>
  <action dev="gene" type="update">
	Field deletetion completely covered by the rewriting
	mechanism. <code>delete.field</code> is kept for backward
	compatibility as an alias.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.39" date="">
  <action dev="gene" type="update">
	The default for the pattern in the select resource is now
	&quot;.&quot;. Thus it is easier to select entries with a
	given type.
  </action>
  <action dev="gene" type="add">
	New resource <code>preserve.keys</code> 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.
  </action>
  <action dev="gene" type="update">
	The disambiguation now respects the order of the entries.
	Previously it used the reverse order which was
	contra-intuitive.
  </action>
  <action dev="gene" type="update">
	Formating names: Names connected by ~ or tight initials (A.U.
	Thor) are now treated better.
  </action>
  <action dev="gene" type="fix">
	Nasty little bug in the key specification parser fixed. This
	has (sometimes) let to a wrong evaluation of disjunctions.
  </action>
  <action dev="gene" type="fix">
	Minor bug in verbose messages fixed.
  </action>
  <action dev="gene" type="add">
	AutoConf scripts added.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.38" date="">
  <action dev="gene" type="add">
	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.
  </action>
  <action dev="gene" type="add">
	Format specifier %D introduced. It acts like %d but does not
	truncate the number. Thus larger numbers are used completetly.
  </action>
  <action dev="gene" type="fix">
	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 bugfix for the select statement has
	not made it into the last release. Now it should be in.
  </action>
  <action dev="gene" type="doc">
	Several mistakes in the documentation corrected.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.37" date="">
  <action dev="gene" type="add">
	kpathsea support for searching BibTeX files added.
  </action>
  <action dev="gene" type="fix">
	Bugs fixed: Searching/key generation combination and aux file
	evaluation.
  </action>
  <action dev="gene" type="add">
	The distribution is now availlable in two forms: as a gzipped
	tar file and as a zip archive.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.36" date="">
  <action dev="gene" type="add">
	Added sample file for interfacing BibTool with Tcl:
	<code>Tcl/bibtool.tcl</code>.
  </action>
  <action dev="gene" type="add">
	Added sample file for interfacing BibTool with Perl:
	<code>Perl/bibtool.pl</code>.
  </action>
  <action dev="gene" type="fix">
	Minor bug fix in string parsing routines. E.g. select from
	command line was not evaluated properly.
  </action>
  <action dev="gene" type="fix">
	Minor bug fixed. <code>add.field</code> now works again as
	described in the documentation.
  </action>
  <action dev="gene" type="fix">
	Minor bug fixed. Command line argument <code>-r</code> issued
	a warning when everything was ok.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.35" date="">
  <action dev="gene" type="update">
	Inheritance via crossref can be used to access fields in
	another entry when creating keys. E.g. this means that
	crossreferencing inproceedings can access the booktitle of the
	proceedings. The new resource <code>crossref.limit</code>
	restricts the number of crossrefs followed. E.g. 0 means do
	not follow crossrefs (as it has been in previous releases).
	The default is 32.
  </action>
  <action dev="gene" type="add">
	New boolean resource <code>check.do.delete</code> introduced.
	If this resource is on then the double entries are not only
	preceeded by ### instead of @ but deleted completely.
  </action>
  <action dev="gene" type="add">
	New boolean resource <code>sort.macros</code> introduced. If
	this is on then the macro definitions are sorted
	alphabetically. Default: on
  </action>
  <action dev="gene" type="update">
	The handling of comments has been changed completely. Comments
	are now attached to the preamble/string/normal entry following
	them. Especially during sorting the comments are rearranged as
	well. This seems useful to keep comments on macro definitions
	and the definitions together. The last comment always stays at
	the end.
  </action>
  <action dev="gene" type="fix">
	Minor bug fixed. The searching for <code>.bibtoolrsc</code>
	went wrong.
  </action>
  <action dev="gene" type="fix">
	Minor bug fixed. <code>output.file</code> resource acted
	incorrect.
  </action>
  <action dev="gene" type="add">
	<code>print.all.strings</code> acts like described in the
	documentation.
  </action>
  <action dev="gene" type="update">
	Resource arguments in the command line can have unbalanced
	braces in strings now. Still there is no escape character
	defined.
  </action>
  <action dev="gene" type="update">
	Internally BibTool can handle more than one database
	simultaneously. This is needed for the SQL interface.
	Let&apos;s see how this can be used otherwise.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.34" date="">
  <action dev="gene" type="update">
	Default value of <code>key.expand.macros</code> changed to on.
	This seems to be a more sensible default value. (Possible
	incomatibility to old version)
  </action>
  <action dev="gene" type="add">
	<code>new.format.type</code> introduced. This command can be
	used to specify formatting rules for names. It is used in
	conjunction with the %p format specification which has been
	added.
  </action>
  <action dev="gene" type="add">
	The format specifiers for counting names/words/characters have
	been added. Those act as booleans which force backtracking if
	they fail. The qualifier # is used to enable counting.
  </action>
  <action dev="gene" type="update">
	When writing macro files undefined macros are written as
	<code>_string</code> instead of <code>@STRING</code>. Thus
	they are comments to BibTeX.
  </action>
  <action dev="gene" type="update">
	The command line options <code>-x</code> and <code>-X</code>
	now also set <code>print.all.strings</code> to off. (This has
	no effect yet)
  </action>
  <action dev="gene" type="doc">
	The documentation has been updated.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.33" date="">
  <action dev="gene" type="add">
	Reference card added (prepared for A4 paper).
  </action>
  <action dev="gene" type="fix">
	Bugfix in <code>rewrite.c</code>. <code>add.field</code> no
	longer crashes.
  </action>
  <action dev="gene" type="update">
	Format specifiers %n and %N now also use the post argument.
	This argument is used to restrict the number of characters
	transferred.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.32" date="">
  <action dev="gene" type="add">
	New resource <code>select.fields</code> introduced. This
	resource controlls which fields are considered when selecting
	with <code>-X</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.31" date="">
  <action dev="gene" type="update">
	I have moved to a new job. My email address has been changed
	in all files (maybe I have missed some?).
  </action>
  <action dev="gene" type="fix">
	The resource <code>select.case.sensitive</code> behaved
	contra-intuitive. This has been fixed. This means that old
	scripts might need adaption.
  </action>
  <action dev="gene" type="update">
	<code>select</code> and <code>rewrite.rule</code> can take
	several fields now. Thus you can specify several selections or
	rewrites more compact.
  </action>
  <action dev="gene" type="doc">
	The survey of related programs in the documentation has been
	enlarged.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.30" date="">
  <action dev="gene" type="fix">
	Minor bugfix in <code>s_parse.c</code>. Resource
	specifications in the command line may have let to an overflow
	of an array. This has been fixed.
  </action>
  <action dev="gene" type="add">
	New resource <code>print.parentheses</code> introduced. This
	resource allows the user to specify whether {} or () should be
	used to delimit each entry.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.29" date="">
  <action dev="gene" type="update">
	Support for compilation without the GNU Regular Expression
	Library improved.
  </action>
  <action dev="gene" type="update">
	The <code>@comment</code> is really more liberal than I
	thought. This prefix is simply ignored (As I have read in the
	BibTeX sources). This behaviour is now also performed by
	BibTool.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.28" date="">
  <action dev="gene" type="update">
	Some additional updates for the new makefiles.
  </action>
  <action dev="gene" type="fix">
	Bugfix in <code>print.c</code> which let to additional strings
	after the regular end of an entry.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.27" date="">
  <action dev="gene" type="update">
	Reorganization of the files. Slight corrections of function
	protptypes in various files. Change of the
	<code>Makefile</code> to support Amiga SAS/C.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.26" date="">
  <action dev="gene" type="fix">
	Minor bug in key.c fixed. One step further to a 8-bit clean
	program. I wonder which 8-bit traps are still hidden in
	BibTool.
  </action>
  <action dev="gene" type="update">
	The TeX macro mechnism has been enhanced to allow one to
	define single character macros. This means <code>tex.define</code>
	automatically makes a character active if it is encountered as
	macro name of a definition.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.25" date="">
  <action dev="gene" type="update">
	Finally all separators can be arbitrary strings. Only allowed
	characters are used (as it has been done in version 1.*). I
	hope this finally fixes the bug in key.c which I had troubles
	with in the previous versions.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.24" date="">
  <action dev="gene" type="doc">
	Documentation for regular expressions added.
  </action>
  <action dev="gene" type="add">
	Resource <code>select</code> and
	<code>select.case.sensitive</code> added. The selection allows
	to specify a regular expression for arbitrary fields. This
	subsumes the old <code>extract.regex</code> which is kept for
	backward compatibility.
  </action>
  <action dev="gene" type="fix">
	A bugfix in 2.23 corrected.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.23" date="">
  <action dev="gene" type="update">
	Some minor modifications for DEC-Alpha.
  </action>
  <action dev="gene" type="update">
	Some minor modifications for the native HP C compiler.
  </action>
  <action dev="gene" type="fix">
	Some bugs in <code>key.c</code> fixed.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.22" date="">
  <action dev="gene" type="update">
	\par (double newlines) is preserved now. <code>parse.c</code>
	has been modified. The line breaking algorithm in
	<code>print.c</code> has been adapted.
  </action>
  <action dev="gene" type="fix">
	Allocation bug in <code>stack.c</code> fixed.
  </action>
  <action dev="gene" type="fix">
	Bug in <code>expand.c</code> which added garbage to expanded
	strings.
  </action>
  <action dev="gene" type="update">
	Some improvements for non-ANSI C compilers (I really
	don&apos;t know why I continue this).
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.21" date="">
  <action dev="gene" type="add">
	Preserving of case of keys introduced. For this purpose the
	resource <code>preserve.key.case</code> has been introduced.
	The management of the list of old keys is done in
	<code>macros.c</code> mainly. Minor change in
	<code>print.c</code> and <code>parse.c</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.20" date="">
  <action dev="gene" type="fix">
	Minor bug fix in <code>sort.order</code>.
  </action>
  <action dev="gene" type="update">
	Compression method changed to gzip.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.19" date="">
  <action dev="gene" type="add">
	Key format specifiers t, w, W introduced. w, W, t and T take a
	post argument to limit the number of characters to use.
  </action>
  <action dev="gene" type="add">
	<code>sort.order</code> introduced to sort fields in an entry.
  </action>
  <action dev="gene" type="update">
	Wrong mail addresses in many files corrected.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.18" date="">
  <action dev="gene" type="fix">
	Rewriting missed some multiply occurring patterns.
	(<code>rewrite.c</code>)
  </action>
  <action dev="gene" type="add">
	Resource <code>rewrite.limit</code> added.
  </action>
  <action dev="gene" type="fix">
	Problem with recursive resources fixed. (<code>parse.c</code>)
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.17" date="">
  <action dev="gene" type="doc">
	The documentation is now compatible with LaTeX2e.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.16" date="">
  <action dev="gene" type="add">
	New resource <code>print.newline</code> introduced to control
	the number of empty lines between entries.
  </action>
  <action dev="gene" type="add">
	MSDOS support: Imitating emtex search path initialization as
	option.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.15" date="">
  <action dev="gene" type="fix">
	Some problems with 8-bit characters fixed.
  </action>
  <action dev="gene" type="add">
	String expansion before key generation added:
	<code>key.expand.macro</code>
  </action>
  <action dev="gene" type="fix">
	Hashindex was computed wrong for some strings with ASCII
	values &gt; 127.
  </action>
  <action dev="gene" type="update">
	Hashtable enlarged and new algorithm for hashindex
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.14" date="">
  <action dev="gene" type="fix">
	<code>delete.field</code> bug fixed. The deletion of the last
	field lead to the deletion of all fields. (<code>rewrite.c</code>)
  </action>
  <action dev="gene" type="update">
	Comments added to <code>print.c</code>.
  </action>
  <action dev="gene" type="add">
	Target zip in <code>Makefile</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.13" date="">
  <action dev="gene" type="add">
	Yet more modifications for the MSDOS port.
	What a brain-dead OS.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.12" date="">
  <action dev="gene" type="update">
	Version 2.12 of GNU regex library integrated.
  </action>
  <action dev="gene" type="update">
	<code>alloca.c</code> is no longer needed.
  </action>
  <action dev="gene" type="fix">
	Some improvements for the MSDOS port.
  </action>
  <action dev="gene" type="fix">
	<code>aux.[ch]</code> renamed to <code>tex_aux.[ch]</code> resp.
  </action>
  <action dev="gene" type="fix">
	Resource search path seems to work now.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.11" date="">
  <action dev="gene" type="fix">
	Some typos fixed.
  </action>
  <action dev="gene" type="update">
	Redefinition of entry types enabled.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.10" date="">
  <action dev="gene" type="add">
	String/Macro expansion added: <code>expand.macros</code>.
  </action>
  <action dev="gene" type="update">
	Case in-sensitive treatment of ignored words.
  </action>
  <action dev="gene" type="update">
	Some additional targets in <code>Makefile</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.09" date="">
  <action dev="gene" type="update">
	<code>Makefile</code> enhanced.
  </action>
  <action dev="gene" type="update">
	Error/verbose/debug messages improved.
  </action>
  <action dev="gene" type="fix">
	Hell, I forgot to remove trace statements.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.08" date="">
  <action dev="gene" type="update">
	Comment parsing and printing improved.
  </action>
  <action dev="gene" type="add">
	symbol.type introduced.
  </action>
  <action dev="gene" type="update">
	Minor improvement of non-ANSI support.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.07" date="">
  <action dev="gene" type="update">
	Printing improved. Rewriting of macro names completed and
	documented.
  </action>
  <action dev="gene" type="fix">
	Truncating bug in <code>print.c</code> fixed.
  </action>
  <action dev="gene" type="update">
	Minor improvement of non-ANSI support.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.06" date="">
  <action dev="gene" type="add">
	UN*X man pages for <code>sbuffer()</code>, <code>pxfile()</code>
  </action>
  <action dev="gene" type="update">
	Absolute path name use improved.
  </action>
  <action dev="gene" type="fix">
	Minor bug fixed.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.05" date="">
  <action dev="gene" type="add">
	Semantic checks with regular expressions.
  </action>
  <action dev="gene" type="update">
	Crossref modification when key generation is enabled.
  </action>
  <action dev="gene" type="fix">
	Preference bug for search path building fixed.
  </action>
  <action dev="gene" type="update">
	Rewriting enhanced.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.04" date="">
  <action dev="gene" type="add">
	String parser introduced. Error checking/messages improved.
  </action>
  <action dev="gene" type="update">
	Undocumented command line options changed.
  </action>
  <action dev="gene" type="add">
	Command line specification of resources introduced.
  </action>
  <action dev="gene" type="fix">
	Minor bug fixes.
  </action>
  <action dev="gene" type="update">
	Code slightly reorganized. (I really found a static array)
  </action>
  <action dev="gene" type="update">
	Samples directory renamed to <code>Lib</code>.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.03" date="">
  <action dev="gene" type="add">
	Field rewriting introduced.
  </action>
  <action dev="gene" type="update">
	Resource <code>optimize</code> is obsolete. The functionality can be
	achieved by field rewriting.
  </action>
  <action dev="gene" type="add">
	Resource search path introduced.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.02" date="">
  <action dev="gene" type="fix">
	Minor bug fixes.
  </action>
  <action dev="gene" type="update">
	Static array in key generation routine made dynamic.
	There is still a limit which can be reached when a short TeX
	macro expands into very long text.
  </action>
  <action dev="gene" type="add">
	Checking double entries feature introduced.
  </action>
  <action dev="gene" type="add">
	Printing TABs can be emulated by SPACEs.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.01" date="">
  <action dev="gene" type="fix">
	Bug fixes.
  </action>
  <action dev="gene" type="add">
	Print representation for items introduced.
  </action>
  <action dev="gene" type="update">
	Distribution improved.
  </action>
  <action dev="gene" type="add">
	Resource samples added.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="2.0" date="">
  <action dev="gene" type="add">
	Major revision.
  </action>
  <action dev="gene" type="add">
	Sorting integrated.
  </action>
  <action dev="gene" type="add">
	Resources introduced.
  </action>
  <action dev="gene" type="update">
	Several command line options deleted.
  </action>
  <action dev="gene" type="update">
	Key formatting improved.
  </action>
  <action dev="gene" type="doc">
	Draft Documentation.
  </action>
 </release>

 <!-- ===================================================================== -->
 <release version="1.7" date="">
 </release>

</changes>