Add compatibility for Lifelines.
[gedcom-parse.git] / NEWS
1 NOTE: NO BACKWARD COMPATIBILITY IS GUARANTEED FOR 0.x RELEASES !!
2
3 release 0.15 (27 March 2002):
4
5  - Again mainly a bugfixing release
6
7  - Compatibility with ftree is added, all GEDCOM files written by ftree
8    should load fine now.
9
10  - Note for developers: you now have to call the function gedcom_init()
11    as soon as possible in your program (before any character set handling
12    is done, see documentation for details).  If the function has not been
13    called, gedcom_parse_file() will return an error.
14
15 release 0.14 (20 January 2002):
16
17  - This is mainly a bugfixing release, no extra features have been added.
18
19  - Some example code is available on how to convert from UTF-8 to the locale
20    system, and how to check the library version via configure.in (see the
21    documentation for details).
22
23 release 0.13 (5 January 2002):
24
25  - Cross-references are now parsed and checked.  For this, an extra type is
26    added to the types possible in a Gedcom_val: an xref pointer. This means
27    that GEDCOM_XREF_PTR has to be used now in some places instead of
28    GEDCOM_STRING.
29    A quick change is to replace
30      GEDCOM_STRING(val)
31    by
32      GEDCOM_XREF_PTR(val)->string
33    where applicable.  But you can also store an object in the 'object' member
34    of the struct returned by GEDCOM_XREF_PTR (see documentation).
35
36  - Other interface changes in the callbacks:
37     - parsed tag value (integer) is passed next to the string value
38     - the start record callbacks now also contain a Gedcom_val (the NOTE can
39       have a value)
40
41  - Further, various bugfixes have been made.
42
43 release 0.12 (31 December 2001):
44
45  - The calling of callbacks is now completed.
46
47  - Some initial documentation is available.
48
49  - The parsed value that is returned in callbacks can now be:
50      - a null value
51      - a string
52      - a date (struct date_value)
53    See the documentation for more info.  Parsing and checking of cross-
54    references will be added next.
55
56 release 0.11 (15 December 2001):
57
58  - Initial release from Sourceforge.net (developers only !)
59   
60 # $Id$
61 # $Name$