-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1868 lines (1398 loc) · 48.4 KB
/
ChangeLog
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
BIBUTILS
6.7
8/31/18
+ Remove exit() calls from library and fully implement error tracking in
struct str (requested by Vasiliy Glazov)
+ Add "DOI:" to doi entries in xml2ads (reported by Richard Mathar)
+ Eliminate duplication of doi information in xml2ads (reported by Richard
Mathar)
+ Improve handling of non-ascii letters for ADS %R tags (patch from Richard
Mathar)
+ Suppress warnings on Windows compilers with 32 bit longs (reported by Vaclav
Haisman)
6.6
7/02/18
+ Allow distros to inject LDFLAGS via LDFLAGSIN into bibutils builds (reported
by Jens-Ulrik Petersen)
+ Add xml2nbib converter
6.5
6/12/18
+ Handle both genres "unpublished" and "manuscript" (reported by Chip Maguire)
+ Recognize all MARC role abbreviations (reported by Chip Maguire)
+ Handle Licentiate theses (reported by Chip Maguire)
+ Fix bug in nbib2xml (reported by Vaclav Haisman)
+ Fix hangs in bib2xml/biblatex2xml found by american-fuzzy-lop
6.4
6/05/18
+ Add missing return in bibtexout.c (reported by Vaclav Haisman)
+ Fix accidentally deleted extern in xml.h to fix hs-bibutils build (reported
by Vaclav Haisman)
6.3
6/04/18
+ Add bibdiff program
+ Fix header guards in iso639_1.h and iso639_3.h (reported by Vaclav Haisman)
+ Fix nbib support for bibutils as a library (reported by Vaclav Haisman)
+ Add authority="bibutilsgt" for bibutils-recognized genres not in MARC
authority
+ Switch from GENRE/NGENRE/UGENRE to GENRE:MARC/GENRE:BIBUTILS/GENRE:UNKNOWN
+ General cleanups and fixes to cppcheck/clang warnings
+ Fix CVE-2018-10773, CVE-2018-10774, CVE-2018-10775
6.2
8/09/17
DOI
+ Output as url in addition to doi for ads, bibtex, and ris formats
6.1
7/31/17
BUILD
+ Fix recognition of Linux ppc64le machines (reported by Michaela Buchanan)
GLOBAL
+ Handle new crossref URL for DOI's https://doi.org/ (reported by Murali Raju)
RISIN
+ Handle mangled RIS sources that have three spaces in the tag instead of two
(reported by Vaclav Haisman)
6.0
7/4/17
GLOBAL
+ Switch newstr/list to str/slist
+ Fix build problems
RISIN
+ Fix parsing bug in RIS (patch from Vaclav Haisman)
BIBTEXIN/OUT
+ Improve handling of eprintClass/primaryClass for arXiv references (reported
by Chris Karakas)
5.11
11/8/16
NBIB2XML
+ Add program
BIBTEXOUT
+ Handle MRNUMBER
5.10
11/2/16
BIBTEXIN
+ Handle MRNUMBER and CODEN tags
5.9
9/12/16
GLOBAL
+ Allow bibutils to properly process references with several authors of the
same name (reported by Jason Annadani).
MODSIN
+ Fix processing of mods input files where given name information isn't as
finely parsed as bibutils mods files are (reported by Dan Gildea).
5.8
5/23/16
INTERNAL
+ Change xxx_convertf() functions to use tables of function pointers
+ Use generic function pointers whenever possible to decrease duplicated code
ADSOUT
+ Improve URL handling
BIBLATEXIN
+ Identify JSTOR
BIBTEXOUT
+ Handle PMC identifiers
+ Fix chapter/title for @inbook references (reported by Vivek Botcha)
RISOUT
+ Handle PMC identifiers
5.7
2/15/16
MODSIN
+ Handle relatedItem original information (reported by John Vandenberg)
BIBTEXOUT
+ Resolve INBOOK/MISC problems (reported by John Vandenberg)
+ Improve output of latex macros (reported by John Vandenberg)
RISIN
+ Recognize URL's buried in the notes field
+ Properly propagate situation when journal name in RIS is under "T2"--short
title, not "JF"--journal title (reported by Mary Martin)
GLOBAL
+ Update library components to current versions
+ Improve error propagation
+ Lots of small fixes found by clang --analyze
5.6
1/26/15
MODSOUT
+ Fix array that was too small (reported by dcb314@users.sf.net)
+ Lots of cleanups
5.5
11/15/14
GLOBAL
+ Improve error propagation in library
MODSIN
+ Improve handling of language information and handle iso639-1, iso639-2, and iso639-3 codes
XML2END
+ Output DOI as '%R' in addition to url in '%U'
+ Improve recognition of reference types in MODS records
XML2RIS
+ Improve recognition of reference types in MODS records
5.4
03/24/14
BIB2XML/BIBLATEX2XML
+ Do not use latex in references to external files (reported by JVilhena)
WORDOUT
+ Output url information (reported by danieldedo)
5.3
03/06/14
BUILD
+ Remove type 'uint' from lib/bibtexin.c and lib/biblatexin.c
+ Handle additional latex forms of C with cedilla
5.2
09/03/13
BIBLATEXIN
+ Protect conversion of tilde in URLs
5.1
09/03/13
BUILD
+ Fix make install (reported by Jens Petersen)
+ Fix cygwin skipping of ranlib (reported by Doug McIlroy)
BIBTEXIN
+ Fix string concatenation and string variable usage
BIBLATEXIN
+ Fix string concatenation and string variable usage
+ Add additional recognized reference types (reported by Nick Bart)
5.0
05/27/13
USER VISIBLE CHANGES
+ Make default character set unicode
+ Enable -o --output-encoding for the xxx2xml converters
BUILD
+ Ensure binary directory target exists (reported by Thomas Fischer)
+ Tell cp to preserve symbolic links when copying dynamic library (reported by Thomas Fischer)
+ Remove bashisms from sh script (reported by JeffH)
BIBLATEXIN
+ Handle 'shorttitle' tag (reported by Nick Bart)
+ Make asis/corp file work again (reported by JeffH)
+ Map 'pubstate' tag to note type="publication status" similar to http://ufdc.ufl.edu/help/pubstatus (suggested by Nick Bart)
+ Handle 'series' tag in @report (reported by Nick Bart)
+ Map 'series' in @article to partName of journal title (reported by Nick Bart)
+ Write 'annotation' as special type of note (reported by Nick Bart)
BIBTEXIN
+ Make asis/corp file work again (reported by JeffH)
RISOUT
+ Ensure that BT fields are written for conference publications (reported by Matthias Stevens)
+ Ensure that ED fields are used for editors of conference publications (reported by Matthias Stevens)
MODS
+ Fix inappropriate "language" tags under languageOfCataloging (reported by Nick Bart)
NAME MANGLING
+ Improve handling of prefixes to given names, e.g. "van der" in "van der Sande"
4.17
01/24/13
BUILD
+ Large changes to build process; more changes for MINGW32/Cygwin
+ Remove attempt to build powerpc-supporting binaries for MacOSX
GLOBAL
+ Attempt to include iso639-2b codes for languages when possible
+ Make output consistent with MODS version 3.4 by adding language/languageTerm (reported by Nick Bart)
+ Fix accidental duplication of roles in MODS output (reported by Nick Bart)
BIBLATEXIN
+ Map 'hyphenation' to recordInfo/languageOfCataloging (reported by Nick Bart)
+ Map biblatex 'version' to edition (reported by Nick Bart)
+ Fix series fields in @inbook (reported by Nick Bart)
+ Fix issues with @periodical (reported by Nick Bart)
+ Handle entrysubtypes for @article (reported by Nick Bart)
+ Handle origdate (reported by Nick Bart)
+ Fix corporate editors (reported by Nick Bart)
+ Process report 'isrn' field (reported by Nick Bart)
MEDIN
+ Handle iso639-2b language input and output as full language name
4.16
01/09/13
BUILD
+ Add version to GPL for Fedora/Redhat
+ Add recognition of x86_64 MacOSX as Intel Macintoshes to configure
+ Add recognition of OpenBSD to configure
+ Add recognition of MINGW32 architecture to configure
+ Remove explicit use of 'make' in Makefiles and use $(MAKE) instead
+ Switch to sh version of configure script (thanks to Adrian Devries)
+ Switch to sh version of maketgz script (thanks to Adrian Devries)
+ Switch to sh version of makedeb script
GLOBAL
+ Improve propagation of memory errors in libraries to calling programs
+ Update help messages
+ Rewrite name parsing/mangling code
+ Do cast for ctype.h functions to handle MINGW32 architecture (reported by Adrian Devries)
ADSOUT
+ Fix bug where partial matches for journal titles identified journals
+ Add Windows-specific format string for MINGW32 architecture (reported by Adrian Devries)
+ Update list of journal abbreviations
BIBTEXIN
+ Fix bug where spaces following an escaped quotation mark (as with the -nl, no latex, flag) are lost (reported by Raoul Blankertz)
+ Fix bug where pages had to be completely numeric (reported by Nick Bart)
+ Import series information for @Techreport
+ Rewrite name parsing
+ Improve recognition of urls put in inappropriate fields
+ Improve handling of tilde/sticky space
+ Add latex recognition of alternative ways to express the (Polish) capital and lowercase slashed L
+ Improve recognition of URL identifiers in note fields
+ Map 'howpublished' to publisher (reported by Nick Bart)
BIBLATEXIN
+ Add 'date' field to every reference type, regardless if it's in the reference documentation or not (reported by Nick Bart)
+ Fix bug where pages had to be completely numeric (reported by Nick Bart)
+ Add support for 'institution' and 'type' for report references (reported by Nick Bart)
+ Add strings support (reported by Nick Bart)
+ Handle editor types, including bibtex-chicago variants (reported by Nick Bart)
+ Map 'introduction', 'foreward', 'afterward' to "author of introduction/foreward/afterward" (reported by Nick Bart)
+ Ignore 'school' in biblatexin reference if 'institution' is available like biblatex(reported by Nick Bart)
+ Improve biblatex thesis type recognition
+ Rewrite name parsing
+ Improve handlning of tilde/sticky space
+ Map 'howpublished' to publisher (reported by Nick Bart)
+ Handle 'titleaddon' field (reported by Nick Bart)
+ Output number field differently for type report (reported by Nick Bart)
BIBTEXOUT
+ Output series information for @Techreport
+ Output all keywords in single entry as semi-colon deliminated list
COPACIN
+ Fix pre-name mangling that prevents recognition by asis/corporation lists
ENDIN
+ Add better support for series information
ENDOUT
+ Add better support for series information
MODSIN
+ Add support for common MARC role codes (role abbreviations)
RISIN
+ Add recognition of map type
+ Improve support for series information (reported by Mattheis Steffens)
RISOUT
+ Add recognition of map type (reported by Mattheis Steffens)
+ Fix bug in date output (reported by Mattheis Steffens)
+ Improve support for series information (reported by Mattheis Steffens)
4.15
9/26/12
BIBTEXIN
+ @article 'number' -> MODS 'issue'
+ @conference = @inproceedings
+ 'organization' -> publisher if publisher not available, otherwise output
as <name><namePart>xx</namePart><role><roleTerm>organizer of meeting</roleTerm></role></name>
BIBLATEXIN
+ Add missing month parsing
4.14
9/04/12
BIBTEXIN
+ Split individual keywords in the keywords field separated by semi-colons
RISIN
+ Handle URL schemes from L1 and L4 fields (reported by Martin Kucej)
RISOUT
+ PY outputs only year, DA outputs year/month/day combination (reported by Nelson Hart)
+ L1 and L4 fields need to be URL's (reported by Martin Kucej)
WORD2007OUT
+ Replace b:PeriodicalName with b:PeriodicalTitle
4.13
8/28/12
BUILD
+ Fix build problem with test subdirectory (patch by David Bremner)
+ Avoid hard-coded dynamic library to help out Debian (path by David Bremner)
+ Add patch to bibutils.dbk (patch by David Bremner)
CHARSETS
+ Add more latex character <-> Unicode conversions
FIELDS
+ Update internals, add vplist component, and convert to new interface
BIBTEXIN
+ Fix chapter in @inbook, @inproceedings, and @incollection from overwriting
the title of the section being cited (reported by Brian Keese)
+ Cleanly handle "illegal" @inbook entries that have both "title" and "booktitle"
fields and really want to be @incollection entries (reported by Brian Keese)
+ Remove mbox commands from input
RISIN
+ Add recognition of more RIS fields (reported by Nelson Hart)
RISOUT
+ Use 'AB' instead of 'N2' tag for abstracts (reported by Nelson Hart)
+ Use 'DO' tag instead of building a complete URL for DOI's (reported by Nelson Hart)
+ Use 'ET' tag for edition output (reported by Nelson Hart)
+ Use 'LA' tag for language
+ Add recognition of non-official genres "book chapter" and "journal article"
(reported by Nelson Hart)
4.12
10/10/10
BUILD
+ Allow smaller static libraries to be built
+ Add --dynamic and --static (default) options to configure script
+ Add --install-lib to configure script to controll installation of dynamic libraries
XML2ADS
+ Fix overflow of page value with really large page numbers
+ Update journal abbreviation list
XML2BIB
+ Add command-line option -d or --drop-key to prevent xml2bib from
adding tags (so they can be generated by programs like JabRef)
4.11
9/14/10
BUILD
+ Include some "unused" flags like LDFLAGS so that people with particular build
environments can have these flags respected (from Gentoo
http://bugs.gentoo.org/show_bug.cgi?id=336237)
+ Add test programs to "make test" protocol
TEST
+ Fix some signedness issues (bit rot) in the test programs (from Mandriva
packager, Stéphane Téletchéa)
XML2BIB
+ Add command-line option -at or --abbreviatedtitles to force xml2bib to
use abbreviated titles for journals (books and other host types), if present
in the MODS input
4.10
8/30/10
BIBLATEX2XML
+ fix organization/event handling (thanks to Johannes Wilms)
MODSIN
+ support the presence of the reference identifier/key in
mods:recordInfo:recordIdentifier
4.9
4/9/10
BIBLATEX2XML
+ Many, many changes thanks to Johannes Wilms
BIB2XML
+ Some improvements in thesis handling derived from biblatex2xml changes
BUILD
+ Fix build for _x86_64 (amd64) (Thanks to patch from Colin Bell).
4.8
2/2/10
BIB2XML
+ Handle bibtex annote tags
XML2BIB
+ Handle bibtex annote tags
4.7
12/11/09
XML2ADS
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.
XML2END
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.
XML2ISI
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.
4.6
11/2/09
BIB2XML
+ Fix inefficiency in latex2char() that gives roughly a 10x speed increase
in bib2xml. Thanks to Stephan Washietl for the patch.
NAME MANGLING
+ Fix bug with uninitalized pointer. Thanks to David Bremner for patch.
NEWSTRING
+ Add newstrs versions of various commands.
4.5
10/24/09
BIB2XML
+ Identify and use byte-order-mark in UTF8-encoded files
+ Support file attachments with "pdf" tags (old JabRef), "sentelink" (Sente),
and "file" (new JabRef, Zotero, Mendeley). (Thanks to Richard Karnesky)
COPAC2XML
+ Identify and use byte-order-mark in UTF8-encoded files
ISI2XML
+ Identify and use byte-order-mark in UTF8-encoded files
RIS2XML
+ Add support for DOI tags DO and DI from Scopus (Thanks to Fred Howell)
+ Identify and use byte-order-mark in UTF8-encoded files
+ Add support for L1 file attachment tags (Thanks to Richard Karnesky)
XML2ADS
+ Output file attachments as URLs
XML2BIB
+ Add support for "file" file attachment tag in the JabRef/Mendeley/Zotero
format
XML2END
+ Output file attachments as URLs
XML2ISI
+ Output file attachments as URLs
XML2RIS
+ Add support for L1 file attachment tags
4.4
10/05/2009
BIB2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
COPAC2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
END2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
+ Add support for electronic-source-num as potential location of DOI
+ Add support for language
END2XML
+ Fix support for number field in report/book/book section/edited book
reference types
ENDXML2XML
+ Support pdf-url in endnote XML file
ISI2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
RIS2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
4.3
7/31/09
BIB2XML
+ Add support for recognizing howpublished = {arXiv:xxxx} entries
LATEX
+ Fix bug for {\c{c}} output
XML2END
+ Add support for Pubmed ID's (PMID) as %U http://www.ncbi.nlm.nih.gov/pubmed/...
+ Add support for arXiv identifiers as %U http://arxiv.org/abs/...
XML2RIS
+ Add support for Pubmed ID's (PMID) as UR - http://www.ncbi.nlm.nih.gov/pubmed/..
+ Add support for arXiv identifiers as UR - http://arxiv.org/abs/...
+ Change abstract output from "AB" tag to "N2"
XML2WORDBIB
+ Add support to handle inventors in patent type
+ Fix inappropriate output of empty author or editor lists
4.2
06/25/09
BUILD
+ Add support for 'Power Macintosh' as MacOSX_ppc. Thanks to Matthias
Steffens for the fix.
+ Fix additional MacOSX build bugs, thanks to David Sanson
END2XML
+ Add %1 parsing to journal articles
+ Fix bug not recognizing %[ and elements as valid tags
+ Add support for Conference Paper
ENDX2XML
+ Add support for pub-location tags
+ Add support for Conference Paper
LATEX
+ Fix bug for {\AA} conversion, patch thanks to Joseph Barillari.
MED2XML
+ Recognized medline entries from MEDLINE in addition to PUBMED. Thanks to
Hamish McWilliam for providing useful information.
MODSIN
+ Handle pages provided as list, patch thanks to Heiko Jansen
NAME MANGLING
+ Handle hyphenated names better
+ Handle "et al." in name lists better
XML2BIB
+ Add recognition of genre "article", patch thanks to Heiko Jansen
XML2END
+ Add export of DOI as %U http://dx.doi.org/.... Thanks to Mattheis
Steffens for the report
XML2RIS
+ Add export of DOI as UR - http://dx.doi.org/.... Thanks to Mattheis
Steffens for the report
XML2WORD
+ Add support for more types of sources.
4.1
BIBLATEX2XML
+ Lots of bug fixes
BUILD
+ Try to make changes to bin/Makefile to fix problem on FreeBSD. Still
awaiting feedback to see if problem is solved.
END2XML
+ Handle DOI placed in %1 custom field by Wiley
RIS2XML
+ Add pattern matching for new DOI output by Science Direct
XML2ADS
+ Fix putting comma after the first keyword (thanks to Richard Mathar)
4.0
BIBLATEX2XML
+ Initial alpha version of the program -- mapping certain fields to MODS
hasn't been done yet.
BUILD
+ Move files/functions around so all of the code necessary to support
the converters but not part of the bibutils libraries are in the
bin subdirectory.
CHARSET CONVERSION
+ add partial recognition of Chinese GB18030 character set (containing
the GBK superset)
+ Revert 3.41 patch from Luc Pardon default that made unicode/utf8 take
precedence over latex now that -nl, --no-latex flag is available
END2XML
+ support %G language tag
+ support %H translator tag
ENDX2XML
+ fix bug caused by style tags in author fields
LIBRARY HANDLING
+ Remove requirement for defining lists for "as-is" and "corporation" names
to be read from the file -- embed in the param structure instead (help
for Haskell bindings)
+ Modify the library API so that input and output formats are stored in
struct param and do not need to be repeated in bibl_read() and bibl_write()
calls.
XML2BIB
+ Turn off latex encoding if we're using the GB18030 character set.
XML2END
+ support %G language tag
+ support %H translator tag
+ add better support for MARC-authority genre tags
3.43
11/24/08
BIB2XML
+ Fix recognition of em-dash by placing it before en-dash in conversion
list.
+ Add -nl or --no-latex to prevent conversion of latex character
combinations
MODSOUT
+ Ensure that bibutils handles records with empty MODS attributes
3.42
10/31/08
MODSOUT
+ Change default to UTF8 unicode characters written directly (not
via XML entities) and writing BOM. Add command-line switch
-x or --xml-entities to write XML entities instead to BIB2XML
END2XML ENDX2XML MED2XML RIS2XML, etc.
XML2ADS
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2BIB
+ For users who want the bibtex file format, but not the latex encryption
of characters, add -nl or --no-latex to command-line switches
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2END
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2ISI
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2RIS
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2WORD2007
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
+ Fix the recognition of incollection items as book sections.
3.41
6/16/08
BUILD
+ Fix bug in makedeb.csh
+ Fix site-specific compiler definition for SunOS5 target.
+ Add Linux x86_64 target for configuration.
MODSIN
+ Fix NULL pointer dereference for "detail" elements lacking a type
attribute. (Noticed and hunted down by Thomas Fischer.)
RIS2XML
+ Fix bug where "AB - " with a newline before the abstract was
not recognized as an abstracted. (Reported by Thomas Braun
and Richard Mathar.)
XML2ADS
+ Updates from Richard Mathar fixing R-tag output, merging keywords,
fixing date, adding title, and replacing double dash.
+ Update journals to current list from:
http://adsabs.harvard.edu/abs_doc/journals1.html
XML2BIB
+ Fix character priority so unicode/utf8 takes precedence over latex
(Patch from Luc Pardon)
3.40
2/10/08
MODSIN
+ Fix crash where placeTerm tag doesn't have attribute (Thanks to
Martin-Michael Schoenbeck for identifying the problem and submitting
an initial patch).
+ Properly handle the 'mods:' namespace (Thanks to Martin-Michael
Schoenbeck for identifying the problem and submitting an
initial patch).
+ Fix bug where multiple roleTerms confused role assignment.
RIS2XML
+ Oxford journal RIS output is now putting DOI information in the N1
field; recognize this (Thanks to Richard Mathar for letting me know).
XML2ADS
+ New converter for the ADS format submitted by Richard Mathar.
XML2BIB
+ Bias the program to output issue/number tags as 'number' first
and use 'issue' only in cases where both issue and number have
been defined.
+ Add '-sk' '--strictkey' option that only outputs alphanumeric
characters in the bibtex reference names (this is overly strict,
but may be useful in some cases to automatically avoid problems
with other bibtex parsers)
XML2END
+ Fix missing return for articles with article numbers rather than
page numbers
XML2WORDBIB
+ Rename "xml2word" to avoid confusion with other programs that work
on Word documents, not Word bibliographies
3.39
10/24/07
NAME MANGLING
+ Fix crash caused by specifically malformed name fields
3.38
10/10/07
BIB2XML
+ Fix crash when bibtex citation key is blank (introduced in 3.37)
END2XML
+ Fix handling of total pages
+ Fix handling of conference name
ENDX2XML
+ Fix handling of total pages
+ Fix handling of conference name
+ Fix bug where reference would skip if the starting record tag was
split by the input buffer
3.37
8/20/07
MODSOUT
+ fix bug where terminating > symbol is missing in
<identifier type="serialnumber"> output
3.36
8/19/07
CHARSET CONVERSION
+ add recognition of apostrophe HTML entity
LIBRARY HANDLING
+ resolve duplicates of citation keys by adding a-z
BIB2XML
+ properly handle bibtex files output by endnote that don't have field keys
+ add support for Diploma, Doctoral, and Habilitation theses (German)
ENDX2XML
+ properly handle whitespace in style tags
+ add support for Diploma, Doctoral, and Habilitation theses (German)
RIS2XML
+ support computer program "COMP" type
+ support patent "PAT" type
+ support unpublished "UNPB" type
+ add support for Diploma, Doctoral, and Habilitation theses (German)
XML2BIB
+ output newspaper articles as @ARTICLE as well
+ output series titles as "series" for book chapter, inproceedings, theses
types
+ add support for Diploma, Doctoral, and Habilitation theses (German)
XML2END
+ support magazine article type
+ support patent type
+ support computer program type
+ add support for Diploma, Doctoral, and Habilitation theses (German)
XML2ISI
+ be more aggressive about outputing the date
XML2RIS
+ support magazine article type
+ support abstract/summary type
+ support patent type
+ support computer program type
+ support unpublished "UNPB" type
+ add support for Diploma, Doctoral, and Habilitation theses (German)
3.35
7/30/07
BIB2XML
+ support translator field
COPAC2XML
+ fix bug where garbage input can lead to infinite loop
ENDX2XML
+ fix bug where multiple style tags caused data to be lost
ISI2XML
+ use authors listed with "AF" instead of "AU" when present as they
are a "better" annotated list
+ fix bug where garbage input can lead to infinite loop (patch thanks
to Fred Howell)
+ add type S for book in series
+ fix bug where NR number of references was being recognized as
journal number
RIS2XML
+ add support for RIS magazine article "MGZN"
+ add support for RIS abstract "ABST"
+ add support for reading thesis hint in "user 1" tag "U1"
XML2BIB
+ output article number as page number if page numbers aren't found
+ support translator field
+ make preferred form of \text markups have curly brackets
XML2END
+ output article number as page number if page numbers aren't found
XML2RIS
+ output article number as page number if page numbers aren't found
+ fix recognition of thesis type
+ output "U1 - Masters thesis" or "U1 - Ph.D. thesis" as a hint
for Refbase of the thesis type
XML2WORD
+ output article number as page number if page numbers aren't found
3.34
6/07/07
END2XML
+ fix bug that prevent dates from being read in
3.33
5/23/07
MED2XML
+ fix stupid change that caused coredumps
3.32
5/21/07
CHARSET CONVERSION
+ fix bug where UTF-8/Unicode input is ignored for BibTeX files
MODSIN
+ Recognize both >extent unit="page"< and >extent unit="pages"<
NEWSTR
+ Fix compilation on 64 bit processors
BIB2XML
+ Strip latex \url{} tags from input data
XML2BIB
+ Add recognition of --verbose and --debug
XML2END
+ Add recognition of --verbose and --debug
XML2ISI
+ Add recognition of --verbose and --debug
XML2RIS
+ Add recognition of --verbose and --debug
XML2WORD
+ Add recognition of command line switches
3.31
4/1/07
BIBTEXIN
+ Fix typo in genre for "incollection" to "monographic"
+ Remove text markups like \textit{} and \textbf{}
+ Replace text markups like "\textonesuperior" with appropriate Unicode
characters
+ Have electronic types set MODS resource "software, multimedia"
BIBTEXOUT
+ Modify warning message for "xml2bib: cannot identify type" to
tell user that it's defaulting to @Misc so people stop reporting
this information to me
+ Add electronic type recognition and output
ENDIN
+ Have electronic types set MODS genre "electronic"
+ Add '%S' Series title to Book type
+ Add recognition of Unicode UTF8 byte order information
ENDXMLIN
+ Ensure that the "label" field ends up in the MODS output as
reference ID
+ Pass through "short-title" information
MODSOUT
+ Fix typo so MARC-authority genre types are "marcgt", not "marc"