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