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