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