text: Chain up in the ScriptableIface implementation
[profile/ivi/clutter.git] / NEWS
1 Clutter 1.11.4                                                       2012-06-05
2 ===============================================================================
3
4   • List of changes since Clutter 1.11.2
5
6     - Multi-touch support fixes
7     The clutter_event_copy() code was copying the wrong axis data; the correct
8     touch device was not used when translating axis data from XInput2 to the
9     ClutterInputDevice; touch events were not delivered to the correct actors.
10
11     - Add ClutterDropAction::drop-cancel signal
12     The ::drop-cancel does what it says on the tin: it allows handling a
13     cancelled drop action, instead of relying on the drag end signal on
14     the ClutterDragAction.
15
16     - Add examples in the repository
17     Clutter has been using some interactive tests as examples of idiomatic
18     usage, both as standalone code and for inclusion inside the API reference
19     documentation; this is sub-optimal, as the interactive tests are meant to
20     exercise the API and its behaviour, not as an example of how to write
21     proper Clutter code. For this reason, we now have an examples/ directory
22     that contains example code that can be used to learn Clutter.
23
24     - Allow disabling the tests and examples when building Clutter
25     This should help cross-compilation and testing.
26
27     - Fix the preferred size to always include the actor's margin
28
29     - Fix picking of the ClutterScrollActor
30
31     - Add implicit animations for the color properties of ClutterText
32     Changing any color-related properties of a ClutterText actor will result
33     in a transition, if the easing state has a non-zero duration.
34
35     - Layout managers should respect the child expand and align properties
36     ClutterBinLayout, ClutterBoxLayout, and ClutterTableLayout should use the
37     ClutterActor [xy]-expand and [xy]-align properties, and deprecate their
38     own.
39
40     - Make all layout managers respect the child easing state when allocating
41     ClutterLayoutManager also has properties that can be set to control all
42     the children's default easing state.
43
44     - Add ClutterTimeline::stopped signal
45     The ::stopped signal is emitted either when a Timeline reaches full
46     completion, including eventual repeats; or when the Timeline has been
47     stopped through clutter_timeline_stop(). A boolean argument passed to
48     the signal handlers should be used to distinguish the two cases.
49
50     - Add ClutterGridLayout
51     This layout manager implements the same layout policy of GtkGrid.
52
53     - Fixes for ClutterKeyframeTransition
54
55     - Documentation fixes
56
57     - Fixes for building Clutter with Visual Studio
58     Including the GDK backend.
59
60     - Fixes for the Mac backend
61     Chain up to get a Cogl context after creating a GL context; this seems
62     to be enough to make the interactive tests run.
63
64   • List of bugs fixed since Clutter 1.11.2
65
66     [bugzilla.gnome.org]
67     #675336 - ClutterDropAction needs a ::drop-cancel signal
68     #675371 - Asserts when getting touch events
69     #676088 - Fixing picking in scroll-actor "breaks" gnome-control-center
70     #676032 - keyframe-transition: Documentation fixes
71     #676031 - keyframe-transition: Create a new interval if necessary
72     #676158 - table-layout: Remove unused animation helpers
73     #676334 - scroll-actor: Fix ->transition not being reset
74     #675890 - Passing NULL buffer to clutter_text_set_text() will not reset
75               the buffer and segfault
76     #676367 - actor: Add a custom scriptable "margin" property
77     #676068 - Setting size on ClutterFlowLayout container crashes
78     #676963 - text: Enable implicit color animations
79     #675396 - Possible bug in _clutter_paint_volume_axis_align
80     #674365 - Race during parallel build in tests/interactive/
81     #676827 - layout-manager: Add a new animation API
82     #677085 - examples: Allow optional animations in flow-layout
83     #677086 - box-layout: Remove unused BoxChild members
84     #677098 - Ensure we stop transitions on remove_child()
85     #676854 - timeline: Add a new "finished" signal
86     #677039 - Wrong allocation for WIDTH_FOR_HEIGHT actors
87     #675998 - Example 4.2 mixes up height and width
88     #677384 - doc: Add ClutterLayoutManagerPrivate to doc sections
89     #677284 - table-layout: Honor actors expand and alignment settings
90     #677283 - box-layout: Honor actor expand and alignment
91     #677372 - Add ClutterGridLayout
92     #677390 - events: Deliver touch events to actors
93
94 Many thanks to:
95
96   Bastian Winkler, Chun-wei Fan, Bastien Nocera, Daniel Mustieles, Fran
97   Diéguez, Tomeu Vizoso, Tristan Van Berkom, Alexander Larsson, Alexandre
98   Franke, Bruno Brouard, Debarshi Ray, Dominique Bureau, Emanuele Aina, Matej
99   Urbančič, Mike Ruprecht, Piotr Drąg
100
101 Clutter 1.11.2                                                       2012-04-30
102 ===============================================================================
103
104   • List of changes since Clutter 1.10
105
106     - Add ClutterScrollActor
107     An actor that can display a portion of its children, as well as
108     transitioning between visible regions.
109
110     - Make clutter_actor_allocate() respect the easing state of the actor
111     This allows animating allocations in layout managers.
112
113     - Add automatic expansion flags for ClutterActor
114     Actors can be marked to by allocated extra space by their parent, or
115     by the layout manager used by their parent; the expansion flags are also
116     recursive, so they can be set on a leaf node of the actor tree, and
117     propagate further up automatically.
118
119     - Add ClutterTransitionGroup and ClutterKeyframeTransition
120     Two ClutterTransition implementation that allow creating complex
121     transitions.
122
123     - Provide more C convenience API to ClutterTransition
124     Instead of dealing with ClutterInterval instances, it's possible to
125     define the starting and final values of a transition.
126
127     - Provide base geometric types: point, size, rectangle
128     Along with commodity API.
129
130     - New round of deprecations
131     ClutterMedia, ClutterCairoTexture, clutter_actor_animate(),
132     ClutterAnimation, ClutterAnimator, ClutterState, ClutterLayoutManager's
133     animation API.
134
135     - Return a valid default PaintVolume in more cases
136     For actors not overriding paint() or get_paint_volume() we can already
137     infer enough information on the area thatis going to be painted, and return
138     a valid paint volume. We specifically ignore any painting going on inside
139     a ClutterActor::paint signal handler, as that is considered legacy and on
140     its way to deprecation. People overriding the paint sequence of an actor
141     from within a paint signal handler, and painting outside the allocation,
142     are evil anyway.
143
144     - Depend on Pango 1.30
145
146     - Report distance as an axis on X11 with XInput 2 support enabled
147     Proximity information with XInput 2+ is reported as axis data on devices
148     with valuator classes.
149
150     - Documentation fixes
151
152   • List of bugs fixed since Clutter 1.10
153
154     #674510 - Changing a hidden child's position with new API shows the
155               actor
156     #672994 - Orca sometimes presents previously-entered text in GNOME
157               Shell Alt+F2 dialog
158     #652521 - get_length fails in Clutter.Path when length is greater
159               than 46340
160     #673644 - Scroll not working in document overview
161
162 Many thanks to:
163
164   Jasper St. Pierre, Neil Roberts, Robert Bragg, Cosimo Cecchi, Rob Bradford,
165   Jonh Wendell, Piotr Drąg, Rico Tzschichholz, Alejandro Piñeiro,
166   Carles Ferrando, Christian Kirbach, Daniel Korostil, Daniel Mustieles,
167   Daniel Nylander, Fran Diéguez, Ihar Hrachyshka, Jordi Serratosa,
168   Kenneth Nielsen, Owen W. Taylor, Peter Hutterer, Rajesh Ranjan,
169   Rudolfs Mazurs, Stefano Facchini, Tristan Van Berkom, Viktor Nyberg,
170   Yuri Myasoedov, kkrothap@redhat.com.
171
172 Clutter 1.9.16                                                       2012-03-19
173 ===============================================================================
174
175   • Clutter 1.10.0, release-candidate 1
176
177   • List of changes since Clutter 1.9.14
178
179     - Support implicit animatable properties
180     Various properties of ClutterActor can now be implicitly animated when
181     using the public setters, instead of going through the animation API;
182     this is an opt-in mechanism for the 1.x API series.
183
184     - Introduce paint nodes
185     ClutterPaintNode is an element of the render tree; it is used to store
186     the pipeline state and the geometry to be drawn. Actors have the ability
187     to be painted using the paint nodes by overriding the paint_node() virtual
188     function instead of the paint() virtual function. For the 1.x API series
189     the render tree will be consumed per-actor, but the plan is to build a
190     full tree as the authoritative source for the 2.x API series.
191
192     - Support Content delegates
193     ClutterContent is an interface that allows creating classes that will
194     painted in place of an actor's paint() virtual function. Clutter provides
195     two content types: Canvas, a Cairo-based immediate canvas for drawing the
196     contents of an actor; and Image, a content that will paint image data.
197
198     - ClutterText improvements
199     The caret of editable text actors is now centered, and the background
200     color will be respected when painting the actor.
201
202     - Support for the XInput 2.2 extension
203     Clutter will now relay touch events coming from the X server, as well
204     as precise scrolling delta, for devices with those two capabilities.
205     The support is still experimental, and limited to the X11 platform for
206     the time being.
207
208     - Translation updates
209     Slovenian, Assamese, Bulgarian, Spanish, Galician, Belarusian, Traditional
210     Chinese (Hong Kong and Taiwan), British English, Hebrew, Polish, Catalan,
211     Khmer, Russian, Finnish, Odia, Brazilian Portuguese, Danish, Lithuanian,
212     Portuguese, Czech, Swedish, French.
213
214   • List of bugs fixes since Clutter 1.9.14
215
216     [bugzilla.gnome.org]
217     #655491 - Text cursor/caret theming
218     #668801 - [NSApp finishLaunching]; missing in OSX backend
219     #656156 - Add lightness, brightness, and contrast effects
220     #671736 - Provide translations for "default:LTR" for RTL locales
221     #671779 - gdk: add new device types (GDK_SOURCE_TOUCHSCREEN,
222               GDK_SOURCE_TOUCHPAD)
223     #672316 - Flickering/redraw issues in multi stage
224
225 Many thanks to:
226
227   Piotr Drąg, Chun-wei Fan, Daniel Mustieles, Fran Diéguez, Matej Urbančič,
228   Nilamdyuti Goswami, Alexander Shopov, Bruce Cowan, Florian Müllner,
229   Gil Forcada, Ihar Hrachyshka, Stefano Facchini, Мирослав Николић,
230   Adam Matoušek, Antonio Fernandes C. Neto, Aurimas Černius, Bruno Brouard,
231   Carles Ferrando, Chao-Hsiung Liao, Daniel Nylander,  Duarte Loreto,
232   Jasper St. Pierre, Joseph Scheuhammer, Kenneth Nielsen, Khoem Sokhem,
233   Lionel Landwerlin, ManojKumar Giri, Marek Černocký, Timo Jyrinki,
234   Tristan Van Berkom, Yuri Myasoedov
235
236 Clutter 1.9.14                                                       2012-03-05
237 ===============================================================================
238
239   • List of changes since Clutter 1.9.12
240
241     - Support custom versioning boundaries for the API
242     Now that GLib provides macros for changing the minimum required and
243     maximum allowed version of a library, Clutter can respect the
244     boundaries expressed using CLUTTER_VERSION_MIN_REQUIRED and
245     CLUTTER_VERSION_MAX_ALLOWED.
246
247     - Add version information to deprecations
248
249     - Move all deprecated symbols to separate header files
250
251     - Documentation and annotation fixes.
252
253     - Accessibility fixes in Cally
254     Do not use ClutterActor:name as the accessible name, and do not
255     provide the extents of an accessible object if the actor to which
256     it refers is not on screen.
257
258     - Updates to the Wayland compositor and client support
259     Clutter now allows being used for creating hybrid Wayland/X11
260     compositors, working with KMS and evdev directly.
261
262     - Translation updates: Bulgarian, Ukranian, Galician, Uyghur, Belarusian,
263     Brazilian Portuguese, Telugu, Slovenian, Assamese, Serbian.
264
265   • List of bug fixes since Clutter 1.9.12
266
267     [bugzilla.gnome.org]
268     #670680 - "make check" assumes gdk backend will be built
269
270 Many thanks to:
271
272   Robert Bragg, Neil Roberts, Alejandro Piñeiro, Chun-wei Fan,
273   Alexander Shopov, Daniel Korostil, Daniel Mustieles, Fran Diéguez,
274   Gheyret Kenji, Giovanni Campagna, Ihar Hrachyshka, Jonh Wendell,
275   Krishnababu Krothapalli, Matej Urbančič, Nilamdyuti Goswami,
276   Мирослав Николић
277
278 Clutter 1.9.12                                                       2012-02-23
279 ===============================================================================
280
281   • List of changes since Clutter 1.9.10
282
283     - Add ClutterTimeline:repeat-count and deprecate :loop
284     The :repeat-count property supercedes the :loop property, and it
285     provides a way to specify the number of repeats that a timeline
286     should perform - with the option of specifying an "infinity" value.
287
288     - Add a progress mode for ClutterTimeline
289     This begins the "soft deprecation" of ClutterAlpha. Instead of
290     requiring a full object to compute an easing function out of a
291     linear progress coming from ClutterTimeline, we should have this
292     functionality on ClutterTimeline itself. Since ClutterAlpha is
293     still exposed in API that we cannot deprecate (such as virtual
294     functions) we cannot deprecate it fully, and we'll have to wait
295     until the 2.0 API bump to get rid of it.
296
297     - Fix ClutterBoxLayout allocation
298     Since the update of the box layout algorithm there have been a
299     bunch of regressions; now the layout works as intended.
300
301     - Improve the performance of the shader-based effect in Clutter
302     The effects shipped with Clutter now use the CoglSnippet API
303     internally, which allows efficient generation of the shader code;
304     they also ensure that the shader is generated once per class, and
305     shared across instances. These changes should improve performance
306     when using effects provided by Clutter.
307
308     - Update the internal usage of Cogl API
309     Clutter should strive to use the Cogl 2.0 API internally and not
310     mix the 1.0 and 2.0 API.
311
312     - Allow accessing Wayland input devices
313     This is a change that allows Clutter-based toolkits to interact
314     with Wayland in a meaningful way for operations like resize and
315     move.
316
317     - Add a convenience CLUTTER_BIND_ALL enumeration
318     This allows binding both position and size of an actor when using
319     a ClutterBindConstraint.
320
321     - Cally updates
322     Use the newly added API to reimplement focus tracking.
323
324     - Visual Studio project updates
325
326     - Add clutter_text_coords_to_position()
327     This method roundtrips the position_to_coords() one, and allows
328     retrieving the index of the character at the given actor-relative
329     coordinates.
330
331     - Documentation updates.
332
333     - Introspection annotation fixes.
334
335   • List of bugs fixed since Clutter 1.9.10
336
337     [bugzilla.gnome.org]
338     #669730 - actor: Fix and improve add_child_at_index()
339     #669291 - box layout bug when callin the clutter_actor_hide() function
340     #667540 - Desynchronized size between ClutterStageCogl and ClutterStageX11
341     #670433 - clutter-drop-action: annotation fixes for some signals
342     #670402 - CRITICAL warning when ClutterDragAction has threshold > 0
343
344     [bugzilla.clutter-project.org]
345     #2515 - Setting a non-default stage fullscreen before showing it doesn't work
346
347
348 Clutter 1.9.10                                                       2012-02-06
349 ===============================================================================
350
351   • List of changes since Clutter 1.9.8
352
353     - Provide symbolic names for pointer buttons
354     The primary, middle, and secondary pointer buttons now have simple and
355     easy to remember constants that can be used in place of the "magic"
356     numbers.
357
358     - Add ClutterActorIter
359     A simple API, using a stack allocated opaque structure, for safely and
360     efficiently traverse the children of a ClutterActor.
361
362     - Fix regression introduced by the default FixedLayout layout manager
363     Existing ClutterActor subclasses using their own layout management should
364     now work exactly like in Clutter 1.8.
365
366     - Documentation fixes
367     Including introspection annotations fixes.
368
369     - Updates to the Wayland backend
370     The Wayland client backend is now up to date with the 0.85 release of
371     the Wayland protocol.
372
373   • Bugs fixed since Clutter 1.9.8
374
375     [bugzilla.gnome.org]
376     #668692 - Add symbolic names for left, right and middle buttons
377     #668669 - Add iterator API for ClutterActor
378     #667840 - Add annotations from Vala bindings
379     #669360 - clutter-backend-eglnative.h missing in disted tarball
380     #668951 - Fix warnings when weak_unreffing a finalized object
381
382 Many thanks to:
383
384   Rob Bradford, Tristan Van Berkom, Chao-Hsiung Liao, Evan Nemerson,
385   Kerrick Staley, Matej Urbančič
386
387 Clutter 1.9.8                                                        2012-01-24
388 ===============================================================================
389
390   • List of changes since Clutter 1.9.6
391
392     - Fix regressions in users of deprecated API
393     Also, allow to mix the new Actor API with the old Container API without
394     breaking.
395
396     - Add GResource support in ClutterScript
397     GResource is a new infrastructure in GIO that allows to compile resources
398     like UI builder files and image data into a shared library or an
399     executable. A newly added method to ClutterScript makes it possible to
400     load a UI definition from a resource, like it's done for files and
401     data.
402
403     - Update the Wayland client backend
404     The SHM transport API has changed upstream, and the Clutter backend has
405     been updated to reflect it.
406
407 Many thanks to:
408
409   Rob Bradford, Fran Diéguez
410
411 Clutter 1.9.6                                                        2012-01-19
412 ===============================================================================
413
414   • List of changes since Clutter 1.9.4
415
416     - Deprecate clutter_actor_show_all() and clutter_actor_hide_all()
417     The latter never did make a lot of sense: hiding the parent will
418     effectively hide the children as well; the former was there only for
419     convenience, but Actors are visible by default.
420
421     - Gracefully handle existing code
422     The changes in ClutterActor introduced regressions in existing code
423     because of the new functionaly that was introduced to replace deprecated
424     classes like Box and Group. These regressions have hopefully been fixed;
425     Clutter 1.9.6 has been tested with a project as complex as the GNOME
426     Shell.
427
428     - Fix build with binutils-gold
429     The private dependencies were not used when building Clutter, and this
430     made the Gold linker angry.
431
432     - Allow tracking of an actor's first and last child
433     ClutterActor has two new properties, :first-child and :last-child; these
434     are read-only properties that can be used by toolkits based on Clutter
435     to track the first and last child whenever they change.
436
437     - Bump the Cogl dependency
438     The 1.9.4 release depended on Cogl ≥ 1.9.4, but the minimum required
439     version was not bumped along with the changes.
440
441   • List of bugs fixed since Clutter 1.9.4
442
443     [bugzilla.gnome.org]
444     #668137 - FTBFS: pangoft2 check seems to be broken
445
446 Clutter 1.9.4                                                        2012-01-17
447 ===============================================================================
448
449   • List of changes since Clutter 1.9.2
450
451     - New scene graph API in ClutterActor
452     ClutterActor now provides the API for adding, removing, and iterating
453     over the list of children; this deprecates most of the ClutterContainer
454     API. ClutterActor implements ClutterContainer as well, which means that
455     all actors can be containers.
456
457     - Layout management updates
458     ClutterActor now have an horizontal and vertical alignment properties
459     that will be used when added to a parent; a margin has also been added
460     to the ClutterActor class. Both margin and alignment will be automatically
461     managed during the allocation, so they will work out of the box. It is
462     also possible to set a ClutterLayoutManager delegate object on any
463     ClutterActor instance: the LayoutManager will take care of the layout
464     policy for the children of an actor.
465
466     - Add ClutterTextBuffer
467     The ClutterTextBuffer class provides a storage for the contents of
468     a ClutterText actor; the same instance can be shared across different
469     actors as well. The main use for ClutterTextBuffer is implementing
470     secure memory storage for the contents of a ClutterText in password
471     mode.
472
473     - Deprecations
474     ClutterGroup, ClutterBox, and ClutterRectangle have been deprecated; their
475     functionality is now available directly in ClutterActor. The old child
476     actor management API in ClutterActor and ClutterContainer has been
477     deprecated as well. Other deprecations include the ClutterStage
478     fog-related properties and API; the ClutterContainer.sort_depth_order(),
479     raise(), and lower() virtual functions; the internal child push and
480     pop methods on ClutterActor.
481
482     - ClutterTimeline can parse markers from ClutterScript
483     Markers can now be defined inside ClutterScript, and a ClutterTimeline
484     will be able to automatically add them from a UI definition.
485
486     - Add a diagnostic mode
487     Similar to the GLib diagnostic mode, Clutter now supports an environment
488     variable that will print out diagnostic messages for deprecations and
489     warnings that can only be detected at run-time.
490
491     - Wayland backend updates
492     The wayland backend now tracks the latest API changes in the client API,
493     and Clutter now provides a Wayland surface actor that allows to write
494     Wayland compositors, similarly to the X11TexturePixmap actor for the
495     X11 backend.
496
497   • List of bugs fixed since Clutter 1.9.2
498
499     [bugzilla.gnome.org]
500     #665040 - The offscreen effect always recreates the texture if
501               create_texture() is overridden to change the size
502     #665052 - The internal effects should queue a repaint on the effect not
503               on the actor when a property changes
504     #664996 - clutter_state_set_key (allow-none)
505     #664336 - path: Fix introspection annotations
506     #664252 - in case GLSL shader fails to compile clutter-shader-effect.c
507               should print out position in source code
508     #664582 - lookingGlass: Fix global key press handler
509     #660997 - Make _clutter_actor_queue_redraw_with_clip or an equivalent
510               public
511
512 Many thanks to:
513
514   Chun-wei Fan, Robert Bragg, Rob Bradford, Neil Roberts, Bastian Winkler,
515   Fran Diéguez, Jasper St. Pierre, Matej Urbančič, Piotr Drąg,
516   Alexander Shopov, Bastien Nocera, Daniel Mustieles, Jeremy Moles,
517   Jovan Naumovski, Kjartan Maraas, Lucian Adrian Grijincu, Manuel Osdoba,
518   Ryan Lortie
519
520 Clutter 1.9.2                                                        2011-11-22
521 ===============================================================================
522
523   • List of changes since Clutter 1.8
524
525     - Multi-backend build, and run-time backend selection
526     Clutter can be built with support for multiple backends in the same
527     shared library; the backend singleton is determined at run-time,
528     either with the default backend for the platform, or using the value
529     of the CLUTTER_BACKEND environment variable.
530
531     - GDK windowing system backend
532     A new backend has been added, which uses the GDK API for creating the
533     drawing surface, as well as receiving the windowing system and input
534     events.
535
536     - Show a hint when ClutterText is in password mode
537     If the password-hint-time ClutterSettings property is set to a non
538     zero value, the last character entered inside a ClutterText actor when
539     in password mode will be shown in plain for the duration of the timeout,
540     before being replaced by the glyph chosen as the password character.
541
542     - Improve Windows build support
543     Clutter now provides project files to build the library using Visual
544     Studio 9 and Visual Studio 10. Also, the scripts to build Clutter using
545     MinGW have been improved.
546
547     - Remove the requirement for using clutter_threads_init()
548     Threads are initialized by default (depending on the platform), so there
549     is no need to call clutter_threads_init().
550
551     - Deprecate the default ClutterStage
552     The semantics of the default Stage were not obvious, and had the tendency
553     to confuse the user.
554
555     - Move the deprecated headers into their own directory
556     This should help developers identify the deprecated API.
557
558     - Change deprecation policy
559     Deprecated functions are now marked using compiler annotations, instead
560     of being forcibly disabled through pre-processor directives from the
561     headers. Deprecations will cause compiler warnings, and thus are enabled
562     by default. If you're building your project with compiler flags that
563     consider every warning a fatal error, you can use the symbol
564     CLUTTER_DISABLE_DEPRECATION_WARNINGS to disable the deprecation warnings.
565
566     - Translation updates
567     Portuguese, Assamese, Punjabi, Tamil, Oriya, Telugu, French, German,
568     Danish, Traditional Chinese (Hong Kong and Taiwan), Catalan, Esperanto,
569     Lithuanian, Galician, Norwegian bokmål, Slovenian, Hebrew, Bulgarian.
570
571   • List of bugs fixed since Clutter 1.8
572
573     652588 - add support for password hint in ClutterText
574     659625 - mingw32: Update the build script to compile 1.8.0
575     659601 - offscreen effects on children of containers also with an
576              offscreen effect get a wrong viewport
577     659928 - Two strings are not marked as translatable
578     659893 - clutter-main: Reword translator comment for default:LTR
579     656663 - Remove internal usage of ClutterGeometry in StageWindow
580     660354 - Add paint-deform-tiles option to CLUTTER_DEBUG
581     660471 - ClutterActor: Add clutter_actor_has_effects
582     660512 - ClutterShaderEffect recompiles the shader for every instance
583     660623 - clutter-actor-meta: Fix _clutter_meta_group_has_metas_no_internal
584     660985 - memory leak in clutter_box_layout.c
585     661015 - Add clutter_unicode_to_keyval function
586     660786 - Deprecate clutter_[sg]et_font_flags()
587     661887 - auto-resize of ClutterCairoTexture does not work correctly
588     657434 - Add a GDK backend to Clutter
589     663332 - orca reads my password in gnome-shell policykit dialogs
590     663594 - Minor whitespace parsing bug in clutter_color_from_string
591     663733 - clutter-stage-x11: Make sure to set geometry x and y
592     651718 - Make tests work on platforms supporting only a single stage
593     663999 - The removal of per-backend CLUTTER_VBLANK envvar had unwanted
594              cruft in the Win32 backend
595     663720 - DeformEffect: Avoid redrawing actors on vertices invalidation
596     663636 - Use newer Cogl API in ClutterDeformEffect
597
598 Special thanks to
599
600   Chun-wei Fan, for building, testing, and keeping up to date the Visual
601   Studio project files.
602
603 Many thanks to:
604
605   Neil Roberts, Rico Tzschichholz, Robert Bragg, Adel Gadllah,
606   Lionel Landwerlin, Alexandre Franke, Colin Walters, Daniel Mustieles,
607   Giovanni Campagna, Piotr Drąg, krishnababu k, A S Alam, Alexander Shopov,
608   Algimantas Margevičius, Ask H. Larsen, Bruno Brouard, Carles Ferrando,
609   Chao-Hsiung Liao, Craig R. Hughes, Damien Lespiau, Duarte Loreto,
610   Florian Müllner, Fran Dieguez, Fran Diéguez, Håkon Løvdal, I Felix,
611   Jasper St. Pierre, Jorge González, Joseph Scheuhammer, Kjartan Maraas,
612   Kristjan SCHMIDT, Manoj Kumar Giri, Marc-André Lureau, Mario Blättermann,
613   Matej Urbančič, Matthias Clasen, Nilamdyuti Goswami, Sunjin Yang,
614   Tomeu Vizoso, Yaron Shahrabani, Zan Dobersek, Мирослав Николић.
615
616 Clutter 1.7.90                                                       2011-09-12
617 ===============================================================================
618
619   • List of changes since Clutter 1.7.14
620
621     - Make sure that setting :use-markup does not depend on the order
622     Setting the :use-markup property should yield the same results regardless
623     of whether the :text property is also set before or after. This applies to
624     ClutterText defined using ClutterScript as well.
625
626     - Protect against multiple unrealize call on ClutterStage
627     This should fix a segmentation fault in clutter-gtk when unrealize() is
628     called multiple times on an already unrealized stage.
629
630     - Fortify ATK event listener
631     Make sure that we subscribe only to the events we want to, and avoid
632     warnings caused by AT-SPI, as well as a leak.
633
634     - Documentation fixes
635
636     - Translation updates
637     Indonesian, British English, Brazilian Portuguese, Oriya, Polish,
638     Latvian, Hindi, Danish, Chinese (Simplified), Lithuanian, Turkish,
639     Russian, Spanish, Asturian.
640
641   • List of bugs fixed since Clutter 1.7.14
642
643     [bugzilla.gnome.org]
644
645     #651940 - "use-markup" is ignored when set after "text"
646     #658721 - cally: Fix up event listener registration minimally
647
648     [bugzilla.clutter-project.org]
649
650     #2629 - ClutterText thinks priv->text can be NULL, but it can't
651
652 Many thanks to:
653
654   Muhammet Kara, Andika Triwidada, Manoj Kumar Giri, Piotr Drąg,
655   Aurimas Černius, Bruce Cowan, Edvaldo de Souza Cruz, Jorge González,
656   Kenneth Nielsen, Matthias Clasen, Neil Roberts, Og B. Maciel,
657   Rajesh Ranjan, Ray Wang, Rudolfs Mazurs, Xandru Armesto, Yuri Myasoedov
658
659 Clutter 1.7.14                                                       2011-09-05
660 ===============================================================================
661
662   • List of changes since Clutter 1.7.12
663
664     - Use newer version of ATK
665     Cally now depends on the latest version of ATK, to reduce the amount of
666     ad hoc code needed and to use newer features that simplify the
667     implementation of accessible objects in Clutter.
668
669     - Allow using Layout Managers with generic containers
670     Layout managers should not assume that they are allocating the whole
671     area available from the Actor using them; this allows actors that
672     support concepts like padding or margin to use a LayoutManager internally
673     for its children.
674
675     - Cookbook updates
676     Add a recipe on how to bind a ClutterState to the signals of objects
677     defined in ClutterScript. We also install the cookbook examples inside
678     the $datadir/clutter-1.0/cookbook/examples directory.
679
680     - Improve examples in the API reference
681     Some of the interactive test suite units are actually good examples of
682     how to use the Clutter API; we can use the XInclude tags to include the
683     source code inside the API reference.
684
685     - Ensure thread safety of the repaint functions add/removal
686     Fix a long standing issue where adding or removing repaint functions
687     was not acquiring a lock; now it's safe to manipulate the repaint
688     functions list from different threads.
689
690     - Make the ClutterText:line-wrap property work again
691     In 1.2 the :line-wrap property was broken, and ClutterText would paint
692     a PangoLayout wrapping until it fit the height of the allocation
693     regardless of whether the :line-wrap property was set to FALSE or
694     TRUE. Now we clip the PangoLayout before rendering it, if the :line-wrap
695     property is set to FALSE and there is no ellipsization policy set.
696
697     - Disable redirection to offscreen buffer by default
698     Whenever a ClutterActor with children was not fully opaque, the actor
699     was redirected to an FBO, to perform correct opacity computations.
700     Sadly, this can lead to 3x slowdowns, given the amount of framebuffer
701     objects created and the state changes that have to be performed. We
702     decided to turn off this feature by default, to avoid the performance
703     hit. It is still possible to enable this feature on a per-actor basis,
704     though, and will work to reduce the hit in future versions of Cogl,
705     Clutter and the drivers.
706
707   • List of bugs fixed since Clutter 1.7.12
708
709     [bugzilla.gnome.org]
710
711     #657681 - Crash when destroying an actor while dragging it
712
713     [bugzilla.clutter-project.org]
714
715     #2339 - ClutterText in 1.4 line-wraps even if line-wrap is disabled
716
717 Many thanks to:
718
719   Alejandro Piñeiro, Shankar Prasad, Chao-Hsiung Liao, Dan Winship,
720   Daniel Mustieles, Daniel Nylander, Fran Dieguez, Marek Černocký,
721   Robert Bragg
722
723 Clutter 1.7.12                                                       2011-08-29
724 ===============================================================================
725
726   • List of changes since Clutter 1.7.10
727
728     - Reload the font caches on X11 when the user installs a new font
729     Whenever the user installs a new font inside one of the directories that
730     ware being watched by a session daemon, or changes the fontconfig
731     configuration, the toolkits using FontConfig (either directly or indirectly
732     e.g. through Pango, like Clutter) should listen to the Fontconfig/Timestamp
733     XSETTINGS key and release all the font configuration caches. This allows
734     selecting the newly installed fonts without requiring the user to restart
735     the application.
736
737     - Allow using "font-description" as a ClutterScript alias for "font-name"
738     ClutterText:font-description allows passing a PangoFontDescription
739     directly to a ClutterText; when defining a ClutterText instance inside a
740     ClutterScript file, :font-description should be an alias for :font-name,
741     which takes a string and converts it to a PangoFontDescription.
742
743     - Make sure that LayoutManager subclasses take the allocation origin
744       into account when allocating the children
745     A LayoutManager should be resilient against allocations with an origin
746     not positioned at (0, 0); this allows actors using a layout manager
747     instance to munge the box and implement things like margin and padding
748     without the layout manager having knowledge of those concepts.
749
750     - Build fixes
751     Always link against libm when building Clutter (and its tests); don't
752     rely on libraries lower on the stack to do so.
753
754     - Documentation fixes
755
756   • List of bugs fixed since Clutter 1.7.10
757
758   [bugzilla.gnome.org]
759
760   #657529 - Build failure
761
762 Many thanks to:
763
764   Robert Bragg, Daniel Mustieles, Fran Dieguez, Kjartan Maraas
765
766 Clutter 1.7.10                                                       2011-08-15
767 ===============================================================================
768
769   • List of changes since Clutter 1.7.8
770
771     - Do not update the last paint volume when picking
772     Last minute fix for an issue that was most prominently manifesting itself
773     when using GNOME Shell with Clutter 1.7; this should resolve the issue
774     that dragging icons from the dash left around some stale pixels.
775
776     - Fix building the tests
777     The performance and micro-benchmark tests did not pick up changes in
778     local dependencies, e.g. under a JHBuild root.
779
780   • List of bugs fixed since Clutter 1.7.8
781
782     [bugzilla.gnome.org]
783
784     #656588 - Outdated FSF Address in code files
785
786 Many thanks to:
787
788   Alejandro Piñeiro, Robert Bragg
789
790 Clutter 1.7.8                                                        2011-08-15
791 ===============================================================================
792
793   • List of changes since Clutter 1.7.6
794
795     - Various fixes in Cally
796     Make sure to use Clutter's API and remove old workarounds that were put
797     into place when Cally was a separate project and targeting pre-1.0 API
798     versions of Clutter.
799
800     - Add ClutterCairoTexture:auto-resize
801     This property makes it easier to create 2D canvas surfaces by tracking
802     the actor's allocation in a backward compatible way.
803
804     - Add ClutterAnimatable.interpolate_value()
805     This new virtual function deprecates the animate_property() virtual of the
806     Animatable interface, which was sub-optimal in different ways.
807
808     - Allow using Animatable implementations with ClutterState
809     Thanks to the new interpolate_value() virtual it is now possible to use
810     the Animatable interface with ClutterState; this allows animating
811     action, constraint and effect properties using the same "@" syntax also
812     used by ClutterAnimation and clutter_actor_animate().
813
814     - Improve ClutterModel's implementation
815     Avoid a bunch of needless checks, and make sure that the ::row-changed
816     signal is emitted in all cases when a row has been changed through the
817     ClutterModelIter API. The conformance test unit for ClutterModel has
818     also been improved to avoid future regressions.
819
820     - Improve ClutterStage behaviour on OS X
821     Make sure that the fullscreen, multi-screen and key focusing are
822     well-behaved on OS X, by implementing the correct delegate methods.
823
824   • List of bugs fixed since Clutter 1.7.6
825
826   [bugzilla.gnome.org]
827
828   #655387 - Missing GObject introspection annotations
829   #655306 - Added windowDidChangeScreen delegate to fix pick errors when
830             window moved to different screen
831   #655311 - Prevent hiding of unrelated application windows when stage returns
832             from fullscreen
833   #655307 - Fix resource leak on subsequent calls to clutter_stage_osx_realize
834   #648633 - gnome-shell notification pop-ups do not emit
835             object:state-changed:showing
836
837 Many thanks to:
838
839   Kirk A. Baker, Neil Roberts, Alejandro Piñeiro, Alejo Pacin,
840   Daniel Mustieles, Evan Nemerson, Marek Černocký, Philippe Normand,
841   Robert Bragg
842
843
844 Clutter 1.7.6                                                        2011-07-26
845 ===============================================================================
846
847   • List of changes since Clutter 1.7.4
848
849     - Accessibility fixes in Cally
850     Fix the implementation of the AtkText interface for ClutterText.
851
852     - Depend on the new Cogl windowing system API.
853
854     - Add functions for retrieving the clip boundaries on the Stage
855     The clutter_stage_get_redraw_clip_bounds() function is useful for
856     window managers (like Mutter) that need to retrieve the clipped
857     region used on the Stage.
858
859     - Auto-detect the default flavour when building
860     The default flavour used when building should be set depending
861     on the platform.
862
863     - Mark the OSX backend as non-experimental
864     The OSX backend is being developed, and maintained, so it should
865     not be considered experimental.
866
867     - Make sure that Gestures are cancelled when missing release events
868
869     - Correct the rounding for paint volumes
870     Try to provide stable results against potential floating point rounding
871     margins when projecting 3D paint volumes into screen bounding boxes;
872     this should avoid re-creating FBOs and always correctly handle clipped
873     redraws.
874
875     - Do not clobber XI2 events data
876     This allows to play along with other toolkits using XI2.
877
878     - Fix ClutterSnapConstraint's right edge snapping
879
880     - Deprecations
881     ClutterScore, clutter_texture_new_from_actor(),
882     clutter_cairo_texture_create*()
883
884   • List of bugs fixed since Clutter 1.7.4
885
886     [bugzilla.gnome.org]
887
888     #653959 - clutter-actor: Don't apply shaders during picking
889     #654361 - uprof: Rename timers to remove the EGL specific bits
890     #654363 - uprof: Add the units in the name of the "Per Frame"
891               timer attribute
892     #654103 - Fixed typo
893     #654656 - Improve XGenericEventCookie allocation wrt other toolkits
894     #654024 - snap-constraint: Fix allocation for CLUTTER_SNAP_EDGE_RIGHT
895     #654066 - ClutterTimeline new-frame signal not working correctly on
896               some platforms
897     #654718 - clutter-1.6.16 compile issues
898     #654726 - text: Fix the default value of "editable"
899     #654727 - alpha: Don't use the GClosure to compute the alpha when
900               possible
901     #655342 - memory leak in clutter_bin_layout_get_preferred_width/height
902
903     [bugzilla.clutter-project.org]
904
905     #1733 - AtkText implementation on CallyText is not complete
906     #2421 - Way to get current repaint bounds
907
908 Many thanks to:
909
910   Robert Bragg, Philippe Normand, Neil Roberts, Damien Lespiau, Tomeu Vizoso,
911   Gil Forcada, Alejandro Piñeiro, Bastian Winkler, Carlos Garnacho,
912   Christian Kirbach, Daniel Mustieles, Dinh Bowman, Kjartan Maraas,
913   Marek Černocký, Mario Blättermann, Matej Urbančič, Piotr Drąg
914
915 Clutter 1.7.4                                                        2011-07-04
916 ===============================================================================
917
918   • List of changes since Clutter 1.7.2
919
920     - Unify the GLX and EGL backends to be a single code base
921     The GLX and EGL backends shared most of their code, and with the split
922     out Cogl, we can unify the code base into a single backend. The API as
923     well as the ABI are preserved.
924
925     - Restore a wider range of Z values for actors
926     The computation for the near and far planes given the perspective
927     transformation used to set up the viewport was broken in 1.7.2, and
928     the distance from the focal point was greatly reduced. This has now
929     been fixed.
930
931     - Bump up the dependency of Cogl
932     New windowing system API in Cogl required bumping the minimum version
933     to the latest development snapshot, 1.7.2.
934
935     - Add ClutterDropAction
936     The ClutterDropAction is an action for allowing ClutterActors to react
937     when an actor being dragged through ClutterDragAction crosses, or is
938     dropped over, them.
939
940     - Add a performance test suite
941     This suite is an addition to our conformance and interactive test
942     suites; the infrastructure can be used by buildbots and report tools
943     to track performance regressions across various commits.
944
945     - Documentation and annotation fixes
946
947     - Build fixes
948
949   • List of bug fixes since Clutter 1.7.2
950
951     [bugzilla.gnome.org]
952
953     #650329 - ClutterModifierType: Port fix from GDK to clutter's GDK copy
954     #652566 - Clutter-CRITICAL **: _clutter_stage_get_window: assertion
955               `CLUTTER_IS_STAGE (stage)' failed
956     #651784 - transition=spin / transition=spin-text is broken in pinpoint
957               with Clutter master
958     #652842 - Add a Drop action
959     #653066 - ClutterDragAction does not support multiple pointers
960     #653307 - Change the signature of ClutterTexture::load-finished to give
961               a GError, instead of a gpointer
962     #653607 - Arrays not annotated as such for introspection bindings
963     #651079 - ClutterText "blinks" when deleting text after going out of
964               bounds
965     #650675 - clutter-media: mention the asynchronous behavior of
966               set_playing()
967
968     [buzgilla.clutter-project.org]
969
970     #2625 - The furthest visible z value is really low
971
972 Many thanks to:
973
974   Robert Bragg, Neil Roberts, Peter Ward, Colin Walters, Daniel Mustieles,
975   Jasper St. Pierre, Samuel Degrande, Øyvind Kolås
976
977 Clutter 1.7.2                                                        2011-06-13
978 ===============================================================================
979
980   • List of changes since Clutter 1.6.0
981
982     - Cogl moved out of tree
983     The Clutter OpenGL abstraction library has been moved to a separate
984     repository and can be used as a stand-alone shared library. Clutter
985     has been modified to depend on Cogl's experimental API.
986
987     - Correctly composite non fully opaque children
988     Non fully opauqe actors with non fully opaque children will automatically
989     redirect children paint operations to offscreen buffers, which allow
990     correct composition taking into account the overall opacity of the scene's
991     sub-graph. The same mechanism can be used to create a paint cache, and
992     paint that cache when the actor or its children do not change, instead of
993     painting the whole sub-graph again.
994
995     - Allow connecting signals to ClutterState states in ClutterScript
996     When defining a scene using ClutterScript it's possible to directly
997     connect a state inside a ClutterState object (both defined in
998     ClutterScript or in code) to an object's signal, without using an
999     explicit signal handler in the code.
1000
1001     - Long-press handling in ClutterClickAction
1002     ClutterClickAction will detect a long-press gesture and emit signals
1003     to query, activation and cancellation.
1004
1005     - Added ClutterGestureAction and ClutterSwipeAction
1006     ClutterGestureAction is a generic "pointer gesture" action; it doesn't
1007     provide an implementation: it's up to the developer to add the gesture
1008     recognition code. ClutterSwipeAction is a GestureAction sub-class that
1009     implement the "swipe" gesture. The GestureAction API is already future
1010     proof for multi-device/multi-touch, even though the multi-touch isn't
1011     currently implemented.
1012
1013     - Allow Effects to influence picking
1014     Effects that change the geometry of a ClutterActor should also be
1015     allowed to change the picking code to make sure that event handling
1016     keeps working. ClutterEffect has a new pick() virtual function for
1017     these cases.
1018
1019   • List of bugs fixes since Clutter 1.6.0
1020
1021     [bugzilla.clutter-project.org]
1022     #2257 - clutter fails to link on OS X (10.6)
1023     #2447 - atkevents example crashes is the accessibility is disabled
1024     #2482 - Cally should avoid to provide a default name and description
1025     #2484 - It would be nice to have the old cally Changelog
1026     #2553 - new ClutterText API to access the Pango layout offsets
1027     #2555 - Per-framebuffer journal causes corruptions
1028     #2562 - Crash upon running Clutter-based programs
1029     #2585 - add ClutterAction for slide gestures
1030     #2588 - Assertion failure in _cogl_pipeline_set_layer_texture_target
1031     #2595 - clutter-text: Add a selected-text-color
1032     #2597 - CallyStage doesn't have a proper parent
1033     #2599 - The paint volume for ClutterText is wrong
1034     #2602 - Expose events ignored when doing clipped redraws
1035     #2610 - Add recipe about implementing a ClutterEffect
1036     #2619 - Removes the addition of the .exe extension to unit-test scripts,
1037             on win32.
1038     #2620 - _cogl_offscreen_new_to_texture_full() leaks reference when failing
1039     #2621 - Clutter segfaults if you queue a redraw of an unmapped actor inside
1040             the notify::mapped callback
1041     #2631 - [PATCH] Enable evdev ClutterInputDevice objects on creation, as the
1042             other backends do
1043     #2632 - [PATCH] GL_IMG_TEXTURE_NPOT enables non-power-of-two features
1044     #2633 - Make the pick id pool a per-Stage resource
1045     #2640 - [patch] allow single-bit imprecision in some conformance tests
1046     #2644 - Quartz backend: "Bare" modifier keypresses not generating events
1047     #2652 - clutter_actor_queue_redraw() on destroyed stage
1048     #2655 - segfault when disposing a slave device without a master
1049     #2656 - Clutter can crash when destroying a stage from an event
1050     #2667 - git head won't build under Win32
1051
1052     [bugzilla.gnome.org]
1053     #650665 - CallyActor shouldn't add by default "press", "release"
1054               and "click"
1055     #647875 - Use Cairo to dump the pick buffers
1056     #647876 - Make the pick if pool a per-Stage resource
1057     #650487 - Sync allocation in ClutterBoxLayout with the one in GtkBox
1058     #650597 - clutter-id-pool: fix warning on bad pick
1059     #650650 - clutter-offscreen-effect: use target size when setting up
1060               the viewport
1061     #651700 - Give a chance to effects for running when picking
1062     #652129 - Use "const" instead of G_CONST_RETURN
1063
1064 Many thanks to:
1065
1066   Neil Roberts, Robert Bragg, nobled, Daniel Mustieles, Elliot Smith,
1067   Matej Urbančič, Alejandro Piñeiro, Chris Lord, Marek Černocký,
1068   Tomeu Vizoso, Jasper St. Pierre, James Athey, Piotr Drąg, Øyvind Kolås,
1069   Adam Jackson, Andrej Žnidaršič, Kjartan Maraas, Adel Gadllah,
1070   Alexandre Franke, Christian Kirbach, Craig R. Hughes, Dan Winship,
1071   Dioselin, Kristjan SCHMIDT, Mario Blättermann, Miguel Bouzada, Peter Ward,
1072   Philippe Normand, Samuel Degrande, Viatcheslav Gachkaylo
1073
1074 Clutter 1.6.6                                                        2011-02-21
1075 ===============================================================================
1076
1077   • List of changes since Clutter 1.6.4
1078
1079     » Add four mechanisms for migrating textures inside a Cogl atlas; it
1080       is possible to change the default by using the environment variable
1081       COGL_ATLAS_DEFAULT_BLIT_MODE.
1082
1083     » Use the offscreen buffer size to compute the vertices of
1084       ClutterDeformEffect.
1085
1086     » Make the FPS counter displayed using CLUTTER_SHOW_FPS per-stage.
1087
1088     » Documentation fixes.
1089
1090     » Annotation fixes for introspection.
1091
1092   • List of bugs fixes since Clutter 1.6.4
1093
1094     #2538 - crash in gnome-shell
1095     #2558 - backend-glx: Remove redundant glFlush()
1096     #2561 - Updates to COGL sources regarding non-standard code usage
1097     #2571 - DeformEffect should use the FBO size
1098
1099 Many thanks to:
1100
1101   Neil Roberts
1102
1103 Clutter 1.6.4                                                        2011-02-14
1104 ===============================================================================
1105
1106   • List of changes since Clutter 1.6.2
1107
1108     » Fix handling of opacity in ClutterOffscreenEffect.
1109
1110     » Fix partially off-stage actors in ClutterOffscreenEffect.
1111
1112     » Add a recipe in the Cookbook for animating an actor on a path.
1113
1114     » Refresh key mapping when notified by X11.
1115
1116     » Clean up the ClutterStageWindow redraw implementations.
1117
1118     » Update the Wayland backend to match upstream API changes:
1119       • allow using shared buffers if DRM fails;
1120       • improve checks for the required extensions.
1121
1122     » Documentation fixes.
1123
1124     » Introspection annotations fixes.
1125
1126     » Fix setting the matrix for a pipeline layer.
1127
1128     » Fix flushing the framebuffer when switching to it.
1129
1130     » Make sure to call glFlush when blitting a stage region to the
1131       front buffer, to avoid the driver batching the command for an
1132       undefined amount of time.
1133
1134     » Fix the windowing system defines for non-X11 platforms.
1135
1136     » Fix the location of the shared objects in the Cally pkg-config
1137       file.
1138
1139   • List of bugs fixed since Clutter 1.6.2
1140
1141     #1024 - test-multistage.c assertion failure
1142     #1025 - test-paint-wrapper.c assertion failure
1143     #1028 - test-random-text.c hangs with spinning beach ball
1144     #1029 - test-cogl-primitives.c hangs with spinning beach ball
1145     #1358 - scroll events not handled
1146     #2373 - OSX Backend fix
1147     #2525 - [PATCH] x11: Handle key map changes
1148     #2541 - ClutterOffscreenEffect with multiply the actor's opacity
1149     #2546 - [PATCH, git branch] update wayland backend
1150     #2549 - Fix lib locations in *.pc.in
1151     #2550 - offscreen effects are always clipped to stage boundaries
1152     #2551 - Slight drawing lag with larger windows on Intel x3100 (i965)
1153     #2554 - Add recipe per animating an actor on a curved path
1154     #2555 - Per-framebuffer journal causes corruptions
1155     #2558 - backend-glx: Remove redundant glFlush()
1156     #2559 - x11: segfault on closing non-default stage window
1157
1158 Many thanks to:
1159
1160   nobled, Chris Lord, Neil Roberts, Robert Bragg, Adel Gadllah, Elliot Smith
1161
1162 Clutter 1.6.2                                                        2011-02-07
1163 ===============================================================================
1164
1165   • List of changes since Clutter 1.6.0
1166
1167     » Fix building the Clutter Cookbook from the released tarballs.
1168
1169     » Set the input device field in ClutterEvent even when they
1170       have been allocated by Clutter.
1171
1172     » Fix the color comparison when setting the layer combine constant.
1173
1174     » Fix memory corruption when removing the last reference on a
1175       Cogl vertex buffer object.
1176
1177     » Fixes for the OSX backend.
1178
1179   • List of bugs fixed since Clutter 1.6.0
1180
1181     #2540 - coobook examples do not build from tarball
1182     #2544 - Using vertex buffers causes memory corruption when you unref
1183             the CoglHandle
1184     #2545 - Broken event handling in OS X backend
1185     #2549 - Fix lib locations in *.pc.in
1186
1187 Many thanks to:
1188
1189   Neil Roberts, Viatcheslav Gachkaylo
1190
1191 Clutter 1.6.0                                                        2011-01-31
1192 ===============================================================================
1193
1194   • List of changes since Clutter 1.5.14
1195
1196     » Remove more private symbols from the X11 backend.
1197
1198     » Add CLUTTER_BIND_POSITION and CLUTTER_BIND_SIZE values to the
1199       ClutterBindCoordinate enumeration; these are short-hand values
1200       for binding both X and Y, or width and height, instead of
1201       requiring two ClutterBindConstraint instances.
1202
1203     » Clean up in the X11 backend to reduce indirection.
1204
1205     » Small clean ups in the Win32 backend.
1206
1207     » Make Shift+Backspace behave like Backspace in ClutterText.
1208
1209     » Emit the ::new-frame signal even on the first frame of
1210       ClutterTimeline, to allow setting up the initial state of an
1211       animation.
1212
1213     » Fix an invalid memory access in ClutterAnimator.
1214
1215     » Flush the per-framebuffer journal when switching between
1216       framebuffers.
1217
1218     » Generalize updating GLES2 uniforms.
1219
1220     » Add debug code for tracing clipping in Cogl.
1221
1222     » Improve the OSX event loop, re-using the same implementation
1223       as GDK. Also, provide simple, core-like device support.
1224
1225   • Bugs fixed since Clutter 1.5.14
1226
1227     #2490 - OS X backend event loop improved
1228     #2530 - animator: Animator uses key after freeing it
1229     #2534 - Incorrect description of function 'clutter_actor_pop_internal'
1230     #2535 - Add recipe about creating a composite actor
1231
1232 Many thanks to:
1233
1234   Neil Roberts, Robert Bragg, Elliot Smith, Rob Bradford,
1235   Viatcheslav Gachkaylo
1236
1237 Clutter 1.5.14                                                       2011-01-24
1238 ===============================================================================
1239
1240   • List of changes since Clutter 1.5.12
1241
1242     » Allow getting the state modifiers from a ClutterClickAction.
1243
1244     » Fix ClutterDragAction to never leave the event delivery in
1245       an unwanted state.
1246
1247     » Optimize state changes for texture and data states.
1248
1249     » Enable VBO support in Cogl for GLES2.
1250
1251     » Fix compilation on GLES1.1.
1252
1253     » Documentation fixes.
1254
1255     » ClutterGLXTexturePixmap has been deprecated; its parent class
1256       ClutterX11TexturePixmap and the low level CoglTexturePixmapX11
1257       API provide access to the same features.
1258
1259     » Be more resilient against timelines controlling the state of
1260       other timelines during the clock tick.
1261
1262     » Provide defines for the windowing platforms, to allow portable
1263       applications to include the correct header and select the
1264       correct API depending on the target.
1265
1266     » Introduce a fast path for cogl_read_pixels() that uses the journal
1267       to determine the position of a single pixel on the stage; this
1268       fast path gracefully degrades to the usual render-based approach,
1269       and should speed up picking considerably in the case of opaque
1270       quads batched together.
1271
1272     » Support XInput axis data on valuator devices, and introduce XInput2
1273       support for event translation and device hotplugging. The support
1274       for XI and XI2 must still be explicitly enabled by the developer,
1275       but it is now compiled in by default. It can be disabled at compile
1276       time by passing --disable-xinput to the configure script.
1277
1278     » Clean up the unintentionally leaked internal symbols in the X11
1279       and GLX backends.
1280
1281     » Allow defining the contents of the rows of a ListModel using
1282       ClutterScript. This completes the ability to fully define a
1283       ClutterListModel inside a UI definition file.
1284
1285   • Bugs fixed since Clutter 1.5.12
1286
1287     #1422, key input handler for eglnative
1288     #1456, Hinting mishandling
1289     #1721, XInput2 support
1290     #2268, EGL backend dependent on X11 headers
1291     #2400, Don't enable GL_POINT_SPRITE on GLES
1292     #2497, should not throw away a program when just the texture
1293            object has changed
1294     #2512, shader: Don't notify properties when finalizing shaders
1295     #2513, script-parser: Also honor properties of type GType
1296     #2516, [PATCH] Fails to compile with --with-gles=1.1
1297     #2518, introspection: Add missing (out) annotations for get_color()
1298     #2520, Add API to get modifier type in ClutterClickAction
1299     #2522, ClutterDragAction might indefinitely disable motion events
1300     #2524, It's possible to receive a new-frame signal after stopping
1301            a timeline
1302     #2526, model: Fix some GObject-Introspection annotations
1303     #2527, model: Change the column argument type to gint for
1304            clutter_model_set_sort
1305     #2528, model: Add support to define rows in ClutterScript
1306
1307 Many thanks to:
1308
1309   Robert Bragg, Neil Roberts, Bastian Winkler, Lucas Rocha, Adel Gadllah,
1310   Chris Lord, Damien Lespiau
1311
1312 Clutter 1.5.12                                                       2011-01-11
1313 ===============================================================================
1314
1315   • List of changes since Clutter 1.5.10
1316
1317     » Allow disabling the focus when showing a ClutterStage; this also
1318       makes Clutter more compliant to the X11 window manager
1319       specifications.
1320
1321     » Avoid state corruption in relayout cycles.
1322
1323     » Do not crash when destroying actors during CLUTTER_LEAVE events.
1324
1325     » Remove signal handlers when disposing constraints.
1326
1327     » Keep the pixel alignment for ClutterAlignConstraint.
1328
1329     » Do not release compiled ClutterShader during their finalization to
1330       avoid a warning.
1331
1332     » Revert an ABI break on the ClutterContainer pre-requisites.
1333
1334     » Fix the name of the cogl_normal_in attribute.
1335
1336     » Do not assume CoglBitmaps are allocated to height * rowstride.
1337
1338     » Fix the core device list creation on X11.
1339
1340     » Avoid enabling blending in the Cogl journal, if possible.
1341
1342     » Documentation fixes.
1343
1344     » Build fixes for mixed autotools version environment.
1345
1346     » Improve the performance of getting the number of rows of a
1347       ClutterListModel.
1348
1349     » Don't use obsolete API internally.
1350
1351     » Build fix for compiling EGL backend with OpenGL under X11.
1352
1353     » Parse GType object properties in ClutterScript.
1354
1355 Many thanks to:
1356
1357   Neil Roberts, Johan Bilien, nobled, Adel Gadllah, Damien Lespiau,
1358   Kristian Høgsberg, Nguyễn Thái Ngọc Duy, Tomeu Vizoso, Bastian Winkler
1359
1360 Clutter 1.5.10                                                       2010-12-17
1361 ===============================================================================
1362
1363   • List of changes since Clutter 1.5.8
1364
1365     » Add an evdev input backend; this adds support for input devices
1366       on Linux when using the EGL-based backends.
1367
1368     » Update the build scripts for compiling the Windows backend.
1369
1370     » Updates for the Cookbook and the API references.
1371
1372     » Fix ClutterModel::get_iter_at_row() for filtered ClutterListModels.
1373
1374     » Scores of fixes to the pipeline state object for GLES2.
1375
1376     » Add code that tries to perform manual clipping to avoid breaking
1377       up batches of primitives.
1378
1379     » Keep a cache of ARBfp programs indexed by the pipeline state that
1380       led to their generation.
1381
1382     » Accept G_TYPE_DOUBLE values in ClutterShaderEffect uniforms.
1383
1384     » Update the Wayland client backend.
1385
1386     » Update the build for Windows.
1387
1388     » Rename the ClutterTimeline:reverse property introduced in
1389       Clutter 1.5.6 to ClutterTimeline:auto-reverse.
1390
1391     » Clean up the interactive tests suite.
1392
1393 Many thanks to:
1394
1395   Neil Roberts, Damien Lespiau, Robert Bragg, Elliot Smith,
1396   Jussi Kukkonen, nobled, Alexandre Quessy, Mike Owens,
1397   Tomeu Vizoso
1398
1399 Clutter 1.5.8                                                        2010-11-29
1400 ===============================================================================
1401
1402   • List of changes since Clutter 1.5.6
1403
1404     » Add a migration guide for code using Behaviours.
1405
1406     » Allow parsing rgb(), rgba(), hls() and hlsa() color definitions.
1407
1408     » Performance improvements for the ClutterX11TexturePixmap.
1409
1410     » For caching purposes, do not discard the Material or the compiled
1411       shaders for Offscreen and Shader effects.
1412
1413     » Fix image height in 3D Cogl textures.
1414
1415     » Create a GLSL generation backend for materials, similar to the
1416       ARBfp one; this backend is the default for GLES2.
1417
1418     » Use FBOs and cogl_read_pixels() to efficiently read back partial
1419       texture data.
1420
1421     » Various fixes in paint volumes computation and caching.
1422
1423     » Use the internal scene graph walk API to remove the map/unmap
1424       implementation requirement for composite actors and for
1425       containers with internal children.
1426
1427     » Simplify the backend notification of layer changes.
1428
1429     » Queue clipped redraws for Expose events on X11.
1430
1431     » Plug leaks.
1432
1433     » Include a porting guide from Behaviours.
1434
1435     » Add a recipe on scaling animations in the Cookbook.
1436
1437 Many thanks to:
1438
1439   Neil Roberts, Robert Bragg, Owen W. Taylor, Tomeu Vizoso, Chris Lord,
1440   Alexandre Quessy, Evan Nemerson, Elliot Smith
1441
1442 Clutter 1.5.6                                                        2010-11-19
1443 ===============================================================================
1444
1445   • List of changes since Clutter 1.5.4
1446
1447     » Deprecate ClutterBehaviour and its sub-classes: the same functionality
1448       is available using the animation framework.
1449
1450     » Add ClutterSnapConstraint, a constraint implementation that snaps
1451       together the edges of two actors.
1452
1453     » Add ClutterPathConstraint::node-reached.
1454
1455     » Deprecate ClutterTimeoutPool and ClutterFrameSource: this API is
1456       not used internally any more, and since it's not integrated with
1457       the master clock it's of relative use.
1458
1459     » Add a named, global color palette.
1460
1461     » Add the ClutterTimeline:reverse property, for automatically
1462       reversing the direction of a timeline after the emission of
1463       the ::completed signal.
1464
1465     » Performance improvements in the clip stack.
1466
1467     » Do not use pointer grabs in ClutterClickAction.
1468
1469     » Improve the internally used Cogl API for primitives, paths and
1470       buffers; this is the first step towards Cogl 2.0.
1471
1472     » Allow using the COGL_DEBUG environment variable to disable the
1473       NPOTs support.
1474
1475     » Plug a nasty infinite loop in the XSETTINGS implementation.
1476
1477     » Internally rename CoglMaterial to CoglPipeline; this should make
1478       it clearer that the API refers to the state of the GPU pipeline.
1479
1480     » Add support for clipped redraws on EGL using the NOK_swap_region
1481       extension.
1482
1483     » Build fixes.
1484
1485     » Use the monotonic clock API if compiling against GLib ≥ 2.27.3.
1486
1487     » Update examples in the Cookbook.
1488
1489     » Add a Cookbook recipe for looping animations.
1490
1491     » Add more documentation on Constraints.
1492
1493     » Documentation fixes.
1494
1495 Translation updates:
1496
1497   Italian, Polish
1498
1499 Many thanks to:
1500
1501   Robert Bragg, Neil Roberts, Elliot Smith, Owen W. Taylor,
1502   Damien Lespiau, Lucas Rocha, Maxim Ermilov, Piotr Drąg,
1503   Tomeu Vizoso, muflone
1504
1505 Clutter 1.5.4
1506 ===============================================================================
1507
1508   • List of changes since Clutter 1.5.2
1509
1510     » Add a backend for Wayland.
1511
1512     » Depend on GLib ≥ 2.26, Cairo ≥ 1.10.
1513
1514     » Do not generate the conformance tests list using the test-conformance
1515       binary.
1516
1517     » Implement interval progress functions for ActorBox, Vertex, Geometry,
1518       Color and Units.
1519
1520     » Allow overriding the surface creation in Clutter.CairoTexture.
1521
1522     » Add interpolate() method to Clutter.Color.
1523
1524     » Add ClutterPathConstraint, a simple constraint that sets the origin
1525       of an actor's allocation to follow a ClutterPath.
1526
1527     » Plug some memory leaks.
1528
1529     » Fix build of the CEx100 and EGL backends.
1530
1531     » Fixes for the OSX backend.
1532
1533     » Documentation consistency and spell checking fixes.
1534
1535     » Build fixes.
1536
1537 Translation updates:
1538
1539   Andika Triwidada (id), Damien Lespiau (fr), Piotr Drąg (po)
1540
1541 Many thanks to:
1542
1543   Damien Lespiau, Neil Roberts, Kristian Høgsberg, Andika Triwidada,
1544   Ole André Vadla Ravnås, Robert Bragg, Owen W. Taylor, Piotr Drąg,
1545   Roland Peffer
1546
1547 Clutter 1.5.2  (04/10/2010)
1548 ===============================================================================
1549
1550   • List of changes since Clutter 1.4.0
1551
1552     » Add API to ClutterActor to allow any actor to define its 3D paint
1553       volume and its stage-relative 2D bounding box; the paint volume is
1554       the 3D space occupied by an actor during the paint sequence. This
1555       allows better sizing of the FBOs, and opens the door to scenegraph
1556       culling and accurate clipped redraws. The mechanism is opt-in: actors
1557       have to implement the get_paint_volume() virtual function. Callbacks
1558       attached to the ::paint signal will also disable any culling and
1559       clipped redraw in place internally.
1560
1561     » Plug a leak in ClutterActor by disposing all constraints.
1562
1563     » Rework the build system to be as non-recursive as possible; this should
1564       speed up the build of Clutter, and makes the build layout easier to
1565       understand and update.
1566
1567     » Remove the internal copy of JSON-GLib; the internal copy was falling
1568       behind at a spectacular level, and it was actually making the build
1569       rather complicated - also by adding an unwanted, but needed,
1570       introspection data generation. The required JSON-GLib has also been
1571       bumped to the new stable release, 0.12.0.
1572
1573     » Use g_object_install_properties() with GLib 2.26.
1574
1575     » Implement ClutterContainer::child-notify, which slipped through the
1576       cracks of many development cycles without anyone noticing.
1577
1578     » Document and test clutter_actor_contains(), especially the corner
1579       cases.
1580
1581     » Plug a leak in CoglTexture2DSliced.
1582
1583     » Plug a leak in ClutterAnimator's handling of timelines.
1584
1585     » Trap glXDestroyPixmap() in CoglTexturePixmapX11 to avoid BadDrawable
1586       errors when the GLX pixmap is destroyed behind Cogl's back.
1587
1588 Many thanks to:
1589
1590   Robert Bragg
1591   Neil Roberts
1592   Elliot Smith
1593   Alejandro Piñeiro
1594   Aron Xu
1595   Colin Walters
1596   Ray Strode
1597   Stephen Kennedy
1598
1599 Clutter 1.4.0  (24/09/2010)
1600 ===============================================================================
1601
1602   • List of changes since Clutter 1.3.14
1603
1604     » Add support for describing ClutterState states using ClutterAnimators
1605       in ClutterScript.
1606
1607     » Build fixes
1608
1609     » Include ClutterConstraints into the allocation phase, to avoid layout
1610       cycles and improve the performance.
1611
1612     » Add new recipes to the Cookbook to illustrate constraints-based
1613       layouts.
1614
1615     » Fix the request mode of ClutterBoxLayout.
1616
1617     » Fix the handling of transformations in ClutterOffscreenEffect.
1618
1619     » Documentation and introspection fixes.
1620
1621 Many thanks to:
1622
1623   Elliot Smith
1624   Robert Bragg
1625   Neil Roberts
1626   Bastian Winkler
1627   Dominique Leuenberger
1628   Frederik Hahne
1629   Jammy Zhou
1630   Øyvind Kolås
1631
1632 Clutter 1.3.14 (15/09/2010)
1633 ===============================================================================
1634
1635   • List of changes since Clutter 1.3.12
1636
1637     » Fix applying layout properties from ClutterScript definitions in case
1638       of multiple children.
1639
1640     » Add a Clutter EGL backend for Intel CEx100 platforms.
1641
1642     » Add new recipes in the Cookbook:
1643       - texture cross-fading
1644       - ClutterScript definitions
1645       - event handling
1646       - ClutterAnimator
1647       - reusing complex animations
1648
1649     » Add methods to retrieve the clicked button and to force a release
1650       in ClickAction.
1651
1652     » Documentation fixes in the API reference.
1653
1654     » Cache a full pick buffer and re-use it in case the scene does not change
1655       between events.
1656
1657     » Fix a Valgrind report of memory corruption in ClutterState.remove_key().
1658
1659     » Allow detaching animations created with clutter_actor_animate().
1660
1661     » Depend on GObject-Introspection >= 0.9.5.
1662
1663     » Provide introspection data for the X11-specific API, like
1664       ClutterX11TexturePixmap
1665
1666     » Use a template material for ClutterTexture to minimize the creation of
1667       new materials.
1668
1669     » Split ClutterDragAction:drag-threshold into two, per-axis properties:
1670       :x-drag-threshold and :y-drag-threshold.
1671
1672     » Allow disabling the -Bsymbolic flag when linking.
1673
1674     » Use gettext >= 0.17 to handle the localization.
1675
1676     » Flush the framebuffer earlier when drawing the vertex buffers, to fix
1677       a crash when dealing with clip stacks.
1678
1679     » Make sure ClutterX11TexturePixmap removes the Cogl texture handle before
1680       freeing the X11 Pixmap to avoid an error.
1681
1682     » Avoid regenerating the CoglMaterial programs too many times.
1683
1684 Many thanks to:
1685
1686   Elliot Smith
1687   Robert Bragg
1688   Damien Lespiau
1689   Neil Roberts
1690   Colin Walters
1691   Owen W. Taylor
1692   Bastian Winkler
1693   Alejandro Piñeiro
1694   Alexandros Frantzis
1695   Chris Kühl
1696   Luca Invernizzi
1697   Henrik Hedberg
1698   Javier Jardón
1699   Lucas Rocha
1700   Murray Cumming
1701   Øyvind Kolås
1702
1703 Clutter 1.3.12 (16/08/2010)
1704 ===============================================================================
1705
1706   • List of changes since Clutter 1.3.10
1707
1708     » New recipes in the Cookbook:
1709       - create and animate sub-textures
1710       - layout managers
1711       - scroll events
1712
1713     » Set the ClutterTexture:filename property to also be readable.
1714
1715     » Avoid layout cycles when creating ClutterLayoutMeta objects
1716       during the ::allocate implementation
1717
1718     » Add a ClutterTableLayout, a layout manager for tabular layouts.
1719
1720     » Capture ENTER and LEAVE events on the stage within the DragAction.
1721
1722     » Plug memory leaks.
1723
1724     » Use g_object_notify_by_pspec(), if available, to speed up the
1725       emission of the ::notify signal on property changes.
1726
1727     » Re-use the Cogl texture atlas for the CoglPango glyphs cache,
1728       and improve the performance with large font sizes.
1729
1730     » Various fixes in the Materials comparison and inheritance.
1731
1732     » Add the ability to associate a user program to a material.
1733
1734 Many thanks to:
1735
1736   Neil Roberts
1737   Elliot Smith
1738   Robert Bragg
1739   Damien Lespiau
1740   José Dapena Paz
1741   Owen W. Taylor
1742
1743 Clutter 1.3.10 (04/08/2010)
1744 ===============================================================================
1745
1746   • List of changes since Clutter 1.3.8
1747
1748     » Fix a locale-dependent conversion from double to string when
1749       generating ARBfp programs for the materials.
1750
1751     » Use the XKB extension on X11 platforms to convert between hardware
1752       keys to key symbols.
1753
1754     » Documentation fixes in the API reference.
1755
1756     » More recipes, with videos and full examples, in the Cookbook.
1757
1758     » Add localization support and initial translations of error messages
1759       that might be visualized in a user interface.
1760
1761     » Improve debugging output.
1762
1763     » Fix build of the GLX backend on OSX.
1764
1765     » Multiple fixes to the native OSX backend.
1766
1767     » Add support for 3D textures in Cogl.
1768
1769     » Fix shader-related issues and leaks in the new Material code.
1770
1771     » Unify GLSL support in the GL and GLES 2.0 drivers.
1772
1773     » Allow specifying an hint to disable clearing the stage before each
1774       paint cycle.
1775
1776 Many thanks to:
1777
1778   Neil Roberts
1779   Roman Kudiyarov
1780   Elliot Smith
1781   Robert Bragg
1782   Chris Kühl
1783   Chris Leick
1784   Nate Stedman
1785   happyaron
1786   raven
1787   Øyvind Kolås
1788
1789 Clutter 1.3.8 (12/07/2010)
1790 ===============================================================================
1791
1792   • List of changes since Clutter 1.3.6
1793
1794     » Merge Cally, the Clutter Accessibility Library, in the Clutter tree.
1795
1796     » Take into consideration the source actor's position in the
1797       AlignConstraint logic.
1798
1799     » Update the internal COGL tesselator with the latest GLU code.
1800
1801     » Fix CoglTexture data readback.
1802
1803     » Use GL_MAX_TEXTURE_SIZE on GLES when checking the supported texture size.
1804
1805     » Add missing public functions from COGL headers.
1806
1807     » Fix GLES build after the Cogl material changes.
1808
1809     » Rename the experimental CoglPixelBuffer API to CoglPixelArray.
1810
1811     » Split the clutter_state_change() method into two:
1812     clutter_state_set_state(), for animated state changes; and
1813     clutter_state_warp_to_state() for immediate state changes.
1814
1815     » Documentation and introspection fixes.
1816
1817     » Build fixes
1818
1819 Many thanks to:
1820
1821   Robert Bragg
1822   Neil Roberts
1823   Elliot Smith
1824   Alejandro Piñeiro
1825   Øyvind Kolås
1826   Damien Lespiau
1827   Alexandros Frantzis
1828
1829 Clutter 1.3.6 (30/06/2010)
1830 ===============================================================================
1831
1832   • List of changes since Clutter 1.3.4
1833
1834     » Provide a fallback on GLX if the MESA_copy_sub_buffer extension is not
1835       available, by using EXT_framebuffer_blit. Both mechanisms are also
1836       throttled to avoid taking all resources when using them in a compositor
1837       like Mutter.
1838
1839     » Use (and cache) fragment shaders instead of texture combiners inside
1840       Cogl materials. Cogl will automatically fall back from GLSL to ARBfp
1841       to fixed functions depending on the level of support of the underlying
1842       GL implementation.
1843
1844     » Implement a new design for materials; this allows scaling up the
1845       number of materials in a scene, and also makes copying materials
1846       less expensive.
1847
1848     » Make Cogl materials responsible for depth testing, and add new
1849       experimental API.
1850
1851     » Use the (modified) GLU tesselator to draw paths to a vertex buffer
1852       object instead of using the stencil buffer, or the scanline rasterizer
1853       on platforms without a stencil buffer.
1854
1855     » Add ClutterDeformEffect, a base class for effects that deform an
1856       actor's geometry when painting it; ClutterPageTurnEffect is an
1857       implementation of a "page curl" deformation using the DeformEffect
1858       API.
1859
1860     » Always use scissoring when clipping, to reduce the amount of buffer
1861       that has to be cleared.
1862
1863     » Allow ClutterShaderEffect sub-classes to use vertex shaders by setting
1864       a constructor property; the default remains fragment shader.
1865
1866     » Remove the button of the press event from the DragAction::drag-begin
1867       and DragAction::drag-end signals. This is an API break from 1.3.4.
1868
1869     » Do not promote clipped redraws to full redraws.
1870
1871     » Improve the consistency of the default state name in ClutterState,
1872       both in the API and in the serialization format.
1873
1874     » Fix a rounding error with the Text layout size.
1875
1876     » Add utility functions for CoglMatrix and CoglColor.
1877
1878     » Avoid a re-allocation cycle warning when resizing the surface of
1879       a CairoTexture actor from within the allocate() implementation.
1880
1881     » Do not add the GL libraries for the EGL X11 backend.
1882
1883     » Add more checks for size of data passed to the shader types GValue
1884       functions.
1885
1886     » Add width and height to the BindConstraint.
1887
1888     » Parse actions, constraints and effects inside an actor definition
1889       for ClutterScript.
1890
1891     » Merge the code of native and x11 backends for EGL into a single
1892       backend; also allow creating GL context with the EGL backend.
1893
1894     » Use XSETTINGS to set up the backend configuration options, like
1895       the font name, resolution, font options and double click options,
1896       on X11; this also allows ClutterText actors created using the
1897       default font name to be updated when the font name and options
1898       change; similarly, this allows ClutterUnits to be updated when
1899       the screen resolution changes.
1900
1901     » Implement the texture_from_pixmap extension support inside Cogl
1902       itself, and unify ClutterX11TexturePixmap and ClutterGLXTexturePixmap.
1903
1904     » Documentation improvements in the API reference and in the cookbook.
1905
1906     » Use the -Bsymbolic-functions linker option on supported platforms
1907       to avoid intra-library PLT jumps.
1908
1909     » Fix painting transparent stages on X11 using the :use-alpha property
1910       of ClutterStage.
1911
1912     » Fix emission of scroll events on Windows.
1913
1914 Many thanks to:
1915
1916   Robert Bragg
1917   Neil Roberts
1918   Øyvind Kolås
1919   Damien Lespiau
1920   Elliot Smith
1921   Chris Lord
1922   Johan Bilien
1923   Richard Hughes
1924   Adel Gadllah
1925   Alejandro Piñeiro
1926   Colin Walters
1927   Dan Winship
1928   Kristian Høgsberg
1929   Sunil Sadasivan
1930
1931 Clutter 1.3.4 (07/06/2010)
1932 ===============================================================================
1933
1934   • List of changes since Clutter 1.3.2
1935
1936     » Add ClutterEffect, a ClutterActorMeta sub-class that affects the
1937       way an actor paints itself.
1938
1939         » Clutter provides a base class for effects painting to an
1940           offscreen buffer, and a base class for effects using the
1941           GL programmable pipeline (through the GLSL shader language).
1942
1943         » Clutter also provides some simple, shader-based effects:
1944           ClutterBlurEffect, ClutterColorizeEffect and
1945           ClutterDesaturateEffect.
1946
1947         » Effects can be applied to any actor, and can also be stacked.
1948
1949     » Add ClutterClickAction, an action that provides "button-like"
1950       semantics for any ClutterActor.
1951
1952     » ClutterDragAction now moves the actor to which it has been applied
1953       by default, using a class handler for the ::drag-motion signal.
1954
1955     » Add the :pick-with-alpha property to ClutterTexture; this property
1956       allows using the alpha channel of a texture when picking it.
1957
1958     » Regenerate the mipmaps on COGL textures when a texture is modified.
1959
1960     » Documentation and build fixes.
1961
1962 Many thanks to:
1963
1964   Robert Bragg
1965   Damien Lespiau
1966   Neil Roberts
1967   Colin Walters
1968
1969 Clutter 1.3.2 (24/05/2010)
1970 ===============================================================================
1971
1972   • List of changes since Clutter 1.2
1973
1974     » Add ActorMeta, a class for run-time composition of actions and
1975       constraints on a ClutterActor:
1976
1977         » Add ClutterAction, a class for implementing business logic
1978           related to event handling.
1979
1980         » Add ClutterConstraint, a class for implementing business
1981           logic related to sizing and positioning.
1982
1983         » ClutterDragAction is an Action sub-class that implements
1984           signals and properties for dragging actors.
1985
1986         » ClutterAlignConstraint and ClutterBindConstraint are two
1987           Constraint sub-classes that allow relative positioning
1988           with fixed layout managers.
1989
1990     » Add ClutterState, an object for defining state transitions.
1991
1992     » Add ClutterBoxLayout:homogeneous property.
1993
1994     » Implement retained clip stacks.
1995
1996     » Support retained paths.
1997
1998     » Add an experimental vector3 API.
1999
2000     » Require GLib >= 2.18.
2001
2002     » Require Atk >= 1.7.
2003
2004     » Make ClutterActor implement AtkImplementor, and allow retrieving
2005       an AtkObject from a ClutterActor.
2006
2007     » Improve ClutterText's Pango layout caching mechanism.
2008
2009     » Fix set up of the GLX_SGI_swap_control extension.
2010
2011     » Fix EGLX backend.
2012
2013     » Documentation fixes for Clutter and COGL.
2014
2015     » Fix the conformance test suite by executing every test unit in
2016       a separate process.
2017
2018     » Add platform-dependent defines for Cogl.
2019
2020     » Update the MingW cross-compilation script.
2021
2022     » New recipe in the Cookbook.
2023
2024 Many thanks to:
2025
2026   Neil Roberts
2027   Robert Bragg
2028   Øyvind Kolås
2029   Owen W. Taylor
2030   Brian Tarricone
2031   Damien Lespiau
2032   Adel Gadllah
2033   Chris Lord
2034   Fridrich Strba
2035   José Dapena Paz
2036   Jussi Kukkonen
2037   Rob Bradford
2038
2039 Clutter 1.2.2 (15/03/2010)
2040 ===============================================================================
2041
2042   • List of changes since Clutter 1.2.0
2043
2044     » Fix introspection annotations for ClutterBox
2045
2046     » Compilation fixes for the EGL native backend
2047
2048     » Fix ClutterX11TexturePixmap ::queue-damage-redraw default handler
2049       registration to avoid a run-time warning
2050
2051     » Handle TEXTURE_RECTANGLE_ARB in the 2D sliced textures, and add
2052       a test case for that extension to avoid regressions
2053
2054     » Improve the strictness of the JSON parser in the internal copy
2055       of JSON-GLib to which we fall back in the absence of the system
2056       one
2057
2058     » Fix a crasher on NVidia drivers when enabling the ARGB visuals
2059       by default on GLX.
2060
2061 Many thanks to:
2062
2063   José Dapena Paz
2064   Neil Roberts
2065   Owen W. Taylor
2066   Øyvind Kolås
2067
2068 Clutter 1.2.0 (02/03/2010)
2069 ===============================================================================
2070
2071   • List of changes since Clutter 1.1.14
2072
2073     » Improve the Animator API for consistency, and the implementation
2074       to match the intended behaviour, as documented
2075
2076     » Add initial (and internal) support for queueing clipped region updates
2077       and let the GLX texture-from-pixmap actor take advantage of it
2078
2079     » Support any pixel format in cogl_read_pixels()
2080
2081     » Conditionally use G_VALUE_COLLECT_INIT() in functions using variadic
2082       arguments lists
2083
2084     » Consistently use :min-width and :min-height inside the Stage to define
2085       the minimum size of the Stage window
2086
2087     » Implement the Scriptable interface for ClutterModel sub-classes; this
2088       allows setting ClutterModel columns (both types and names) in
2089       ClutterScript definitions
2090
2091     » Add support for unsigned integer indices in the VertexBuffer API
2092
2093     » Documentation fixes for Clutter: the coverage is now 100%
2094
2095     » Fixes for the EGL native backend
2096
2097     » Require libtool >= 2.2.6
2098
2099     » Improve tests coverage
2100
2101 Many thanks to:
2102
2103   Neil Roberts
2104   Øyvind Kolås
2105   Robert Bragg
2106   Bastian Winkler
2107   Chris Lord
2108   Owen W. Taylor
2109
2110 Clutter 1.1.14 (24/02/2010)
2111 ===============================================================================
2112
2113   • List of changes since Clutter 1.1.12
2114
2115     » Fix interaction between user resizable Stages and fullscreen on X11
2116
2117     » Define the semantics of ENTER and LEAVE events when actors are on the
2118       border of the Stage window
2119
2120     » Take the InputDevice of an event into consideration when throttling
2121       MOTION events
2122
2123     » Round the coordinates when clipping to a rectangle in window coordinates
2124
2125     » Always trust the user-provided coordinates when creating a CoglTexture
2126       from a foreign GL texture
2127
2128     » Split Clutter's debug annotations from the pick and paint mode
2129       behavioural modifiers
2130
2131     » Improve the usage of the CLUTTER_ACTOR_NO_LAYOUT flag so that every
2132       actor using a ClutterFixedLayout manager will automatically benefit
2133       from it
2134
2135     » Fix the packing order of ClutterBox so that the convention of
2136       first-in-first-painted is maintained
2137
2138     » Documentation fixes
2139
2140 Many thanks to:
2141
2142   Robert Bragg
2143   Chris Lord
2144   Neil Roberts
2145
2146 Clutter 1.1.12 (16/02/2010)
2147 ===============================================================================
2148
2149   • List of changes since Clutter 1.1.10
2150
2151     » Fix compilation on 64bit platforms
2152
2153     » Fix some races of the Stage resizing on X11
2154
2155     » Documentation fixes for Cogl: the coverage is now 100%
2156
2157     » Fix rounding errors in the preferred height of the ClutterText
2158       actor
2159
2160     » Remove redundant type checks in clutter_actor_get_paint_opacity()
2161
2162     » Add support for the GLX_INTEL_swap_event extension; when using this
2163       extension on GLX the glXSwapBuffers() call becomes non-blocking and
2164       Clutter will use an event to control the master clock.
2165
2166     » Improve consistency between ClutterBox and ClutterGroup.
2167
2168     » On X11, do not set the _NET_WM_PID and WM_TITLE properties on a
2169       Stage X window if the window was not created by Clutter itself
2170
2171     » Improve caching of GL constant values
2172
2173     » Optimize creating sub-textures of sub-textures
2174
2175     » Various fixes for the atlas and the journal
2176
2177     » Disable the atlas if FBOs are not supported
2178
2179 Many thanks to:
2180
2181   Robert Bragg
2182   Neil Roberts
2183   Damien Lespiau
2184   Bastian Winkler
2185   Chris Lord
2186
2187 Clutter 1.1.10 (09/02/2010)
2188 ===============================================================================
2189
2190   • List of changes since Clutter 1.1.8
2191
2192     » Fixed a regression in textures that caused all the textures to be
2193       drawn as white rectangles.
2194
2195     » Fixed compilation with the Sun C compiler.
2196
2197     » Use SSE2 instructions to premultiply RGBA images, if available.
2198
2199     » Improve readability of ClutterActor::raise/::lower warnings.
2200
2201 Many thanks to:
2202
2203   Neil Roberts
2204   Halton Huo
2205
2206 Clutter 1.1.8 (08/02/2010)
2207 ===============================================================================
2208
2209   • List of changes since Clutter 1.1.6
2210
2211     » Added ClutterAnimator, a class that allows defining complex
2212       implicit animations involving multiple actors and states; this
2213       class is mostly meant to be used through the ClutterScript
2214       definition format, but it provides a convenience C API for
2215       easily building animations.
2216
2217     » New experimental COGL API to expose "hardware" buffers such as PBOs or
2218       drm surfaces. This API can be used, for instance, to make texture
2219       uploading faster.
2220
2221     » Fixed the issues with resizable stages getting a 1x1 window with
2222       the X11 backends
2223
2224     » Expose input devices for every event; by default, X11 and Windows
2225       backends expose the core devices only.
2226
2227     » Add the ClutterStage:key-focus property, for key focus tracking.
2228
2229     » Allow setting transformable value types in ClutterAnimation when
2230       calling clutter_animation_bind() and clutter_animation_update().
2231
2232     » Delay the creation of the default Stage until clutter_stage_get_default()
2233       is actually called; this reduces the work of clutter_init().
2234
2235     » Implement Ctrl+Delete and Ctrl+Backspace in ClutterText
2236
2237     » Improve the extendability of CoglTexture with internal backends.
2238
2239     » Add implicit texture atlasing; Cogl will try to put every texture
2240       inside the same texture atlas by default, to avoid state changes
2241       in the driver and (hopefully) improve performance.
2242
2243     » Fix notification of the cursor and selection changes in ClutterText;
2244       this improves the usage of Clutter from A11Y toolkits.
2245
2246     » Do not wait for a frame if the system clock goes backwards.
2247
2248     » Fix the dirtying of the clip state; this unbreaks cogl_path_fill().
2249
2250     » Documentation and build fixes.
2251
2252 Many thanks to:
2253
2254   Neil Roberts
2255   Chris Lord
2256   Damien Lespiau
2257   Alejandro Piñeiro
2258   Jussi Kukkonen
2259   Kristian Høgsberg
2260   Robert Bragg
2261   Øyvind Kolås
2262
2263 Clutter 1.1.6 (18/01/2010)
2264 ===============================================================================
2265
2266   • List of changes since Clutter 1.1.4
2267
2268     » Some fixes for the Win32 backend (bug #1905).
2269
2270     » Profiling support via the UProf library. Configure with
2271       --enable-profile to get a report after each Clutter application is
2272       run.
2273
2274     » Improved conformance tests with coverage reports via gcov.
2275
2276     » ClutterTexture no longer tries to read back texture data into
2277       g_malloc'd memory on unrealize (bug #1842).
2278
2279     » The CGL_• defines from cogl-defines.h have been removed. These
2280       should not have been used by any applications, but if they were
2281       being used then please replace them either with the Cogl enums or
2282       with the appropriate GL_• enum if you are using GL directly.
2283
2284     » Added a delete-event signal to the stage.
2285
2286     » Fix for using cogl_rectangle with different texture coordinates
2287       for multiple layers (bug #1937).
2288
2289     » Fix for using stencil and depth buffers in FBOs on Intel drivers
2290       in Mesa (bug #1873).
2291
2292     » Support for subtitles in ClutterMedia.
2293
2294     » ClutterGLX will now use an RGB visual by default. For
2295       applications (and toolkit integration libraries) that want to
2296       enable the ClutterStage:use-alpha property there is a new
2297       function: clutter_x11_set_use_argb_visual().
2298
2299     » Fix ClutterText to allow using Pango markup and attributes in
2300       the same actor (bug #1940).
2301
2302 Many thanks to:
2303
2304      Alejandro Piñeiro
2305      Damien Lespiau
2306      Emmanuele Bassi
2307      Gord Allot
2308      Halton Huo
2309      Robert Bragg
2310      Samuel Degrande
2311
2312 Clutter 1.1.4 (03/01/2010)
2313 ===============================================================================
2314
2315   • List of changes since Clutter 1.1.2
2316
2317     » Update the ClutterScript parser to be more resilient, and support
2318       constructor and ChildMeta properties. The parser also respects the
2319       order of the properties in the UI definitions when applying them,
2320       and will apply the properties of an Actor after building the scene
2321       graph.
2322
2323     » Simplified the implementation of LayoutManager sub-classes, and added
2324       support for animating a layout manager.
2325
2326     » Allow short-circuiting some layout operations by setting a specific
2327       flag on ClutterActor.
2328
2329     » Improve caching of the preferred size of a ClutterActor.
2330
2331     » Allow declaring "internal children" for a ClutterContainer
2332       implementation: the memory management of these actors will be deferred
2333       entirely to the Container.
2334
2335     » Let the ClutterStage honour the :opacity property and the alpha component
2336       of the stage color. This requires support in the Clutter backend used.
2337
2338     » Improve Windows and OSX backends.
2339
2340     » Simplify the feature detection code for OpenGL; this also reduced the
2341       required OpenGL version to 1.2.
2342
2343     » Improve the matrix stack handling code. The matrices can be debugged by
2344       using the COGL_DEBUG environment variable, assuming that Clutter was
2345       compiled with the right configure-time switch.
2346
2347     » Improve COGL API for draw buffers, and for offscreen buffer support.
2348
2349     » Add support for text direction to ClutterActor.
2350
2351     » Documentation, introspection and build fixes.
2352
2353 Many thanks to:
2354
2355   Robert Bragg
2356   Neil Roberts
2357   Damien Lespiau
2358   Joshua Lock
2359   Bastian Winkler
2360   Rob Bradford
2361   Samuel Degrande
2362   Christian Persch
2363   Colin Walters
2364   Johan Bilien
2365   Raymond Liu
2366   Tim Horton
2367
2368 Clutter 1.1.2 (23/10/2009)
2369 ===============================================================================
2370
2371   • List of changes since Clutter 1.0
2372
2373     » Add ClutterLayoutManager, an abstract proxy class for easily
2374       writing layout management policies; also add ClutterLayoutMeta,
2375       a class for storing layout properties.
2376
2377     » Add ClutterBox, a generic container actor that relies on a
2378       ClutterLayoutManager instance to manage the layout of its
2379       children.
2380
2381     » Add the following layout managers:
2382
2383       - ClutterFixedLayout - a layout manager implementing the
2384         policy used by ClutterGroup
2385
2386       - ClutterBinLayout - a layout manager for packing actors
2387         as layers inside the same area, with per-actor alignment
2388
2389       - ClutterFlowLayout - a layout manager arranging actors as
2390         a reflowing grid
2391
2392       - ClutterBoxLayout - a layout manager arranging actors as
2393         a single line
2394
2395     » Remove the requirement for the backend-specific implementation
2396       of ClutterStage to be a ClutterActor: a Stage implementation must
2397       only implement the ClutterStageWindow interface. This cleans up
2398       the backend code.
2399
2400     » COGL source tree clean up and rationalization; COGL now
2401       knows the platform, and not only the driver (GL or GLES) so
2402       we can migrate part of the low-level backend code from Clutter
2403       to COGL where it makes sense.
2404
2405     » Remove code duplication across whole COGL.
2406
2407     » The GLES 2.0 driver for COGL, and the EGLX backend for Clutter
2408       have been fixed and confirmed working.
2409
2410     » Add "dump-pick-buffer" to CLUTTER_DEBUG: this debug options
2411       dumps the contents of each pick() buffer into a PNG file, for
2412       debugging purposes.
2413
2414     » Allow interpolating intervals of ClutterUnits for animating
2415       unit-based properties.
2416
2417     » Increase strictness and correctness of the ClutterUnits
2418       grammar parser.
2419
2420     » Add GValue transformation functions for ClutterPath to and
2421       from a string.
2422
2423     » Fix word movement in ClutterText; implement GObject getter for
2424       :use-markup; emit notification for :position; decouple the
2425       :text property from the :use-markup property.
2426
2427     » Do not queue redraws or relayouts on actors currently being
2428       destroyed. 
2429
2430     » Support #rrggbb and #rgb notations for ClutterColor.
2431
2432     » Multiple bug fixes.
2433
2434     » Provide _NET_WM_PID on the X11 stage implementation.
2435
2436     » Documentation and Introspection annotation fixes.
2437
2438     » Add test units for the ClutterActor size requesition.
2439
2440     » Build fixes.
2441
2442     » Use AM_SILENT_RULES if Automake 1.11 is detected, and fall
2443       back to Shave on older Automake versions.
2444
2445 Many thanks to:
2446
2447   Robert Bragg
2448   Damien Lespiau
2449   Neil Roberts
2450   Thomas Wood
2451   Owen W. Taylor
2452   Øyvind Kolås
2453   Götz Waschk
2454   Zhou Jiangwei
2455   Colin Walters
2456   Jonas Bonn
2457   Joshua Lock
2458   Jussi Kukkonen
2459   Samuel Degrande
2460   Vladimir Nadvornik
2461   Xu Li
2462
2463 Clutter 1.0.0 (28/07/2009)
2464 ===============================================================================
2465
2466   • List of changes since 0.9.8
2467
2468     » Allow per-stage disabling of motion event throttling; this should allow
2469       platforms or applications that require all the motion events not for
2470       drawing purposes to get them exactly like Clutter gets them from the
2471       windowing system.
2472
2473     » Various documentation fixes.
2474
2475     » Add per-word key navigation inside ClutterText.
2476
2477     » Fix the RGB<->HLS conversion.
2478
2479     » Various fixes for the OSX backend.
2480
2481     » Various build-related fixes.
2482
2483 Many thanks to:
2484
2485   Geoff Gustafson
2486   Michael Mortensen
2487   Owen W. Taylor
2488
2489 Clutter 0.9.8 (17/07/2009)
2490 ===============================================================================
2491
2492   • List of changes since 0.9.6
2493
2494     » Add more introspection annotations for language bindings.
2495
2496     » Fix a bug in clutter_animation_set_alpha(), which also broke the
2497       clutter_actor_animate_with_alpha() function.
2498
2499     » Check if the stage requires a relayout before showing it; this fixes
2500       a bug in the X11-based backends, especially under compositing window
2501       managers, where a 640x480 window would flicker before the default
2502       stage was shown for the first time.
2503
2504     » Performance fixes for Cogl.
2505
2506     » Sliced textures were broken by the COGL journalling.
2507
2508     » Use the redraw cycle when asynchronously loading textures from
2509       files.
2510
2511     » Miscellaneous compilation fixes for the OS X and Windows backends.
2512
2513     » Allow querying from within the paint function of an Actor whether
2514       the actor is currently being directly painted or by a Clone actor.
2515
2516     » In the GLX backend, when using the non-implicit sync-to-vblank inside
2517       glXSwapBuffers(), call glFinish() to avoid potential tearing.
2518
2519 Many thanks to:
2520
2521   Colin Walters
2522   Evan Martin
2523   Marcos
2524   Owen W. Taylor
2525   Xu Li
2526
2527 Clutter 0.9.6 (01/07/2009)
2528 ===============================================================================
2529
2530   • List of changes since 0.9.4:
2531
2532     » Allow the manipulation of the actor's transformation matrix, so that is
2533       is possible to apply additional transformations in a way that is
2534       compatible with the transformations already applied by the scene graph.
2535
2536     » Fix a race in the X11 backend that happened between resizing the stage
2537       drawable and the call to glViewport().
2538
2539     » Merge the cogl-journal-batching branch; this branch implements batching
2540       the geometry of the elements of the scene graph before sending it to
2541       OpenGL, thus minimizing the number of state changes and improving the
2542       overall performance of Clutter-based applications.
2543
2544     » Add more debugging states for Clutter and COGL, which allow the developer
2545       to track the state of the journal; to check the VBO fallback paths; to
2546       disable picking for reliable profiling; to disable software-side matrix
2547       transformations in favour of the driver/GPU ones.
2548
2549     » Improve the ability to "break out" of COGL by using gl_begin/gl_end
2550       semantics; applications that drop into raw GL are, though, ignoring all
2551       the caching performed by COGL and might incur in performance issues.
2552
2553     » Fixed the :load-async and :load-data-async properties of Texture by
2554       removing the unneeded G_PARAM_CONSTRUCT flag.
2555
2556     » Added an initial migration guide that shows the porting process from
2557       older releases of Clutter to the 1.0 API; the first chapter deals with
2558       the migration from ClutterEffect to the new implicit animations API.
2559
2560     » Fixed MT-safety for the master clock.
2561
2562 Many thanks to:
2563
2564   Ole André Vadla Ravnås
2565   Tim Horton
2566
2567 Clutter 0.9.4 (19/06/2009)
2568 ===============================================================================
2569
2570   • List of changes since 0.9.2:
2571
2572     » Set the layout height in ClutterText, so that wrapping and ellipsization
2573       work correctly to fill all the allocated area.
2574
2575     » Remove all the units-based API, and migrate all the positional and
2576       dimensional accessors to use floating point values when dealing with
2577       pixels. All the properties dealing with pixels now that a floating
2578       point value as well.
2579
2580     » Add the ability to track wether an actor is going to be painted or not,
2581       using the "mapped" flag. This also allows Clutter to be more strict
2582       in the handling of the scenegraph, ensuring correctness and avoiding
2583       wasting resources on nodes that won't be painted.
2584
2585     » Add debugging facilities for COGL, similar to those of Clutter; through
2586       them is also possible to have an on screen debugging mode that shows the
2587       boundaries of each rectangle sent to the GPU.
2588
2589     » Rework "units" into real logical distance units that can be converted
2590       between millimeters, typographic points and ems into pixels.
2591
2592     » Simplify the Animation class to avoid redundancy and the possibility
2593       of it going out of sync with the Timeline and Alpha instances it uses.
2594
2595     » Move every operation into a single "master clock" source that advances
2596       the timelines, dispatches events and redraws the stages in a predictable
2597       sequence, thus avoiding unneeded redraws. The default is to follow the
2598       sync-to-vblank cycle, if it is supported by the drivers.
2599
2600     » Cache the glyphs geometry into a vertex buffer object to avoid
2601       resubmitting too much information to the GPU.
2602
2603     » Rework the behaviour of ClutterModel when a filter is applied.
2604
2605     » Allow submitting premultiplied texture data; this removes the need
2606       for unpremultiplying data in CairoTexture.
2607
2608     » Add a simple API for submitting blending and texture combining modes
2609       through a string description.
2610
2611     » Move Timelines to pure time-based objects.
2612
2613     » Lots of performance improvements.
2614
2615     » Removal of all the deprecated API.
2616
2617     » Removal of all the fixed point entry points.
2618
2619     » Lots of documentation fixes - the coverage is now 99% of the exported
2620       1600 symbols for Clutter and 80%+ of the 300 exported symbols for COGL.
2621
2622     » Generate the GObject Introspection data for both Clutter and COGL
2623       at build time.
2624
2625     » Build environment fixes.
2626
2627 Many thanks to:
2628
2629     Owen W. Taylor <otaylor@fishsoup.net>
2630     Thomas Wood <thomas.wood@intel.com>
2631     Havoc Pennington <hp@pobox.com>
2632     Bastian Winkler <buz@netbuz.org>
2633     Chris Lord <chris@linux.intel.com>
2634     Garry Bodsworth <gjb@camvine.com>
2635     Rob Bradford <rob@linux.intel.com>
2636     Johan Bilien <jobi@litl.com>
2637     Jonas Bonn <jonas@southpole.se>
2638     Raymond Liu <raymond.liu@intel.com>
2639     Damien Lespiau <damien.lespiau@gmail.com>
2640     Dan Winship <danw@gnome.org>
2641     Marc-André Lureau <marcandre.lureau@gmail.com>
2642     Robert Staudinger <robsta@gnome.org>
2643     Tommi Komulainen <tko@litl.com>
2644
2645 Clutter 0.9.2 (16/03/2009)
2646 ===============================================================================
2647
2648 Bastian Winkler (2):
2649       [media] Fix the interface cast macro
2650       Remove redundant declaration in clutter-text.h
2651
2652 Chris Lord (1):
2653       [actor] Force a relayout on set_parent()
2654
2655 Christian Persch (1):
2656       Bug 1429 - Redundant declaration in clutter-x11.h
2657
2658 Colin Walters (3):
2659       Bug 1491 - Fix hardcoded lib path in .pc files
2660       Typo in clutter-win32.pc.in introduced by commit 24ce19383
2661       [animation] Enhance the bind API
2662
2663 Damien Lespiau (6):
2664       [gitignore] update gitignore files for tests/
2665       [build] Beautify autotools' output
2666       [build] Add dolt
2667       [build] Fix interaction between shave, gtk-doc and libtool 1.x
2668       [build] Fix dist for the newly introduced m4 macro directory
2669       Update shave
2670
2671 Emmanuele Bassi (111):
2672       Post-release bump to 0.9.1
2673       [text] Merge the attributes with markup enabled
2674       [tests] Update the text-field interactive test
2675       Add Actor::create_pango_layout()
2676       [docs] Add clutter_text_set_markup()
2677       [clone] Allow cloning unparented actors
2678       [text] Use create_pango_layout()
2679       [text] Rename :alignment to :line-alignment
2680       [texture] Consolidate the quality to filter conversions
2681       [texture] Check if the material is valid
2682       [event] Extend KeyEvent for multi-input support
2683       [actor] Check out parameters before setting them
2684       [list-model] Make ClutterListModel subclassable
2685       Bug 1440 - Add clutter_get_current_event_time()
2686       [tests] Add TEST_CONFORM_SKIP() macro
2687       [tests] Add conformance tests for ClutterModel
2688       [ignore] Add the newly created conformance units
2689       [actor] Revert part of commit 402e022c
2690       [animation] Do not bind construct-only properties
2691       [x11] Add backend-specific get_current_event_time()
2692       Initialize a variable to avoid warnings
2693       [cogl] Add cogl_is_material to cogl-material.h
2694       [cogl] Provide GTypes for COGL types
2695       [texture] Use COGL_TYPE_HANDLE for the handle properties
2696       [docs] Clarify the set_cogl_texture() documentation
2697       Merge branch 'build-enhancements'
2698       [docs] Add a missing "return" annotation
2699       [build] Pass the -s switch to cmp
2700       Remove type functions for removed types
2701       [docs] Update the sections file
2702       [tests] Add TEST_CONFORM_TODO macro
2703       [build] Show pkg-config file being generated
2704       [build] Reference the headers with their full path
2705       [docs] Update build for COGL API reference
2706       [build] Update the EXTRA_DIST list
2707       [build] Fix the ChangeLog generation rule
2708       [build] Do not overwrite BUILT_SOURCES
2709       [behaviour] Do not notify empty behaviours
2710       [path] Do not accept NULL descriptions
2711       [timeline] Set the n_markers out paramater
2712       Do not use GL types in Clutter headers
2713       [docs] Require gtk-doc 1.11
2714       [docs] Use the --name-space option
2715       [docs] Add the 1.0 symbols index
2716       [docs] Rename cogl-docs from sgml to xml
2717       Add build machinery for gobject-introspection data
2718       [backend] Update the viewport when updating the GL context
2719       [build] Move all the compiler flags to AM_CFLAGS
2720       [ignore] Update with the introspection files
2721       Add runtime debug messages for COGL
2722       [actor] Remove usage of ClutterFixed
2723       Make disable text mipmapping a command line switch
2724       Make fuzzy picking a command line switch
2725       [docs] Document envvars and command line switches
2726       Remove stray fixed point macro usage
2727       Use a dynamic array for the actors when delivering events
2728       [media] Add sub-second resolution for the duration
2729       [build] Put the X11 pc dependencies in another variable
2730       [build] Do not shave typelib generation
2731       Intern the ClutterScriptable type name
2732       [backend] Constify font options
2733       [cogl] Add a PANGO debug flag for CoglPango use
2734       Clean up of the ClutterColor API
2735       [shader] Unify code paths
2736       Add pkg-config file for COGL
2737       [build] Various fixes for distcheck
2738       [docs] Clarify clutter_actor_animate() behaviour
2739       [docs] Note that grabs are evil
2740       [cogl-fixed] Add a double-to-fixed conversion macro
2741       Move BehaviourScale to CoglFixed
2742       Move ClutterBehaviourEllipse to CoglFixed
2743       Move ClutterBehaviourRotate to CoglFixed
2744       Move ClutterTimeline to CoglFixed
2745       [cogl-fixed] Implement the CoglFixed fundamental GType
2746       [tests] Test CoglFixed, not ClutterFixed
2747       [interval] Update fixed-point handling
2748       [stage] Coalesce fog and perspective API
2749       [texture] Fix ClutterFixed usage
2750       [text] Convert units to the right type
2751       [tests] Use floats, not ClutterFixed
2752       [units] Add more conversion functions
2753       [fixed] Remove ClutterFixed API
2754       [cogl] Fix hardcoded paths in the pc file
2755       [docs] Remove ClutterFixed from the documentation
2756       [docs] Update API reference
2757       [animation] Add vector variants for ::animate()
2758       [cogl] Initialize boolean flag in CoglContext
2759       [cogl] Initialize all members of CoglContext
2760       [color] Fixed HLS to RGB conversion
2761       [docs] Calling g_object_ref() will not dispose an object
2762       [docs] Document the commit message format
2763       [tests] Animate the color during easing
2764       [docs] Reword some of the coding practices
2765       [docs] Add a bindings coding practices
2766       Add more deprecation notices
2767       [deprecated] Add Effect deprecation
2768       Do not cause more size requisitions than necessary
2769       [cogl] Avoid shadowing math.h symbols
2770       [docs] Clarify Animation memory management
2771       [animation] Add an emitter for ::completed
2772       [animation] Add Animation getter
2773       [tests] Remove unused variables
2774       [docs] Add description of queue_redraw
2775       [docs] Update after Animation API changes
2776       [animation] Enhance consistency of the Animation API
2777       [docs] Bring down the undocumented symbols to 2%
2778       Fix release date of 0.9.0
2779       Update release notes
2780       [docs] Fix naming of the interval parameter
2781       [docs] Ignore the TimeoutInterval internal API
2782       Update release notes
2783
2784 Geoff Gustafson (1):
2785       [animation] Broken fixed:: properties
2786
2787 Gordon Williams (1):
2788       [group] Output the group name when debugging paint
2789
2790 Havoc Pennington (4):
2791       Virtualize GL matrix operations and use a client-side matrix when GL is indirect
2792       [actor] Add :clip-to-allocation property
2793       [actor] Add ::queue-redraw signal
2794       [cogl] Flush matrix before clip planes
2795
2796 Jonathan Matthew (1):
2797       Declare the EnumValues for PixelFormat static
2798
2799 Neil Roberts (36):
2800       [cogl-material] Always bind the new texture handle
2801       Fix building GLES 2 after the material branch merge
2802       [cogl-texture] Fix the count for the number of enabled arrays
2803       [cogl-gles2-wrapper] Remove the FIXME to adjust the fragment color
2804       [clutter-clone] Override the parent opacity to self not self->parent
2805       [clutter-texture] Release the temporary ref taken when setting a texture
2806       [clutter-texture] Unref the Cogl material on dispose
2807       [clutter-texture] Fix the no_slice property
2808       [cogl-texture] Fix offset to next quad when flushing the log
2809       [cogl-texture] Move the destruction of the material to _finalize
2810       [cogl-texture] Fix uninitialised priv var in texture_finalize
2811       Added a test for non-power-of-two sized textures
2812       Emit CLUTTER_LEAVE events when the pointer leaves the stage
2813       Call glActiveTexture and glClientActiveTexture through cogl_get_proc_address
2814       [win32] Track mouse leave messages
2815       [clutter-main] Fix the input device passed to set_motion_last_actor
2816       Override the opacity when painting a clone instead of combining
2817       Allow rotation angle properties to be negative
2818       [ClutterBehaviourRotate] Fix up some breakage from the cogl-float branch merge
2819       [tests/conform] Copy in redhand.png
2820       Replaced ClutterFixed constants in color_{darken,lighten} with float
2821       [cogl-gles2-wrapper] Convert texture unit settings to be a static sized array
2822       [cogl-gles2-wrapper] Actually call glActiveTexture
2823       Add an environment variable to disable mipmapped text
2824       [tests/tools] Don't install libdisable-npots.so
2825       [clutter-texture] Use a GThreadPool for loading async textures
2826       [cogl-pango-glyph-cache] Fix compiler warning on 64-bit
2827       Fix warning in clutter-backend-sdl
2828       [eglnative] Add -I flags for the clutter dir in the src and build dirs
2829       Set the mapped flag on the stage in the SDL and eglnative backends
2830       Fix out of tree builds
2831       Remove use of $(builddir)
2832       [README] Small typo fix
2833       Change cogl_path_rectangle and cogl_path_round_rectangle to take x1,y1,x2,y2
2834       [cogl-path] Minor fix to gtk-doc
2835       Count timeline frames using the FPS instead of an integer interval
2836
2837 Owen W. Taylor (7):
2838       Honor ACLOCAL_FLAGS in autogen.sh
2839       Add gobject-introspection annotations
2840       Fix x/y confusion for GL_TEXTURE_RECTANGLE_ARB
2841       Use COGL to establish GL state for ClutterGLXTexturePixmap
2842       Add (out) annotations for ClutterActor
2843       Allow NULL for clutter_text_set_text()
2844       Avoid drawing twice if relayout queues a draw
2845
2846 Raymond Liu (2):
2847       [text] Crash when multi-byte utf8 text exceeds max_length
2848       [text] Insertion of multi-byte characters broken
2849
2850 Robert Bragg (28):
2851       [Cogl] Renames cogl_fog_set to cogl_set_fog for consistency
2852       [cogl-material] Fixes some dirty flag checks
2853       [cogl-vertex-buffer] Some fixes for texturing and color arrays
2854       [docs] Various gtk-doc updates for Cogl
2855       [tests] Some improvements for test-pixmap
2856       [Cogl] cogl_clip_{set•,unset} renamed to cogl_clip_{push*,pop}
2857       [Cogl] Renames cogl_paint_init to cogl_clear and adds a cogl_disable_fog function
2858       [cogl-color.c] #include fix for the cogl_set_source_color prototype
2859       [Cogl] the cogl_get_•_matrix functions now work with CoglMatrix types
2860       [Cogl] Fixes automatic handling of the GL blend enable state.
2861       [cogl-material] Always glBindTexture when flushing material state
2862       [Cogl] Remove a debugging assert that was triggering on false positives
2863       [test-vertex-buffer-contiguous] Improves the texturing test
2864       [cogl-matrix] Adds padding to CoglMatrix
2865       [cogl-matrix] Documents that CoglMatrix members should be considered read only
2866       Removes need for casting (const float •) to (GLfloat *) in _cogl_set_clip_planes
2867       80 char fix
2868       Avoid casting CoglMatrix to a GLfloat • when calling glGetFloatv
2869       Explicitly make the modelview-matrix current in cogl_{rotate,transform,etc}
2870       Use Cogl enum when making modelview-matrix current in cogl_{rotate,transform,etc}
2871       Finish GLES{1,2} support for client side matrix stacks
2872       Maintain the Cogl assumption that the modelview matrix is normally current
2873       Merge branch 'cogl-client-matrix-stacks'
2874       [cogl-vertex-buffer] Add a flush of attribute changes in the •_draw() functions
2875       [cogl-vertex-buffer] Allow querying back the number of vertices a buffer represents
2876       [cogl-vertex-buffer] fix cogl_vertex_buffer_draw_elements prototype
2877       [tests] Adds an interactive cogl vertex buffer unit test
2878       [cogl] Don't endlessly print the same warning regarding layer fallbacks
2879
2880 Robert Staudinger (1):
2881       [build] Add cogl.h to the built sources list
2882
2883 Shane Bryan (1):
2884       Bug 1434 - _NET_WM_NAME not set before realize
2885
2886 Tomas Frydrych (3):
2887       Fixed handling of enter and leave events in clutter_x11_handle_event()
2888       Fix clutter_x11_texture_pixmap_get/set_property() following change of PROP_WINDOW type
2889       [x11] Only update cached last event time if we have a real timestamp.
2890
2891 Øyvind Kolås (11):
2892       Added a mutex for clutter asynchronous textures threads.
2893       Bail early in clutter_texture_paint if opacity == 0
2894       Add a warning for recursive emit_event
2895       Change the default size of thread pool from 3 to 1
2896       [tests] Added test-texture-async
2897       [clutter-texture] add option to not block on size for loaded images
2898       [clutter-texture] remove load-size-async property
2899       Merge commit 'origin/async-texture-thread-pool' into async-size
2900       [clutter-texture] updated documentation.
2901       [clutter-texture] fixed gtk-doc formatting, and init threads in test.
2902       Merge branch 'async-texture-thread-pool'
2903
2904 Clutter 0.9.0 (30/01/2009)
2905 ===============================================================================
2906
2907  • List of changes between 0.8.6 and 0.9.0
2908
2909    » ClutterText is a new actor allowing text display, text editing
2910      both in multi-line and single-line modes, and text selection using
2911      the pointer devices and the keyboard. ClutterText supercedes both
2912      ClutterLabel and ClutterEntry.
2913    » ClutterClone is a new actor that allows cloning of other actors,
2914      both simple and composite. ClutterClone supercedes ClutterCloneTexture.
2915    » ClutterBindingPool is a new API that allows to easily add key bindings
2916      to an actor.
2917    » ClutterAnimation is a new API for implicit animations, similar to
2918      the tweening API used in toolkits like jQuery, Tween and Flash. This
2919      new API supercedes the ClutterEffect API.
2920    » ClutterAlpha uses "animation modes" instead of raw function
2921      pointers; it is still possible to pass alpha functions. The alpha
2922      functions provided by Clutter have been removed from the public
2923      API. It is possible to register global alpha functions and use
2924      them though a logical id.
2925    » The interval of the ClutterAlpha:alpha property has been changed
2926      to a floating point value in the [ -1.0, 2.0 ] range; this allowed
2927      the addition of "overshooting" easing modes.
2928    » COGL now supports backface culling.
2929    » The COGL-based Pango renderer is public API and it is accessible
2930      to developers. It is also possible to access the PangoContext used
2931      by Clutter in order to create PangoLayouts to render text.
2932    » The ClutterFixed API has been moved to COGL.
2933    » COGL does not depend on Clutter data types anymore.
2934    » The ClutterMedia interface has been overhauled: implementations
2935      now must only override the interface properties. The ranges of
2936      some properties have been changed to normalized values.
2937    » COGL now exposes only floating point entry points, and reserves
2938      the eventual conversion to fixed point only when needed. The
2939      fixed point type and macros are publicly available for developers
2940      concerned about floating point operations.
2941    » COGL has a new Vertex Attribues API that allows submitting an
2942      extensible number of vertex attributes to OpenGL in a way that
2943      does not require format conversions and allows fast re-use.
2944    » COGL has a new Material API that decouples paths from fills; it
2945      is possible to create an arbitrary path and fill it with a COGL
2946      texture. The Material API also allows setting multiple texture
2947      layers and defining the blend modes and colors.
2948    » ClutterTexture has the ability to use a worker thread to asynchronously
2949      load an image from a file, as long as the GLib threading support has
2950      been enabled prior to calling clutter_init().
2951    » Clutter now supports localization of the help output, and it
2952      also supports globally setting the text direction for non left to
2953      right locales.
2954    » ClutterCairoTexture is a new actor that allows using Cairo
2955      to draw on a ClutterTexture; since Cairo does not have an OpenGL
2956      backend, the drawing is not hardware accelerated.
2957    » Clutter has a unit testing suite, based on the GLib unit test
2958      framework, which can be used to track regressions.
2959    » A ClutterPath object has been added, and it is used by the
2960      BehaviourPath. The Path object allows defining paths using a set
2961      of coordinates and operations. A Path can be "painted" either using
2962      COGL primitives or using Cairo primitives, allowing an easier way
2963      to paint non-rectangular shaped actors.
2964    » ClutterInterval is a simple object, used by ClutterAnimation, that
2965      describes an interval between two values, and interpolates between
2966      the initial and final values of the interval.
2967
2968  • List of bugs fixed since 0.8.6
2969
2970    » #835 - Optimize clutter_actor_real_pick()
2971    » #851 - setting anchor point causes picking problem
2972    » #883 - Outstanding COGL merge issues
2973    » #1003 - Add clutter_actor_take_key_focus
2974    » #1014 - Clutter Animation API Improvements.
2975    » #1049 - Clutter doesn't support most GLSL uniforms
2976    » #1051 - WebKit/Clutter product/component?
2977    » #1058 - Build clutter-box2d with Clutter 0.8
2978    » #1066 - Clipping regression in 0.8
2979    » #1086 - virtualize stage_queue_redraw
2980    » #1105 - low level access to PangoClutter
2981    » #1106 - ClutterText instead of ClutterLabel and ClutterEntry
2982    » #1108 - Enter/Leave events logics wrt. skipped motion events
2983    » #1109 - clutter-0.8.0 fails to compile
2984    » #1123 - Crash when FBO actor is used and the stage is MINIMIZED
2985    » #1144 - Provide an option to load images asynchronously in ClutterTexture
2986    » #1162 - Add unit testing for Clutter
2987    » #1164 - Mesh API
2988    » #1172 - Disjoint paths and clip to path
2989    » #1189 - Backface culling
2990    » #1209 - Move fixed point API in COGL
2991    » #1210 - Add CoglColor API
2992    » #1211 - Drop ClutterFeatureFlags usage from COGL
2993    » #1212 - Allow only a single include file for Clutter
2994    » #1215 - Move the Pango renderer to the public API
2995    » #1219 - Clean up cogl.h
2996    » #1231 - Build fails in gles flavour in revision 3442
2997    » #1233 - CLUTTER_ALPHA_SINE_INC is broken in trunk
2998    » #1251 - Merge the Cairo texture actor in core
2999    » #1252 - Merge ClutterBehaviourPath and ClutterBehaviourBspline
3000    » #1261 - [patch] Minimize differences between gl/cogl-texture.c and
3001      gles/cogl-texture.c
3002    » #1269 - mingw32 building failed at clutter-media.c
3003    » #1270 - Update to mingw-cross-compile.sh
3004    » #1271 - mingw compiling failed:  undefined reference to
3005      `_glDrawRangeElements@24'
3006    » #1284 - Return something reasonable from clutter_x11_handle_event()
3007    » #1300 - clutter_score_remove and clutter_score_remove_all  are different
3008      in object remove
3009    » #1310 - font rendering problem
3010    » #1313 - Fix computation of camera distance
3011    » #1314 - clutter_sinx() is more inaccurate than it needs to be
3012    » #1321 - Get Matrix in float
3013    » #1323 - ClutterBehaviorDepth conflicts with other behaviors
3014    » #1325 - ClutterPath to cairo_path_t conversion functions
3015    » #1330 - We should not queue redraw for non-visible actors
3016    » #1334 - Default value for ClutterLabel::text should be "" instead of NULL
3017    » #1344 - clutter_actor_transform_stage_point gives invalid coordinates
3018      for big actors
3019    » #1352 - Weird cogl-pango.h includes in clutter-[entry|label].c
3020    » #1354 - Floating point exception when set fps>1000 and start timeline
3021    » #1361 - Unused ClutterStage::get_resolution() methods
3022    » #1365 - ClutterEntry doesn't get the cursor when it should
3023    » #1366 - disable-npots fails to build on mac
3024    » #1380 - Return booleans from CLUTTER_ACTOR_IS_• macros
3025    » #1386 - Wrong clipping dimensions for larger actors
3026    » #1387 - Clarify new-frame signal emission with advance()
3027    » #1388 - Clarify signal emission for advance_to_marker()
3028    » #1395 - behaviour_apply and behaviour_get_nth_actor are opposite on
3029      actors sequence
3030    » #1397 - clutter command line is not localized.
3031    » #1402 - Change default tile-waste from 64 to 63
3032    » #1403 - ClutterMedia::get_uri() should return allocated string
3033    » #1404 - ClutterMedia issues
3034    » #1405 - Fix properties that have X11 types to be 'long'
3035    » #1409 - Use G_SIGNAL_RUN_LAST with ::queue-redraw signal
3036    » #1410 - [patch] Implements a generic ClutterActorClone class without fbos
3037    » #1414 - avoid relayout of ClutterTexture if not syncing size
3038    » #1415 - short-circuit setting same clip again
3039
3040 Clutter 0.8.2 (25/09/2008)
3041 ===============================================================================
3042
3043  • List of changes between 0.8.0 and 0.8.2
3044
3045    » Add constructor-only properties for the :container and :actor
3046      properties of ClutterChildMeta
3047    » Resync the Clutter keysyms with X.org ones.
3048    » Documentation fixes and improvements
3049    » Allow defining ClutterColor as an object or an array inside
3050      ClutterScript UI definitions
3051    » Added the missing :perspective property to ClutterStage
3052    » Fixed the upper and lower boundaries for ClutterUnit and
3053      ClutterFixed properties
3054    » Fix a bug that prevented disabling sorting on ClutterModel
3055    » Fix a bug in clutter_timeline_list_markers()
3056    » Queue a redraw when the clip is changed
3057    » Optimize calls to push and pop the matrix when painting
3058    » Add a variable to the pkgconfig file for extracting the
3059      COGL backend, for configure-time checks
3060    » Fix a typo in cogl_path_rel_curve_to()
3061    » Fix showing the cursor after it being hidden once
3062    » Add a function for obtaining Clutter's option group without
3063      initializing Clutter
3064
3065  • List of bugs fixed since 0.8.0
3066
3067    » #856 - Teardown sequence is borked
3068    » #945 - Clipping+fbo cloning bugs
3069    » #1010 - ClutterLabel does not update the layout (again)
3070    » #1020 - TFP resyncing on MapNotify/ConfigureNotify [Andy Wingo]
3071    » #1033 - Manually parsing command line options prevents
3072      initializing clutter
3073    » #1034 - Picking doesn't work on Eee PC
3074    » #1038 - Clutter 0.8 won't build due to redefined functions
3075    » #1044 - cogl_get_viewport error
3076    » #1047 - API documentation from release tarball is not
3077      installed by "make install" [Mirco Müller]
3078    » #1048 - SIGFPE in cogl_texture_set_region() with
3079      nvidia [Gwenole Beauchesne]
3080    » #1062 - clutter_actor_query_coords() replacement in
3081      0.8 [Gwenole Beauchesne]
3082    » #1069 - Warnings with ClutterScore
3083    » #1071 - clutter_timeline_get_duration doesn't always work
3084    » #1075 - Difficult to bind clutter_stage_new
3085    » #1080 - clutter_stage_read_pixels has upside-down y coordinate
3086    » #1082 - Texture bitmap is destroyed in wrong way
3087    » #1085 - Cursor is in wrong position on ClutterEntry if set
3088      x-align property
3089    » #1090 - Label somtimes returns natural_width < min_width [Johan Bilien]
3090    » #1091 - WM_MOUSEWHEEL (scroll-event) not handled
3091      correctly [Roman Yazmin]
3092    » #1099 - No ClutterScript API to get a list of IDs in a given
3093      file [Noah Gibbs]
3094    » #1100 - WM_SIZE not handled correctly, user_resize and
3095      window_style correction
3096    » #1103 - Two typos in clutter documentation
3097    » #1121 - Setting anchor point doesn't work if set too early
3098    » #1124 - Clutter causes an additional size request in each
3099      allocation [Johan Bilien]
3100    » #1125 - Save an extra pango_layout_get_size in many
3101      cases [Johan Bilien]
3102    » #1130 - CLUTTER_MOTION is not emitted when time goes
3103      backwards. [Pierce Liu]
3104    » #1137 - Setting the anchor point does not trigger a re-paint
3105    » #1145 - Flicker on resize the window
3106    » #1154 - clutter_timeout_pool_new() documentation doesn't say
3107      how to free [Murray Cumming]
3108
3109 Clutter 0.8.0 (10/07/2008)
3110 ===============================================================================
3111
3112  • List of changes between 0.7.6 and 0.8.0
3113
3114    » Assume that non-power-of-two sized textures are always supported
3115      if texture-from-pixmap support is present.
3116
3117    » Increase documentation coverage.
3118
3119    » Disable the XINPUT support by default.
3120
3121    » Improve the behaviour of clutter_actor_get_transformed_size().
3122
3123    » Fix a copy-and-paste bug which broke the vertex shaders.
3124
3125  • List of bugs fixed since 0.7.6
3126
3127    » #983 - cogl-bitmap-fallback.c compiler error/warning due to cast issue
3128    » #985 - MSC math.h / M_PI issue
3129    » #998 - clutter always captures X input events
3130    » #1000 - clutter-x11 should define gtypes for its enumerations
3131    » #1004 - Fix "edge-detect" shader
3132    » #1007 - Fix TFP fallback mechanism
3133    » #1008 - tfp still a bit borked
3134    » #1010 - ClutterLabel does not update the layout
3135    » #1011 - Fix TFP fallback mechanism (take 2)
3136    » #1012 - clutter_stage_read_pixels() has incorrect alpha data
3137              on some (most?) cards"
3138    » #1013 - Per device grabs are not obeyed in pointer device propagation.
3139    » #1015 - Cloning unparented actors with FBOs doesn't work with new
3140              layout code
3141    » #1016 - Changing window-redirect-automatic property after creating
3142              ClutterX11TexturePixmap doesn't work
3143    » #1019 - clutter-frame-source.h not included by clutter.h
3144    » #1022 - extern inline functions in clutter-fixed.h
3145    » #1033 - Manually parsing command line options prevents initializing
3146              Clutter
3147
3148 Clutter 0.7.6 (27/06/2008)
3149 ===============================================================================
3150
3151  • List of changes between 0.7.4 and 0.7.6
3152
3153    » Removed the ClutterBackend::get_display_size() and wrappers.
3154
3155    » Verify that the vertex shaders are successfully compiled when binding
3156      them.
3157
3158    » Increase safety of the ClutterGLXTexturePixmap
3159
3160  • List of bugs fixed since 0.7.4
3161
3162    » #993 - Underline colors are sometimes wrong
3163
3164 Clutter 0.7.4 (25/06/2008), "Killer Koi"
3165 ===============================================================================
3166
3167  • List of changes between 0.7.2 and 0.7.4
3168
3169    » Fix the ClutterEntry actor after the clip API changes in COGL.
3170
3171    » Update the shaders generated for GLES 2.0.
3172
3173    » Add the ability to add search paths and look up files from
3174      ClutterScript. This allows defining directories to store the
3175      images to be loaded by a ClutterTexture.
3176
3177    » Fix the GLES 1.1 support.
3178
3179    » Warn if no usable pointer device are available on X11 backends.
3180
3181    » Improve the request for the best pixel format on win32.
3182
3183    » Fix a regression when sizing the ClutterStage on backends that
3184      only support fixed size stages; now setting any size will result
3185      in Clutter ignoring the request, like it happened in Clutter 0.6.
3186
3187    » Add a method to ClutterBackend to retrieve the display size.
3188
3189    » Fix clutter_sinx() for angles > CFX_2PI - CFX_ONE.
3190
3191  • List of bugs fixed
3192
3193    » #833 - ClutterEntry should clip glyphs rather than itself
3194    » #858 - Support for multiple devices (using XINPUT)
3195    » #879 - sampler2DRect used by test-shader.c doen't work with non-rect textures
3196    » #979 - Wrong call convension for SwapIntervalProc in win32 backend
3197    » #987 - clutter-event.c c99 variable declaration
3198    » #988 - cursor position wrong with multibyte invisible char
3199    » #989 - Add a search path for clutter script assets
3200
3201 Clutter 0.7.2 (23/06/2008), "Kedoke"
3202 ===============================================================================
3203
3204  • List of changes between 0.7.0 and 0.7.2
3205
3206    » ClutterTexture has a new :keep-aspect-ratio property; when it is set
3207      to TRUE the texture will return a preferred width maintaining the
3208      aspect ratio with the given height and a preferred height maintaining
3209      the aspect ratio with the given width. This allows to set the width or
3210      the height and have the texture automatically request the height or the
3211      width respectively while maintaining the aspect ratio of the original
3212      image.
3213
3214    » Added XINPUT support on the X11 backends; this provides an initial
3215      support for multiple input devices. The API is X11-specific, and
3216      provides support for querying at run-time support for XINPUT, for
3217      getting a list of input devices and for getting the type of each
3218      input device. 
3219  
3220    » The 'fruity' backend also features multiple device support.
3221
3222  • List of bugs fixed
3223
3224    » #816 - clutter_actor_request_coords() should take a const box.
3225    » #836 - Optimize clutter_label_query_coords()
3226    » #905 - Paint cursor directly
3227    » #918 - Group doesn't clip if it's children are clipped
3228    » #953 - Actors are not hidden before unrealized or disposed
3229    » #960 - PangoContext creation code should not be duplicated
3230    » #970 - clutter_actor_get_paint_area confusion
3231    » #971 - Minor ClutterActor cleanups
3232    » #972 - Better parenting
3233    » #973 - unreffing ClutterScore may segfault
3234    » #981 - clutter_stage_read_pixels temprow fix
3235    » #982 - __COGL_GET_CONTEXT MS compiler issue
3236    » #984 - pango_clutter_render_layout() declared void
3237
3238 Clutter 0.7.0 (13/06/2008), "Booska"
3239 ===============================================================================
3240
3241  • List of changes between 0.6 and 0.7.0
3242
3243    » COGL, the underlying GL abstraction layer in Clutter, has been
3244      completely rewritten from the ground up. Its no longer a conceptual
3245      hack but a documented, fully featured library pretty much in its
3246      own right. COGL abstracts over Open GL, Open GL ES 1.1 and now
3247      OpenGL ES 2.0, providing a smart uniform API over these libraries
3248      with various utility features such as texture tiling abstractions,
3249      paths and primitive rendering, FBO, shaders, etc.
3250
3251    » Clutter now provides an experimental backend for the Apple(tm)
3252      iPhone and iPod Touch families of products.
3253
3254    » The Windows platform is now natively supported instead of
3255      relying on the SDL libraries. The win32 backend is still
3256      experimental.
3257
3258    » The X11 based backends now feature support for Actors that wrap
3259      external X drawables (i.e the texture-from-pixmap extension and
3260      fallbacks)
3261
3262    » Clutter now seamlessly supports multiple stages on the backends
3263      that allow this feature.
3264
3265    » The custom Pango renderer has been completely rewritten, now using
3266      the more modern and maintained PangoCairo (instead of FT2), and avoids
3267      nasty subclassing hacks, supports smooth fast scaling of text, has
3268      many edge case issues fixed and it still is very efficient (using
3269      a texture glyph cache). It is even a little bit faster.
3270
3271    » Better texture support, timeline improvements, ClutterLabel and
3272      ClutterEntry improvements, and container child properties are among
3273      the new features - too many to fit in the NEWS file.
3274
3275  • List of bug fixes
3276
3277    » #358 - "window resizing doesn't show scaled stage"
3278    » #425 - "COGL enhancements"
3279    » #439 - "timing related pong lockup due to timeline_rewind somtimes
3280             being ignored by timeline_timeout_func"
3281    » #450 - "ClutterScore API enhancements"
3282    » #641 - "add markers to timelines"
3283    » #666 - "Large font size leads to missing ""W"" and wrong ""J"" character"
3284    » #713 - "texture from pixmap"
3285    » #791 - "default actors to visible"
3286    » #800 - "CLUTTER_ALPHA_EXP_INC overflows"
3287    » #804 - "clutter_actor_get_opacity returns composited alpha"
3288    » #810 - "100 % CPU load with clutter_main()"
3289    » #815 - "Split up request
3290    » #816 - "clutter_actor_request_coords() should take a const box."
3291    » #822 - "Fix clutter_actor_lower()"
3292    » #823 - "Clean-up GLism's in clutter-core (below cogl)"
3293    » #824 - "ClutterEntry should handle its own key events"
3294    » #825 - "Removes GLisms from clutter-main.c"
3295    » #831 - "configure.ac missing osx flavour help"
3296    » #834 - "add ability to set anchor in json"
3297    » #836 - "Optimize clutter_label_query_coords()"
3298    » #839 - "Crash if put cursor over topmost pixel"
3299    » #840 - "Implement prepare-paint and finish-paint signals."
3300    » #848 - "Events dispatch doesn't work in GLX Xephyr"
3301    » #850 - "Impossible to set ClutterRectangle border opacity to a value
3302             different from the surface opacity"
3303    » #857 - "cogl_color doesn't work in PowerVR PC Viewer"
3304    » #860 - "ClutterAlpha leaks"
3305    » #864 - "Allow instantiating and subclassing of ClutterStage"
3306    » #871 - "Two problems with closing stages"
3307    » #873 - "clutter_x11/glx_texture_pixmap issues"
3308    » #874 - "Clipping on GL ES"
3309    » #875 - "Clutter Label Issues"
3310    » #881 - "Timelines require precise system timing"
3311    » #882 - "Allow child properties for containers implementing the
3312             ClutterContainer interface"
3313    » #884 - "Add clutter_alpha_set_closure"
3314    » #889 - "Error when building clutter-ivan with eglx"
3315    » #891 - "assertion failed when test-behave exits"
3316    » #892 - "Incorrect results using  rotation-[center|angle] properties"
3317    » #894 - "Artifacts with the pango renderer"
3318    » #900 - "clutter_actor_lower() and friends do not queue redraw"
3319    » #906 - "Implement timing of the events"
3320    » #908 - "Support transform from G_TYPE_INT to ClutterUnit"
3321    » #909 - "OSX: missing NULL pointer handling"
3322    » #910 - "OSX: missing memory pool"
3323    » #911 - "OSX: add multistage support"
3324    » #912 - "Invalid use of int• as parameter for glGetIntegerv"
3325    » #913 - "cogl fails to build on OSX"
3326    » #914 - "ClutterEntry is confused about characters vs. bytes"
3327    » #915 - "clutter_entry_set_max_length(-1) misbehaves"
3328    » #916 - "ClutterKeyEvent:unicode_value is ignored"
3329    » #919 - "Replacement pango renderer"
3330    » #927 - "Created ports for clutter
3331    » #928 - "Reparenting a child that itself is a container doesn't work"
3332    » #930 - "add support for quartz imagebackend"
3333    » #931 - "suspicious size allocation for pixel data"
3334    » #933 - ""X Error of failed request" when attempting to call
3335             clutter_actor_request_coords()"
3336    » #934 - "Update clutter-tutorial to build with clutter from svn trunk."
3337    » #947 - "Destroying a stage is messy"
3338    » #948 - "Remove texture rectangle support"
3339    » #950 - "AltGr not handled"
3340    » #951 - "Fix clutter_entry_init() in trunk"
3341    » #952 - "Fix test-textures in trunk"
3342    » #953 - "Actors are not hidden before unrealized or disposed"
3343    » #955 - "ClutterLabel is missing fallback resolution handling"
3344    » #959 - "Multiple minor improvements"
3345    » #960 - "PangoContext creation code should not be duplicated"
3346    » #961 - "Fails to build on OSX (query/request_coords is gone)"
3347    » #964 - """unrealized"" signal of ClutterActor wrongly named"
3348
3349 Clutter 0.6.0 (18/02/2008)
3350 ==========================
3351
3352  • List of changes between 0.5.6 and 0.6.0
3353
3354    » New documentation sections inside the API reference, describing
3355      the animation framework.
3356
3357    » New API in ClutterActor for computing the actor's vertices in
3358      the plane of a given ancestor and accessors to query whether an
3359      actor is scaled or rotated
3360
3361  • List of bug fixed
3362
3363    » #613 - Extend point transformation API
3364    » #779 - Rounding error in ClutterBehaviourScale [Havoc Pennington]
3365    » #787 - tiled textures are broken
3366    » #796 - segmentation fault when setting label text
3367
3368 Clutter 0.5.6 (11/02/2008)
3369 ==========================
3370
3371  • List of changes between 0.5.4 and 0.5.6
3372
3373    » Reverted a last minute change in the depth sorting function of
3374      ClutterGroup.
3375
3376    » Added the clutter_actor_move_anchor_point() family of functions,
3377      which will set the anchor point at the given coordinates while
3378      adjusting the actor postion so that the relative position of the
3379      actor toward its parent remains the same.
3380
3381    » Provide a fallback for finding the Clutter alpha functions inside
3382      a UI definition for ClutterScript in case g_module_open() fails.
3383
3384    » Add initial Frame Buffer Objects support in ClutterTexture; using
3385      FBOs, where supported by the hardware and drivers, it's possible to
3386      create a ClutterTexture from any actor.
3387
3388  • List of bugs fixed
3389
3390    » #386 - Stage is white unless a timeline is present
3391    » #439 - timing related pong lockup due to timeline rewind...
3392    » #440 - 1 pixel line flickering
3393    » #442 - Shader support
3394    » #451 - Improve font rendering quality (Pango)
3395    » #452 - Textures are shown with distortion on Solaris/SPARC
3396    » #526 - OSX backend
3397    » #533 - Clutter stage is not shown under some conditions
3398    » #540 - ClutterStage isn't always respecting requests to change size
3399    » #549 - Backend offscreen API is broken
3400    » #613 - Extend point transformation API
3401    » #635 - Fix buffer overflow in clutter_texture_get_pixbuf() [Gwenole
3402      Beauchesne]
3403    » #643 - Superfluous "filter-quality" setting in texture_upload_data()?
3404      [Gwenole Beauchesne]
3405    » #689 - Rotating actor through layers does not handle opacity
3406      correctly [Josh Stewart]
3407    » #710 - Make "box-blur" test shader work in some way [Gwenole Beauchesne]
3408    » #719 - X11 backend does not check window field in events [Havoc
3409      Pennington]
3410    » #724 - ClutterLabel reports wrong height when lines > 1
3411    » #749 - "reactive" property does not change
3412    » #751 - missing XSync in clutter-event-x11.c:xembed_set_info() [Havoc
3413      Pennington]
3414    » #756 - clutter_actor_get_abs_size returns bogus values
3415    » #769 - OSX backend fails to build
3416    » #770 - OSX: passing incompatible pointer type
3417
3418 Clutter 0.5.4 (25/01/2008)
3419 ==========================
3420
3421  • List of changes between 0.5.2 and 0.5.4
3422
3423    » A clutter-x11-<major>.<minor> pkg-config file is installed along
3424      with the clutter-<major>.<minor> and clutter-<backend>-<major>.<minor>
3425      ones, for libraries and applications depending on the X11-based
3426      backends (GLX and EGLX).
3427
3428    » Textures are correctly unrealized before changing and freeing the
3429      main GL context.
3430
3431    » It is now possible to block the automatic call to clutter_main_quit()
3432      when closing the stage window using the frame controls by connecting
3433      an handler for the ::event signal on the Clutter stage and checking
3434      for the CLUTTER_DELETE event type and returning TRUE. This allows
3435      the usage of other main loops with GLib reactors (like Python's twisted)
3436      with Clutter without triggering assertions by closing the stage window.
3437
3438  • List of bugs fixed
3439
3440    » #564 - Add more precise clutter_qdivx() [Gwenole Beauchesne]
3441    » #614 - ClutterActor API inconsistencies
3442    » #640 - ClutterTexture unrealized with no GL context
3443    » #654 - Under heavy load clutter sometimes drops the last frame of
3444      a timeline [Johan Bilien]
3445    » #672 - Event handling in osx backend is broken [Tommi Komulainen]
3446    » #684 - Improve test-scale by also using anchor point [Jaap A. Haitsma]
3447    » #695 - clutter-shader: Invalid format string for
3448      gssize [Tommi Komulainen]
3449    » #696 - cogl_get_proc_address requires GLX [Tommi Komulainen]
3450    » #709 - clutter_effect_scale inconsistent with clutter_actor_set_scale
3451    » #714 - clutter_event_copy for enter/leave event generates
3452      extra unref [Neil Roberts]
3453    » #715 - Type errors in test-shader
3454    » #720 - BehaviourScale not working in python after recent
3455      API change [Josh Stewart]
3456
3457 Clutter 0.5.2 (14/01/2008)
3458 ==========================
3459
3460  • List of changes between 0.5.0 and 0.5.2
3461
3462    » ClutterModelDefault has been renamed to ClutterListModel
3463
3464    » ClutterModel now has vector-based variants for append, prepend and
3465      insert methods; these methods are useful for bindings
3466
3467    » Add units-based variant for clutter_actor_move_by()
3468
3469  • List of bugs fixed
3470
3471    » #694 - Handle GLhandleARB on OS X [Tommi Komulainen]
3472    » #700 - Fix for clutter_effect_rotate() [Neil Roberts]
3473
3474 Clutter 0.5.0 (02/01/2008)
3475 ==========================
3476
3477  • List of changes between 0.4.2 and 0.5.0
3478
3479    » New event handling system: every actor with the CLUTTER_ACTOR_REACTIVE
3480      flag set will receive events from the underlying backend; the event
3481      propagation chain will be walked in two directions (from the actor to
3482      the top-level container and back) with the ability to block it in
3483      both phases.
3484
3485    » ClutterShader, an abstraction over the programmable OpenGL pipeline.
3486
3487    » ClutterScore, an object for controlling timelines; using a score
3488      instance is possible to start multiple timelines at once, or start
3489      a timeline after another has emitted the ::complete signal.
3490
3491    » ClutterScript, an object for parsing a scene from an external file or
3492      a buffer; the scene is described using JSON (JavaScript Object Notation):
3493      every object is defined using its class and properties, and container
3494      objects can have their children defined as well. It is also possible
3495      do describe top-level objects such as timelines and behaviours, and to
3496      automatically connect signal handlers to signal names.
3497
3498    » ClutterTimelines duration can now be set in milliseconds using the
3499      :duration property; the default framerate will be used to compute the
3500      actual duration in frames. The default framerate will be set by the
3501      backend, and can be overridden by the application.
3502
3503    » ClutterTimelines direction can now be set using the :direction
3504      property; a timeline can be set to proceed forward or backward,
3505      and the direction can also be change while the timeline is still
3506      running.
3507
3508    » New, experimental OSX backend.
3509
3510    » Build environment for MS VisualStudio 2005.
3511
3512    » ClutterModel, a generic list-based model object that can be used to
3513      implement actors following the Model-Viewer-Controller design pattern.
3514      Clutter provides a default implementation of ClutterModel, called
3515      ClutterModelDefault and using the GSequence data structure from GLib
3516      to optimize insertion and look up.
3517
3518    » Add the ability to grab pointer and keyboard events: if an actor
3519      is set to have a grab it'll be the only one receiving events until
3520      it releases the grab.
3521
3522    » Add the ability for an actor to receive the key focus; an actor
3523      with key focus will always receive the key events, even if it did
3524      not acquire the keyboard grab.
3525
3526    » It is now possible to set the GL "fog" (also known as "depth cueing")
3527      effect on the ClutterStage; if the fog is enabled, actors farther
3528      away from the view point will fade into the stage background color.
3529
3530    » Each actor now has an "anchor point", a point defined in the actor's
3531      coordinate space that will be used as the origin when scaling and
3532      rotation transformations.
3533
3534    » Every pixel-based API has been doubled with a corresponding
3535      ClutterUnits-based function (postfixed with a '-u'), for instance:
3536
3537        clutter_actor_set_position() - clutter_actor_set_positionu()
3538        clutter_actor_set_size()     - clutter_actor_set_sizeu()
3539        clutter_actor_set_depth()    - clutter_actor_set_depthu()
3540
3541      This allows sub-pixel precision and device independence.
3542
3543    » The ClutterLabel actor now tries very hard to provide a sane
3544      default size, if no bounding box has been requested; this fixes
3545      the :alignment property and allows the addition of the :justify
3546      property.
3547
3548    » The SDL backend can now be compiled under win32 with MingW; this
3549      backend is still marked as experimental.
3550
3551    » The OSX backend allows the compilation of Clutter under OS X; this
3552      backend is experimental.
3553
3554  • List of bugs fixed
3555
3556    » #423 - All actors should emit events rather than just the stage
3557    » #424 - Interface definition files
3558    » #443 - ClutterModel implementation
3559    » #480 - Uninitialized variable in
3560      path_alpha_to_position() [Gwenole Beauchesne]
3561    » #511 - clutter_stage_get_actor_at_pos problem
3562    » #512 - clutter window moves when stage actor is scaled
3563    » #518 - XEMBED not supported in eglx backend
3564    » #519 - Should have an Atom cache initialized on start up
3565    » #520 - Delete after multibyte unicode chars in
3566      ClutterEntry [Tommi Komulainen]
3567    » #522 - Array out of bounds indexing [Tommi Komulainen]
3568    » #523 - cogl portability fixes [Tommi Komulainen]
3569    » #524 - missing config.h includes [Tommi Komulainen]
3570    » #525 - Redundant include in cogl/gl [Tommi Komulainen]
3571    » #531 - Extraneous "new-frame" signal generated
3572    » #532 - clutter_actor_set_scale_with_gravityx()
3573      precision [Gwenole Beauchesne]
3574    » #544 - clutter_color_to_hlsx is broken [Neil Roberts]
3575    » #546 - ClutterStageState doesn't make sense
3576    » #550 - Wanted: Set Actor's position based on center or other
3577      edges/corners of quadrangle
3578    » #557 - ClutterScript should support complex properties for third
3579      party classes
3580    » #558 - Unmerge UI definitions
3581    » #566 - ClutterEntry does not scroll the text to the
3582      right [Gwenole Beauchesne]
3583    » #577 - Inconsistent naming of behaviour properties
3584    » #580 - Fix call to cogl_enable() [Gwenole Beauchesne]
3585    » #582 - api naming inconsistence between
3586             clutter_behaviour_path_append_knots and
3587             clutter_behaviour_bspline_append
3588    » #584 - Typo on clutter_effect_rotate_x documentation page
3589    » #592 - Fix build on trunk [Gwenole Beauchesne]
3590    » #596 - ClutterTexture tileing logic is a little borked
3591    » #597 - ClutterGroups not pickable
3592    » #600 - fix ClutterLabel layout computing when no box has been set
3593    » #604 - Color param for Label constructor should be
3594      const [Jonathon Jongsma]
3595    » #606 - enable depth test in GL
3596    » #608 - Control motion events frequency
3597    » #614 - ClutterActor API inconsistencies
3598    » #616 - ClutterTexture doesn't respect width set from clutterscript
3599    » #617 - ClutterEffect Improvements
3600    » #618 - ClutterScript name/id confusion
3601    » #619 - clutter_behavior_rotate angle properties should accept
3602      negative values
3603    » #628 - clutter_actor_rotate_x() is a setter, not a modifier
3604    » #629 - There is no clutter_actor_get_position()
3605    » #634 - clutter_behaviour_path_new() documentation unclear
3606    » #637 - add depth cueing support to the stage
3607    » #645 - Fix crash in clutter_label_new_full() [Gwenole Beauchesne]
3608    » #647 - Cannot hide the stage
3609    » #648 - Hidden fullscreen stage doesn't come back as fullscreen
3610    » #652 - reference needed on actor being source of last motion_event
3611    » #661 - clutter_actor_set_width() documentation is vague
3612    » #662 - clutter_actor_set_opacity() documentation doesn't describe values
3613    » #665 - ClutterBehaviourEllipse tilts are broken
3614    » #670 - Fix clutter_container_lower_child() [Gwenole Beauchesne]
3615    » #673 - ClutterActor "captured-events" signal documentation wrong
3616    » #674 - ClutterActor::get_depth() and set_depth() vfuncs not
3617      used [Murray Cumming]
3618    » #675 - update subregions of cluttertextures
3619    » #678 - ClutterLabel size allocation still bogus
3620
3621 Clutter 0.4.0 (07/08/2007)
3622 ========================
3623
3624  • List of changes between 0.3.1 and 0.4.0
3625
3626    » Many documentation additions and improvements.
3627
3628    » Display DPI now honours on backends its can be queried.
3629
3630    » Various big endian related fixes.
3631
3632    » ClutterBehaviourEllipse and ClutterBehaviourRotate API and
3633    internals improvements.
3634
3635    » Add basic tslib support to eglnative backend (for touchscreen events)
3636
3637    » clutter_stage_get_actor_at_pos should now work on 16bpp displays.
3638
3639    » New ClutterEffect rotation calls.
3640
3641    » Allowing user resizing of the stage now optional.
3642     (implemented by glx backend only currently)
3643
3644    » ClutterEntry UTF8 fixes and improved automatic initial sizing.
3645
3646    » Make ClutterActor GInitiallyUnowned.
3647
3648    » New ClutterBox API: each box has now a colour and a margin (distance
3649      between the inner-border and the children); plus, each packed child
3650      has a padding. Margins and paddings are expressed in ClutterUnits,
3651      to ease the transition to the device independent units. You can use
3652      clutter_box_set_default_padding() if you want the same padding for
3653      each child.
3654
3655  • List of bug fixed
3656    » #390 - clutter_stage_get_actor_at_pos broken on 16bpp displays.
3657    » #398 - inconsistent type for return value of clutter_event_get_state
3658    » #403 - Critical error when removing texture actor
3659    » #404 - Solaris build error with OpenGL, missing
3660             GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB and GL_TEXTURE_RECTANGLE_ARB
3661    » #409 - depth mismatch between visual (32) and window (24)
3662    » #407 - metadata-available signal #ifdef'ed out
3663    » #413 - Clutter compile error with Sun Studio C compiler
3664    » #426 - typo in sdl_backend
3665    » #414 - ClutterEntry invisible if size not set
3666    » #434 - clutter_color_from_pixel incorrectly interprets alpha value
3667    » #435 - clutter_color_subtract does the opposite of its documentation
3668    » #436 - clutter-behaviour-depth always perform "from deep to shallow"
3669
3670 Clutter 0.3.1 (06/07/2007)
3671 ========================
3672
3673  • List of changes between 0.3 and 0.3.1
3674    » EGL. There are now 2 experimental EGL backends;
3675      - 'eglx', the former EGL on X11 implementation (now renamed)
3676      - 'eglnative', a new EGL 'native' backend which supporting non
3677        X11 EGL implementations (i.e framebuffer).
3678
3679    » ClutterGroup now returns correct size when a child is removed.
3680
3681    » Missing redhand.png added to distro tarball (fixing tests that require
3682      it)
3683
3684    » Fix picking in ClutterBox
3685
3686    » Rectangle border creation fixed.
3687
3688    » Fix overflow in Exponential Alpha funcs.
3689
3690    » Many API documentation fixes and improvements.
3691
3692    » ClutterEffect cleanups.
3693
3694    » ClutterEntry cleanups.
3695
3696    » Check for versioned XFixes library (GLX backend).
3697
3698    » More X error traps in GLX backend.
3699
3700 Clutter 0.3 (29/06/2007)
3701 ========================
3702
3703  • List of changes between 0.2.3 and 0.3
3704    » Clutter now supports both switchable windowing system and GL backends.
3705      Window systems supported include GLX, EGL and SDL.
3706
3707      GL support includes OpenGL 1.2+ and OpenGL ES 1.1. This is
3708      provided by a small basic abstraction layer 'cogl.h'. Cogl is not
3709      yet documented - usage external to Clutter is not yet advised.
3710
3711      Backends may provide specific command line options.
3712
3713      Notes;
3714
3715      GLX
3716      ---
3717      The GLX backend is built by default and is currently the most
3718      developed, supported and featured windowing system backend. Only
3719      OpenGL is supported via GLX.
3720
3721      SDL
3722      ---
3723      Clutter has experimental support for using SDL. Open GL is supported as
3724      is OpenGL ES via Dogles (very experimental).
3725
3726      EGL
3727      ---
3728      Clutter has experimental support for using EGL. Only Open GL ES
3729      is supported by EGL.
3730
3731      EGL support assumes an EGL implementation running atop X Windows.
3732
3733      Open GL ES.
3734      -----------
3735
3736      Clutter now has experimental support for Open GL ES.
3737      Current known issues;
3738
3739      + Unrealising a ClutterTexture will not move pixel data from video
3740        into system memory but simply destroy it.
3741      + BGRA, YUV Texture data not currently supported.
3742
3743      (Use the clutter_feature API to probe for above at runtime)
3744
3745      Open Source ES implementations this has been tested against
3746      include `Vincent' and `dgles'.  Support for commerical
3747      implementations may require modifications to the configure.ac
3748      script.
3749
3750      vincent: http://ogl-es.sourceforge.net/
3751               (Also see: http://svn.o-hand.com/repos/misc/trunk/ogles/ )
3752
3753      dgles: http://developer.hybrid.fi/dgles/index.html
3754
3755    » New ClutterEffect class provides a simplified (and thus less flexible)
3756      API wrapping around behaviours, alphas and timelines.
3757    » New Behaviours - bspline, ellipsis, rotation.
3758    » New built in Alpha functions;
3759       CLUTTER_ALPHA_SINE_INC
3760       CLUTTER_ALPHA_SINE_DEC
3761       CLUTTER_ALPHA_SINE_HALF
3762       CLUTTER_ALPHA_SQUARE
3763       CLUTTER_ALPHA_SMOOTHSTEP_INC
3764       CLUTTER_ALPHA_SMOOTHSTEP_DEC
3765       CLUTTER_ALPHA_EXP_INC
3766       CLUTTER_ALPHA_EXP_DEC
3767    » New Actors and interfaces
3768      + ClutterLayout, for writing extended layout support in actors
3769      + ClutterContainer, for generic container actors
3770      + ClutterBox, ClutterVBox and ClutterHBox layout actors.
3771      + ClutterEntry, text entry actor
3772    » ClutterTexture now handles BGRA, YUV and premultiplied alpha data.
3773    » All internal math now fixed point based.
3774    » Clutter now has it own internal event queue.
3775    » ClutterStage new features;
3776      + Title property for naming in window decorations.
3777      + Perspective setting - The stages perspective can now be modified.
3778    » New Clutter_actor •project API calls allow for querying of tranformed
3779      actor vertices and points.
3780    » New Clutter Feature checks.
3781    » Initial ClutterUnit implementation for device independant positioning.
3782  • List of Bugs fixed
3783    » Various issues with very poor performance and Intel drivers.
3784    » #138 Fix typo in x rotation transform.
3785
3786 Clutter 0.2.3 (2007-04-11)
3787 ==========================
3788
3789  • List of changed between 0.2.2 and 0.2.3
3790    » Fixes to tile based textures and again clutter_texture_get_pixbuf(). [Matthew]
3791    » Implement Gravity for ClutterScaleBehaviour. [Matthew, Rob]
3792
3793 Clutter 0.2.2 (2007-03-22)
3794 ==========================
3795
3796  • List of changed between 0.2.1 and 0.2.2
3797    » Addition of basic XEMBED support for clutter stage. [Matthew]
3798    » Fixes to clutter_texture_get_pixbuf(). [Matthew]
3799    » Export clutter_group_remove_all and add associated fixes. [Matthew]
3800
3801 Clutter 0.2.1 (2007-02-07)
3802 ==========================
3803
3804  • List of changed between 0.2.0 and 0.2.1
3805    » Add even faster double to integer (and back) conversion
3806      functions. [Tomas]
3807    » Fix some errors in the fixed point sine waveform
3808      function. [Tomas]
3809    » Use fixed point math in the Pango renderer. [Tomas]
3810    » Improve the GL version check. [Matthew]
3811    » Add a square waveform function. [Emmanuele]
3812  • List of bugs fixed
3813    » #215 - macro CLUTTER_MARK() not disabled for non-debug builds
3814
3815 Clutter 0.2 (18-01-2007)
3816 ========================
3817
3818  • List of changes between 0.2 and 0.1
3819    » Bindings, GStreamer and GTK+ dependencies moved out of tree:
3820      now Clutter strictly depends on Xlibs, OpenGL and GdkPixbuf only.
3821    » Actors now have an initial floating reference; this means you
3822      don't have to explicitely unref them: every memory an actor
3823      allocates will be freed when the group containing the actor will
3824      be destroyed.
3825    » Add basic run-time detection of GL features.
3826      + Use GL_TEXTURE_RECTANGLE_ARB if available.
3827      + Attempt to set up sync to vblank (set CLUTTER_VBLANK=none to disable)
3828    » Add API for behaviours. A ClutterBehaviour is an object which
3829      drives a set of actors using one or more properties depending
3830      on the value of an "alpha" function.
3831      + Provide simple behaviours: ClutterBehaviourOpacity,
3832        ClutterBehaviourPath and ClutterBehaviourScale.
3833      + Provide simple alpha functions for ramps and sine waveforms.
3834    » Add fixed point API for embedded platforms with no FPU.
3835    » Add support for command line switches to Clutter, like debug
3836      flags and abort on warnings; also allow application to hook up
3837      into the initialisation sequence to add their own command line
3838      switches.
3839    » Add Pango GL renderer for Clutter, and use it to render text
3840      inside the ClutterLabel actor; this decrease texture memory
3841      usage.
3842    » Redo Clutter Label widget, using the new Pango renderer.
3843    » Clutter Textures do not store local pixbuf copy (of texture).
3844    » Redo group and actor scale/sizing API and functionality.
3845    » Add memory management API for ClutterColor, and string parsing.
3846  • List of bug fixed
3847    » #199 - Little group handling fix?
3848    » #198 - Detect NPOT support on more systems
3849    » #197 - Tiled textures are broken
3850    » #196 - Rebuild the examples when the library changes
3851    » #156 - clutter_actor_set_position not using the absolute size
3852    » #155 - Don't test for XInitThreads [Bastien Nocera]
3853    » #154 - Key presses not working in super-oh example [Bastien Nocera]
3854    » #152 - Misc fixes [Bastien Nocera]
3855    » #143 - Faulty ref-counting in clutter_group_remove [Frederic Riss]
3856    » #141 - Copy-pasto in clutter_media_set_volume [Frederic Riss]
3857    » #101 - No package 'x11' found -- wrong configure [Tomasz Torcz]
3858    »  #98 - Enabling trails in super-oh crashes
3859
3860 Clutter 0.1 (22/06/2006)
3861 ========================
3862
3863  • First 'official' release, expect bugs aplenty.
3864  • Contains:
3865    » Hopefully enough functionality to build things.
3866    » Basic gstreamer 0.10 video playback support.
3867    » Fairly stable API, though in no way totally stable.
3868      Expect CHANGES in future versions.
3869    » Some simple examples ( also see OPT ).
3870    » An experimental GTK-Clutter widget.
3871    » Fairly complete Python bindings.
3872    » Non complete but hopefully useful API documentation.
3873  • If you want to help out see the TODO file.