]> git.draconx.ca Git - gob-dx.git/blob - NEWS
Update NEWS to describe new features.
[gob-dx.git] / NEWS
1 2.0.20a:
2         * Improve build system.
3         * Remove NOINSTGOB functionality as it seems pointless.
4         * Add support for dynamic GObject types.
5         * New and improved GOB2_CHECK macro.
6
7 2.0.20:
8         * Require glib 2.4, and change use of the _take_ownership functions
9           to _take_ functions
10         * Support for GTK3 (Pedro L. Lucas)
11         * names on properties and signals (Pedro L. Lucas)
12
13 2.0.19:
14         * Print unreftors and destructors before calling parent finalize and
15           dispose as is the proper ordering (thanks to Dmitri Toubelis)
16         * do not output #line 0 statements (patch from Nick Bowler)
17         * Fix empty file separator (thanks to H.-J. Schnitzer)
18
19 2.0.18:
20         * Add %ctop{ %} to do what alltop does but only for the C file
21         * Buildfixes for Cygwin (Roland Clobus)
22         * gob2.m4 exits if gob is not found (fixes ubuntu #317801)
23           (Stephen Kitt)
24         * Escape minus signs in the webpage and fix some typos (Stephen Kitt)
25         * clarify README as to the public domainness of the generated code
26
27 2.0.17:
28         * Fix segfault when defining the finilize, dispose, and
29           constructor methods (Fixes debian bug #574542)
30         * Handle carriage returns in input files
31         * use -G_MAXFLOAT and -G_MAXDOUBLE for the default minima
32           for floating point numbers (thanks to Marcel Wagner for
33           the patch)
34
35 2.0.16:
36         * add possibility of using function attributes such as
37           G_GNUC_PRINTF etc... (Britton Kerin, Jean-Yves Lefort, me)
38         * *_get_type methods are G_GNUC_CONST (Jean-Yves Lefort, me)
39         * move #line sections past opening brace of functions
40           (Jean-Yves Lefort)
41         * handle finalize, dispose, constructor just like init
42           (Jean-Yves Lefort)
43         * Add %afterdecls{ %} code block
44           (Jean-Yves Lefort)
45         * Minor fixes to docs (me, Andrew Feren)
46
47 2.0.15:
48         * Fix --file-sep usage with respect to private headers
49         * Don't use /dev/null to help portability on non-unix
50         * Fix segfault on bad include statement (debian bug #443907)
51         * Fix my-person.gob example
52
53 2.0.14:
54         * Fix major segfault
55
56 2.0.13:
57         * --no-touch support to avoid spurious rebuilds (see manpage)
58           (Jean-Yves Lefort)
59         * abstract class flag support (Jean-Yves Lefort)
60         * allow BOXED in signal arguments (see manpage) (Big Thor)
61         * fix libglade support (Nicolas Bruguier)
62
63 2.0.12:
64         * libglade support (see manpage) (Nicolas Brugier)
65         * Fixes to property parsing and allow user created
66           parameters (Jean-Yves Lefort)
67         * Add support for prealloc and allow bitfields (K. Haley)
68         * Don't reference TYPE_SELF when generating privates (Big Thor)
69
70 2.0.11:
71         * When privates and overrides were used in 2.0.10 compilation of
72           object may have broken on some compilers.
73
74 2.0.10:
75         * Support for overriding properties (Jean-Yves Lefort)
76         * Some M4 fixage with respect to NOINSTGOB (K. Haley)
77         * Make the private structure allocation play nice with glib (K. Haley)
78         * Add --file-sep=c option to allow changing the file separator
79           character (Pierre Gay) 
80         * Fix C++ compilation of linked POINTER types by casting properly
81           (Frank Lichtenheld) debian bug #270546
82         * Always add string.h as it was missing sometimes when memset was used
83         * In C++ mode cast the destroywith/unrefwith function with
84           reinterpret_cast to avoid C++ nonsense (should fix compilation with
85           gcc 3.4 I think)
86         * Update the docs
87
88 2.0.9:
89         * Lots of fixes for gcc warnings, objects should now compile with
90           very pedantic warnings set.
91
92 2.0.8:
93         * Documentation fixes
94         * Add support for -o and --output-dir
95         * Fixed boxed_type
96
97 2.0.7:
98         * Add support for INT64 and UINT64 types for signals and properties
99           (Nicolas Brugier)
100         * Exit with error when BOXED or FLAGS are used as arguments for a
101           signal, that doesn't work anyway
102         * Warn classwide members have destructors since those never get called
103           (we only make static classes so it doesn't make sense anyway)
104         * Fix --exit-on-warn
105         * Don't use deprecated glib functions (Kjartan, me)
106         * Fix compilation on IBMs C compiler (Albert Chin-A-Young)
107         * gob2.m4 fixes for new automake (Tomasz Kloczko)
108         * Couple of minor fixes
109         * Couple of fixes to the documentation
110
111 2.0.6:
112         * Allow compilation with newer flex (tested with both 2.5.4a and
113           2.5.31)
114         * Minor doc update
115         * Minor build fixes
116
117 2.0.5:
118         * Fix leak in signal emission
119
120 2.0.4:
121         * Fix two gtkdoc bugs
122         * Use G_UNLIKELY/G_LIKELY a bit if available
123
124 2.0.3:
125         * In C++ mode don't eat "::" from type strings as C++ might be
126           using it, and we aren't ever using such a thing
127         * Fix a segfaults in the parser (Jody Goldberg, Gerhard Dieringer, me)
128         * Fix unichar stuff for values (properties, signal arguments, etc...)
129         * Add support for UNICHAR and UINT64 and INT64 everywhere
130         * Don't make the get_type function a G_GNUC_CONST as gcc3.2 whacks
131           out about that
132
133 2.0.2:
134         * Properly link BOXED type
135         * unref/unrefwith works now since shtdown changed into dispose
136         * Update documentation
137         * man page escapes all ' chars (fix debian bug 155577)
138         * Further tests in test.gob
139
140 2.0.1:
141         * Fixed property types for all the types that require an extra
142           GObject type
143         * Fix object and boxed linking
144         * Fixed C++ mode for flags and enum linking
145         * Allow comments in property code
146
147 2.0.0:
148         * Update examples and documentation
149
150 1.99.3:
151         * Fix signal default value
152         * Special case the interface code to allow implementing
153           GTypePlugin and GtkEditable interfaces
154         * Fix export of accessors (Dennis Bjorklund)
155         * some compilation fixes
156
157 1.99.2:
158         * allow implementation (but not definition yet) of interfaces
159         * enum, flags and GError creation code
160         * BonoboObject stuff (Seth)
161         * build fixes (me, Seth)
162         * m4 preprocessing stuff (Josh Parsons)
163         * Code generation fixes (Josh Parsons, Bastien Nocera, me)
164         * New way of doing typesafe signal connections