2007-03-22 Matthew Allum <mallum@openedhand.com>
[clutter-gtk] / ChangeLog
1 ================= 2007-03-22 0.1 Release ========================
2
3 2007-03-22  Matthew Allum  <mallum@openedhand.com>
4
5         * clutter-gtk.doap:
6         Update for 0.1 Realease
7
8 2007-03-22  Matthew Allum  <mallum@openedhand.com>
9
10         * NEWS:
11         Update for 0.1 release
12         * doc/reference/clutter-gtk.types:
13         Rename fix.
14
15 2007-03-22  Matthew Allum  <mallum@openedhand.com>
16
17         * clutter-gtk/Makefile.am:
18         * clutter-gtk/clutter-gtk.c:
19         * clutter-gtk/gtk-clutter.c:
20         * clutter-gtk/gtk-clutter.h:
21         * configure.ac:
22         * examples/gtk-clutter-test.c:
23         Various naming fixups. 
24
25 2007-03-21  Matthew Allum  <mallum@openedhand.com>
26
27         * clutter-gtk.pc.in:
28         * clutter-gtk/Makefile.am:
29         More version fixes.
30
31 2007-03-21  Matthew Allum  <mallum@openedhand.com>
32
33         * doc/reference/Makefile.am:
34         Fix lib path so docs build again.
35
36 2007-03-21  Matthew Allum  <mallum@openedhand.com>
37
38         * clutter-gtk/gtk-clutter.c:
39         * clutter-gtk/gtk-clutter.h:
40         Redo to subclass GtkSocket and use XEMBED to embed clutter stage.
41         Needs at least clutter 0.2.2. Avoids previous issues with
42         white textures when painting onto a GtkWindow.
43         (Thanks to Iain for doing all the hardwork here)
44
45         * examples/gtk-clutter-test.c: (main):
46         Update.
47
48         * configure.ac:
49         * clutter-gtk.pc.in:
50         Fixups to require clutter-0.2.2
51
52 2006-11-30  Matthew Allum  <mallum@openedhand.com>
53
54         * clutter-gtk.doap:
55         Update doap file a little.
56
57 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
58
59         * clutter-gtk/gtk-clutter.c:
60         (gtk_clutter_expose_event): Queue a redraw of the
61         stage instead of directly swapping the GL buffers.
62
63 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
64
65         * clutter-gtk/gtk-clutter.c:
66         (gtk_clutter_expose_event): Use the newly added
67         clutter_stage_swap_buffers() and fix the missing redraw
68         on expose bug.
69
70 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
71
72         * examples/gtk-clutter-test.c: Add a "quit" button.
73
74 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
75
76         * clutter-gtk/gtk-clutter.c:
77         (gtk_clutter_destroy): Destroy the ClutterStage instead
78         of unreffing it.
79
80         (gtk_clutter_size_allocate): Queue a redraw if the stage
81         is marked as visible.
82
83         (gtk_clutter_realize): Remove the forced realize: the
84         stage is already realized by default.
85
86         * examples/gtk-clutter-test.c: Use gtk_main_quit().
87
88 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
89
90         * clutter-gtk/gtk-clutter.h: Add constructor; clean up.
91
92         * clutter-gtk/gtk-clutter.c:
93         (gtk_clutter_destroy), (gtk_clutter_class_init): Move
94         the stage unref to the GtkObject::destroy method.
95
96         (gtk_clutter_size_allocate): Oblige to the size allocation
97         request from the container of the GtkClutter widget by
98         resizing the ClutterStage.
99
100         (gtk_clutter_size_request): Require the size of the stage.
101
102         (gtk_clutter_destroy), (gtk_clutter_size_request),
103         (gtk_clutter_realize): Do not use the G_TYPE_INSTANCE_GET_PRIVATE()
104         macro, which does a type check and a function call; use the
105         priv pointer we conveniently keep around.
106
107         * examples/gtk-clutter-test.c: Use the given constructor;
108         now window resizing works.  The stage doesn't get refreshed
109         immediately (resize the window), though, and there's still
110         the X error when we close the window.
111
112 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
113
114         * *: Initial import out of the main tree.