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