commit dcec39123b88adb8b3eee7c71062a00011cc2c2c Author: Emmanuele Bassi Date: Wed Jan 16 22:46:01 2013 +0000 Release Clutter 1.13.4 NEWS | 40 ++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) commit 67eb8eaf36264071ba4cefe9bac7d82bd4d2460a Author: Tomeu Vizoso Date: Wed Dec 26 13:56:19 2012 +0100 Add default handler for ClutterSwipeAction::swipe So code that still uses the deprecated ::swept keeps working https://bugzilla.gnome.org/show_bug.cgi?id=690735 clutter/clutter-swipe-action.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit c9cb463409932735c9c6f74f265d7cf1b1ee76d6 Author: Kouhei Sutou Date: Sun Jan 13 21:07:42 2013 +0900 Fix a typo in ClutterEventType documentation https://bugzilla.gnome.org/show_bug.cgi?id=691651 clutter/clutter-enums.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 900832383bbe9fc3fccd1a6f947e273dffd9ff8f Author: Nirbheek Chauhan Date: Tue Dec 18 00:26:57 2012 +0530 clutter-text: Allow setting attributes for editable text The behaviour imitates GtkEntry and ignores attributes from markup because Pango barfs on invalid markup. Also add an example to the text-field interactive test. https://bugzilla.gnome.org/show_bug.cgi?id=686477 clutter/clutter-text.c | 24 +++++++++++------------- tests/interactive/test-text-field.c | 11 +++++++++-- 2 files changed, 20 insertions(+), 15 deletions(-) commit 1b1cffbb43f61d3f90995419d967aed26e597c65 Author: Wouter Paesen Date: Fri Dec 28 21:55:51 2012 +0100 * use requested value of fullscreen state in clutter_stage_win32_set_fullscreen instead of old value https://bugzilla.gnome.org/show_bug.cgi?id=690836 clutter/win32/clutter-stage-win32.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) commit 650366c9042130f184dd65cedd9f0f4392175590 Author: Wouter Paesen Date: Fri Dec 28 21:12:05 2012 +0100 * added DllMain prototype to satisfy maintainer mode compiler error checking https://bugzilla.gnome.org/show_bug.cgi?id=690835 clutter/win32/clutter-backend-win32.c | 5 +++++ 1 file changed, 5 insertions(+) commit e999b8a83cb7b11d34a4e479380f29e89352d361 Author: Wouter Paesen Date: Fri Dec 28 20:58:14 2012 +0100 * removed clutter-shader.h dependency from clutter-backend-win32.c https://bugzilla.gnome.org/show_bug.cgi?id=690833 clutter/win32/clutter-backend-win32.c | 2 -- 1 file changed, 2 deletions(-) commit 65eb9d2decf97025b0e54941b06895ceec22e542 Author: Kouhei Sutou Date: Fri Jan 4 16:12:39 2013 +0900 Add missing "(constructor)" tag to clutter_color_alloc() https://bugzilla.gnome.org/show_bug.cgi?id=691114 clutter/clutter-color.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1ad873ff606ca629689e054acfad416a6e19446b Author: Jasper St. Pierre Date: Mon Jan 14 12:51:54 2013 -0500 actor: Correct documentation formatting for clutter_actor_event() TRUE and FALSE need to be symbolified here. clutter/clutter-actor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5dd3eed41e7db1c62d7392035050b3906ba0184e Author: Jasper St. Pierre Date: Wed Jan 9 01:28:48 2013 -0500 actor: Fix documentation reference for pivot-point clutter/clutter-actor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit ea5fb11ea6bb6e40919bd43bdf2dc653e8ab0a18 Author: Emmanuele Bassi Date: Sun Dec 23 15:36:30 2012 +0000 Fix interpolation between ClutterRect instances A stupid typo broke the linear interpolation function. clutter/clutter-base-types.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit 05694b34815943fab69136257f5271098d474b75 Author: Jasper St. Pierre Date: Sat Dec 22 22:21:16 2012 -0500 x11: Ignore num lock / scroll lock for event state As x11 considers num lock and scroll lock to be modifiers, code that checks for an exact modifier combination will fail if naively done when num lock or scroll lock are turned on. Applications that want to ignore these modifiers will need to use XKB to manually mask out the modifier state. As it is very unlikely that applications will want to care about the state of num lock or scroll lock for key press/key release events, mask out the num lock and scroll lock keys automatically. https://bugzilla.gnome.org/show_bug.cgi?id=690664 README.in | 6 ++++++ clutter/x11/clutter-device-manager-core-x11.c | 2 +- clutter/x11/clutter-device-manager-xi2.c | 2 +- clutter/x11/clutter-keymap-x11.c | 12 +++++++++++- clutter/x11/clutter-keymap-x11.h | 2 +- 5 files changed, 20 insertions(+), 4 deletions(-) commit 1a0e501efddc9f49da47e1e6eea689bd8c4f2d90 Author: Daniel Stone Date: Wed Dec 19 13:50:58 2012 +0000 X11: Use XFixes for show/hide cursor This has been disabled since February 2008, on the grounds that XFixes didn't work reliably for hiding cursors. This has almost certainly been fixed then and seems to work entirely reliably across a number of X servers released in the past few years, and is definitely better than a 1x1 black dot for a cursor. Helpfully though, where the spec states that the cursor will be hidden when inside the specified window or one of its children, it actually only uses the window to look up the Screen, and hides the cursor across the entire Screen. So, when using this, we also need to track crossing events. If it's still broken, this needs to be fixed in the X server. https://bugzilla.gnome.org/show_bug.cgi?id=690497 Signed-off-by: Daniel Stone clutter/x11/clutter-stage-x11.c | 34 +++++++++++++++++++++++++++++----- clutter/x11/clutter-stage-x11.h | 1 + 2 files changed, 30 insertions(+), 5 deletions(-) commit 1baefc4807b656fbc7dd6ff53cecfcf51645d04a Author: Alexander Shopov Date: Wed Jan 9 07:00:36 2013 +0200 Updated Bulgarian translation po/bg.po | 530 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 265 insertions(+), 265 deletions(-) commit bb8ef4e5c0873c896643a3dddba6ea67b3e7dcc9 Author: Chun-wei Fan Date: Fri Dec 28 15:54:33 2012 +0800 test-interactive-clutter.vc(x)projin: Fix includes We need to include the gdk-pixbuf headers as well... build/win32/vs10/test-interactive-clutter.vcxprojin | 8 ++++---- build/win32/vs9/test-interactive-clutter.vcprojin | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) commit 26380730bfe2746b063d906f02eb43961bce7b9b Author: Chun-wei Fan Date: Fri Dec 28 15:46:00 2012 +0800 Fix Clutter Visual C++ projects Fix the *_GDK configs as GDK headers will include GDK-Pixbuf headers as well. build/win32/vs10/clutter.vcxprojin | 8 ++++---- build/win32/vs9/clutter.vcprojin | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) commit e57208d425a2725ef5d9c53c59836410e212c758 Author: Fran Diéguez Date: Mon Dec 24 22:54:03 2012 +0100 Updated Galician translations po/gl.po | 647 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 323 insertions(+), 324 deletions(-) commit 5a025b95157f190acc1a9602b8daf337733678cb Author: Dimitris Spingos Date: Sun Dec 23 18:54:54 2012 +0200 Updated Greek translation po/el.po | 649 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 322 insertions(+), 327 deletions(-) commit 77a9decc00b173978bb3607fba5bcb376e0e3102 Author: Piotr Drąg Date: Sun Dec 23 04:11:54 2012 +0100 Updated Polish translation po/pl.po | 632 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 316 insertions(+), 316 deletions(-) commit c742b33200e4e73bf1b2b0ceac26ba648bb9aa3a Author: Daniel Mustieles Date: Wed Dec 19 13:25:12 2012 +0100 Updated Spanish translation po/es.po | 639 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 317 insertions(+), 322 deletions(-) commit fa8878509e38cd90c706f8fa0c84219561680184 Author: Aleksej Kabanov Date: Wed Dec 19 11:39:46 2012 +0400 Updated Russian translation po/ru.po | 579 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 290 insertions(+), 289 deletions(-) commit 4ce3fbbfdcef90d6fef02b326348e4354f519478 Author: Matej Urbančič Date: Tue Dec 18 08:39:23 2012 +0100 Updated Slovenian translation po/sl.po | 776 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 391 insertions(+), 385 deletions(-) commit f7f2635fbf166c630a4b07b5f045e40f3bbbe047 Author: Emmanuele Bassi Date: Tue Dec 18 01:57:23 2012 +0000 Post-release version bump to 1.13.3 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)