5f3717e84b300f73e09b5dede171ee229dbf697a
[platform/upstream/glib.git] / gobject / ChangeLog
1 Fri May  5 01:15:48 2000  Tim Janik  <timj@gtk.org>
2
3         * gtype.h: add reserved fundamental ids for gtk types (for transition
4         time). added G_TYPE_FUNDAMENTAL_MAX for gtk.
5
6 Mon Apr 17 20:45:50 2000  Tim Janik  <timj@gtk.org>
7
8         * glib-gobject.c (g_object_base_class_finalize): oops, don't unset
9         n_params prior to destructing them.
10
11 Tue Apr 11 04:28:10 2000  Tim Janik  <timj@gtk.org>
12
13         * fixed a couple of bugs in the initial parameter/object
14         implementations, after getting beast running on GObject and GValue.
15
16 Fri Apr  7 04:27:49 2000  Tim Janik  <timj@gtk.org>
17
18         * glib-gobject.[hc]: completed parameter set/get implementations,
19         along with asyncronous parameter changed notification queue.
20
21 Sun Apr  2 04:54:36 2000  Tim Janik  <timj@gtk.org>
22
23         * glib-gobject.[hc]: GObject implementation, that is facilities
24         for setting/getting quarked data and reference counting.
25
26         * glib-gparamspecs.[hc]: first actuall parameter implementations
27         for GLib, so far we have: char, uchar, bool, int, uint, long,
28         ulong, enum, flags, float, double, string and object. each of these
29         GParamSpecs is a new instantiatable type in its own respect,
30         so the .c file derives 13 new types from G_TYPE_PARAM and
31         defines over 50 (*2) conversion facilities.
32
33         * glib-gvaluecollector.h: generic varargs handling stubs for
34         GParamSpecs, private header file (does get installed for
35         inclusion into user code though).
36
37         * glib-gvalue.[hc]: GValue functionality implementation.
38
39         * glib-gparam.[hc]: basis GParamSpec implementation for
40         the virtual base type G_TYPE_PARAM.
41
42         * glib-genums.[hc]: enum/flags type implementation, based on
43         bseenum.[hc].
44
45         * glib-extra.[hc]: GLib additions, including 1.3 compatibility
46         routines and various other functions, from string manipulation
47         over list manipulation up to a unix signal GSource.
48
49         * glib-gtype.[hc]: GLib Type System implementation, heavily
50         based on BSE's dynamic type system.