b75f358a0d32923b8f75e638b55b00ca6d75a66d
[clutter-gtk] / ChangeLog
1 2007-08-03  Chris Lord,,,  <chris@openedhand.com>
2
3         * doc/reference/Makefile.am:
4         Fix documentation building
5
6 2007-07-18  Neil J. Patel  <njp@o-hand.com>
7
8         * examples/Makefile.am:
9         Point to new clutter-gtk library name.
10
11 2007-07-17  Emmanuele Bassi  <ebassi@openedhand.com>
12
13         * examples/gtk-clutter-events.c: Remove wrong casting around
14         the g_signal_connect() argument; this masked a weird memory
15         corruption bug happening when compiling outside the sources
16         directory.
17
18 2007-07-17  Emmanuele Bassi  <ebassi@openedhand.com>
19
20         * clutter-gtk/Makefile.am:
21         * clutter-gtk.pc.in: Install (and use) a versioned library, to
22         match the behaviour of clutter-core and the other integration
23         libraries.
24
25 2007-07-17  Emmanuele Bassi  <ebassi@openedhand.com>
26
27         * clutter-gtk.pc.in: Depend on the right clutter pkgconfig file
28
29         * Makefile.am: Install a versioned clutter-gtk pkgconfig file
30
31 2007-07-06  Matthew Allum  <mallum@openedhand.com>
32
33         * NEWS:
34         Update.
35         * configure.ac:
36         Bump up version to 0.3.1
37
38 2007-07-06  Matthew Allum  <mallum@openedhand.com>
39
40         * clutter-gtk.pc.in:
41         Fix to require 0.3 clutter.
42
43 2007-06-11  Neil Jagdish Patel  <njp@f7>
44
45         * examples/gtk-clutter-events.c: (create_colors):
46         Removed stray g_print
47
48 2007-06-11  Neil Jagdish Patel  <njp@o-hand.com>
49
50         * examples/Makefile.am:
51         * examples/gtk-clutter-events.c: (on_gtk_entry_changed),
52         (on_x_changed), (on_y_changed), (on_z_changed),
53         (on_opacity_changed), (create_colors), (main):
54         Added another example whihc shows some interaction between gtk and
55         the stage.
56
57         * examples/gtk-clutter-test.c: (main):
58         Updated to work with clutter-0.3
59
60
61 2007-04-17  Emmanuele Bassi  <ebassi@openedhand.com>
62
63         * configure.ac: Branch for development; bump to 0.3.0, to
64         match Clutter core version; require clutter-glx backend.
65
66         * clutter-gtk/clutter-gtk.c: Include the GLX backend specific
67         functions; add an "embedded" read-only property, which signals
68         whether the widget has successfully embedded the stage window;
69         use the new clutter_glx_get_stage_window() function.
70
71         * examples/gtk-clutter-test.c: Port to the new event API.
72
73 2007-03-23  Ross Burton  <ross@openedhand.com>
74
75         * configure.ac:
76         Don't require any particular GTK+ version.
77
78 2007-03-23  Ross Burton  <ross@openedhand.com>
79
80         * examples/Makefile.am:
81         Dist the PNG.
82
83 ================= 2007-03-22 0.1 Release ========================
84
85 2007-03-22  Matthew Allum  <mallum@openedhand.com>
86
87         * clutter-gtk.doap:
88         Update for 0.1 Realease
89
90 2007-03-22  Matthew Allum  <mallum@openedhand.com>
91
92         * NEWS:
93         Update for 0.1 release
94         * doc/reference/clutter-gtk.types:
95         Rename fix.
96
97 2007-03-22  Matthew Allum  <mallum@openedhand.com>
98
99         * clutter-gtk/Makefile.am:
100         * clutter-gtk/clutter-gtk.c:
101         * clutter-gtk/gtk-clutter.c:
102         * clutter-gtk/gtk-clutter.h:
103         * configure.ac:
104         * examples/gtk-clutter-test.c:
105         Various naming fixups. 
106
107 2007-03-21  Matthew Allum  <mallum@openedhand.com>
108
109         * clutter-gtk.pc.in:
110         * clutter-gtk/Makefile.am:
111         More version fixes.
112
113 2007-03-21  Matthew Allum  <mallum@openedhand.com>
114
115         * doc/reference/Makefile.am:
116         Fix lib path so docs build again.
117
118 2007-03-21  Matthew Allum  <mallum@openedhand.com>
119
120         * clutter-gtk/gtk-clutter.c:
121         * clutter-gtk/gtk-clutter.h:
122         Redo to subclass GtkSocket and use XEMBED to embed clutter stage.
123         Needs at least clutter 0.2.2. Avoids previous issues with
124         white textures when painting onto a GtkWindow.
125         (Thanks to Iain for doing all the hardwork here)
126
127         * examples/gtk-clutter-test.c: (main):
128         Update.
129
130         * configure.ac:
131         * clutter-gtk.pc.in:
132         Fixups to require clutter-0.2.2
133
134 2006-11-30  Matthew Allum  <mallum@openedhand.com>
135
136         * clutter-gtk.doap:
137         Update doap file a little.
138
139 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
140
141         * clutter-gtk/gtk-clutter.c:
142         (gtk_clutter_expose_event): Queue a redraw of the
143         stage instead of directly swapping the GL buffers.
144
145 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
146
147         * clutter-gtk/gtk-clutter.c:
148         (gtk_clutter_expose_event): Use the newly added
149         clutter_stage_swap_buffers() and fix the missing redraw
150         on expose bug.
151
152 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
153
154         * examples/gtk-clutter-test.c: Add a "quit" button.
155
156 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
157
158         * clutter-gtk/gtk-clutter.c:
159         (gtk_clutter_destroy): Destroy the ClutterStage instead
160         of unreffing it.
161
162         (gtk_clutter_size_allocate): Queue a redraw if the stage
163         is marked as visible.
164
165         (gtk_clutter_realize): Remove the forced realize: the
166         stage is already realized by default.
167
168         * examples/gtk-clutter-test.c: Use gtk_main_quit().
169
170 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
171
172         * clutter-gtk/gtk-clutter.h: Add constructor; clean up.
173
174         * clutter-gtk/gtk-clutter.c:
175         (gtk_clutter_destroy), (gtk_clutter_class_init): Move
176         the stage unref to the GtkObject::destroy method.
177
178         (gtk_clutter_size_allocate): Oblige to the size allocation
179         request from the container of the GtkClutter widget by
180         resizing the ClutterStage.
181
182         (gtk_clutter_size_request): Require the size of the stage.
183
184         (gtk_clutter_destroy), (gtk_clutter_size_request),
185         (gtk_clutter_realize): Do not use the G_TYPE_INSTANCE_GET_PRIVATE()
186         macro, which does a type check and a function call; use the
187         priv pointer we conveniently keep around.
188
189         * examples/gtk-clutter-test.c: Use the given constructor;
190         now window resizing works.  The stage doesn't get refreshed
191         immediately (resize the window), though, and there's still
192         the X error when we close the window.
193
194 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
195
196         * *: Initial import out of the main tree.