]> git.draconx.ca Git - gob-dx.git/blob - NEWS
Release 2.0.10
[gob-dx.git] / NEWS
1 2.0.10:
2         * Support for overriding properties (Jean-Yves Lefort)
3         * Some M4 fixage with respect to NOINSTGOB (K. Haley)
4         * Make the private structure allocation play nice with glib (K. Haley)
5         * Add --file-sep=c option to allow changing the file separator
6           character (Pierre Gay) 
7         * Fix C++ compilation of linked POINTER types by casting properly
8           (Frank Lichtenheld) debian bug #270546
9         * Always add string.h as it was missing sometimes when memset was used
10         * In C++ mode cast the destroywith/unrefwith function with
11           reinterpret_cast to avoid C++ nonsense (should fix compilation with
12           gcc 3.4 I think)
13         * Update the docs
14
15 2.0.9:
16         * Lots of fixes for gcc warnings, objects should now compile with
17           very pedantic warnings set.
18
19 2.0.8:
20         * Documentation fixes
21         * Add support for -o and --output-dir
22         * Fixed boxed_type
23
24 2.0.7:
25         * Add support for INT64 and UINT64 types for signals and properties
26           (Nicolas Brugier)
27         * Exit with error when BOXED or FLAGS are used as arguments for a
28           signal, that doesn't work anyway
29         * Warn classwide members have destructors since those never get called
30           (we only make static classes so it doesn't make sense anyway)
31         * Fix --exit-on-warn
32         * Don't use deprecated glib functions (Kjartan, me)
33         * Fix compilation on IBMs C compiler (Albert Chin-A-Young)
34         * gob2.m4 fixes for new automake (Tomasz Kloczko)
35         * Couple of minor fixes
36         * Couple of fixes to the documentation
37
38 2.0.6:
39         * Allow compilation with newer flex (tested with both 2.5.4a and
40           2.5.31)
41         * Minor doc update
42         * Minor build fixes
43
44 2.0.5:
45         * Fix leak in signal emission
46
47 2.0.4:
48         * Fix two gtkdoc bugs
49         * Use G_UNLIKELY/G_LIKELY a bit if available
50
51 2.0.3:
52         * In C++ mode don't eat "::" from type strings as C++ might be
53           using it, and we aren't ever using such a thing
54         * Fix a segfaults in the parser (Jody Goldberg, Gerhard Dieringer, me)
55         * Fix unichar stuff for values (properties, signal arguments, etc...)
56         * Add support for UNICHAR and UINT64 and INT64 everywhere
57         * Don't make the get_type function a G_GNUC_CONST as gcc3.2 whacks
58           out about that
59
60 2.0.2:
61         * Properly link BOXED type
62         * unref/unrefwith works now since shtdown changed into dispose
63         * Update documentation
64         * man page escapes all ' chars (fix debian bug 155577)
65         * Further tests in test.gob
66
67 2.0.1:
68         * Fixed property types for all the types that require an extra
69           GObject type
70         * Fix object and boxed linking
71         * Fixed C++ mode for flags and enum linking
72         * Allow comments in property code
73
74 2.0.0:
75         * Update examples and documentation
76
77 1.99.3:
78         * Fix signal default value
79         * Special case the interface code to allow implementing
80           GTypePlugin and GtkEditable interfaces
81         * Fix export of accessors (Dennis Bjorklund)
82         * some compilation fixes
83
84 1.99.2:
85         * allow implementation (but not definition yet) of interfaces
86         * enum, flags and GError creation code
87         * BonoboObject stuff (Seth)
88         * build fixes (me, Seth)
89         * m4 preprocessing stuff (Josh Parsons)
90         * Code generation fixes (Josh Parsons, Bastien Nocera, me)
91         * New way of doing typesafe signal connections