mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
2008-06-23 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Post release bump to 0.7.3.
This commit is contained in:
parent
300d1ef025
commit
6b475cb409
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2008-06-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
|
* configure.ac: Post release bump to 0.7.3.
|
||||||
|
|
||||||
|
======== Release 0.7.2 ========================================================
|
||||||
|
|
||||||
|
2008-06-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* NEWS: Release 0.7.2.
|
||||||
|
|
||||||
2008-06-23 Emmanuele Bassi <ebassi@openedhand.com>
|
2008-06-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-texture.c:
|
* clutter/clutter-texture.c:
|
||||||
|
35
NEWS
35
NEWS
@ -1,3 +1,38 @@
|
|||||||
|
Clutter 0.7.2 (23/06/2008), "Kedoke"
|
||||||
|
===============================================================================
|
||||||
|
|
||||||
|
* List of changes between 0.7.0 and 0.7.2
|
||||||
|
|
||||||
|
o ClutterTexture has a new :keep-aspect-ratio property; when it is set
|
||||||
|
to TRUE the texture will return a preferred width maintaining the
|
||||||
|
aspect ratio with the given height and a preferred height maintaining
|
||||||
|
the aspect ratio with the given width. This allows to set the width or
|
||||||
|
the height and have the texture automatically request the height or the
|
||||||
|
width respectively while maintaining the aspect ratio of the original
|
||||||
|
image.
|
||||||
|
|
||||||
|
o Added XINPUT support on the X11 backends; this provides an initial
|
||||||
|
support for multiple input devices. The API is X11-specific, and
|
||||||
|
provides support for querying at run-time support for XINPUT, for
|
||||||
|
getting a list of input devices and for getting the type of each
|
||||||
|
input device.
|
||||||
|
|
||||||
|
* List of bugs fixed
|
||||||
|
|
||||||
|
o #816 - clutter_actor_request_coords() should take a const box.
|
||||||
|
o #836 - Optimize clutter_label_query_coords()
|
||||||
|
o #905 - Paint cursor directly
|
||||||
|
o #918 - Group doesn't clip if it's children are clipped
|
||||||
|
o #953 - Actors are not hidden before unrealized or disposed
|
||||||
|
o #960 - PangoContext creation code should not be duplicated
|
||||||
|
o #970 - clutter_actor_get_paint_area confusion
|
||||||
|
o #971 - Minor ClutterActor cleanups
|
||||||
|
o #972 - Better parenting
|
||||||
|
o #973 - unreffing ClutterScore may segfault
|
||||||
|
o #981 - clutter_stage_read_pixels temprow fix
|
||||||
|
o #982 - __COGL_GET_CONTEXT MS compiler issue
|
||||||
|
o #984 - pango_clutter_render_layout() declared void
|
||||||
|
|
||||||
Clutter 0.7.0 (13/06/2008), "Booska"
|
Clutter 0.7.0 (13/06/2008), "Booska"
|
||||||
===============================================================================
|
===============================================================================
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# An even micro number indicates a released version.
|
# An even micro number indicates a released version.
|
||||||
m4_define([clutter_major_version], [0])
|
m4_define([clutter_major_version], [0])
|
||||||
m4_define([clutter_minor_version], [7])
|
m4_define([clutter_minor_version], [7])
|
||||||
m4_define([clutter_micro_version], [1])
|
m4_define([clutter_micro_version], [2])
|
||||||
|
|
||||||
m4_define([clutter_version],
|
m4_define([clutter_version],
|
||||||
[clutter_major_version.clutter_minor_version.clutter_micro_version])
|
[clutter_major_version.clutter_minor_version.clutter_micro_version])
|
||||||
|
Loading…
Reference in New Issue
Block a user