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