Hello community, here is the log from the commit of package clutter-gtk for openSUSE:Factory checked in at 2015-10-06 16:11:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/clutter-gtk (Old) and /work/SRC/openSUSE:Factory/.clutter-gtk.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "clutter-gtk" Changes: -------- --- /work/SRC/openSUSE:Factory/clutter-gtk/clutter-gtk.changes 2015-07-05 17:55:05.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.clutter-gtk.new/clutter-gtk.changes 2015-10-06 16:11:46.000000000 +0200 @@ -1,0 +2,12 @@ +Wed Sep 16 08:50:00 UTC 2015 - [email protected] + +- Update to version 1.6.4: + + Stop using deprecated API wherever possible. + + Fix embedding of the stage on Wayland when using the GDK + backend. + + Fix event handling on GDK and X11. + + Bugs fixed: bgo#754891, bgo#754944, bgo#755016, bgo#755017, + bgo#755053. + + Updated translations. + +------------------------------------------------------------------- Old: ---- clutter-gtk-1.6.2.tar.xz New: ---- clutter-gtk-1.6.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ clutter-gtk.spec ++++++ --- /var/tmp/diff_new_pack.aMVbhe/_old 2015-10-06 16:11:47.000000000 +0200 +++ /var/tmp/diff_new_pack.aMVbhe/_new 2015-10-06 16:11:47.000000000 +0200 @@ -17,7 +17,7 @@ Name: clutter-gtk -Version: 1.6.2 +Version: 1.6.4 Release: 0 Summary: GTK+ integration for Clutter License: LGPL-2.1+ ++++++ clutter-gtk-1.6.2.tar.xz -> clutter-gtk-1.6.4.tar.xz ++++++ ++++ 1659 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/NEWS new/clutter-gtk-1.6.4/NEWS --- old/clutter-gtk-1.6.2/NEWS 2015-06-30 12:40:45.000000000 +0200 +++ new/clutter-gtk-1.6.4/NEWS 2015-09-15 14:31:08.000000000 +0200 @@ -1,3 +1,22 @@ +Clutter-GTK 1.6.4 15/09/2015 +=============================================================================== + +Changes since 1.6.2: + • Stop using deprecated API wherever possible + • Fix embedding of the stage on Wayland when using the GDK backend + • Fix event handling on GDK and X11 + • Translation updates + +List of bugs fixed: + #755053 - Fix gtk-clutter-events on X11/GDK-X11 backends + #755017 - Consistency between backend checks. + #755016 - Fix jittery rendering with GDK Clutter backend on X11 + #754944 - Remove unnecessary callbacks from GtkClutterEmbed + #754891 - Rework foreign stage setup to work on gdk/wayland + +Many thanks to: + Lionel Landwerlin, Piotr Drąg + Clutter-GTK 1.6.2 30/06/2015 =============================================================================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/README new/clutter-gtk-1.6.4/README --- old/clutter-gtk-1.6.2/README 2013-09-24 19:02:52.000000000 +0200 +++ new/clutter-gtk-1.6.4/README 2015-06-30 12:46:02.000000000 +0200 @@ -10,8 +10,8 @@ Requirements: - Clutter >= 1.4.0 (X11 backend) or >= 1.4.0 (Win32 backend) - GTK+ >= 3.0 + Clutter >= 1.22.4 + GTK+ >= 3.6 Copyright (C) 2006, 2007, 2008 OpenedHand Ltd Copyright (C) 2009, 2010, 2011 Intel Corporation diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/clutter-gtk/gtk-clutter-embed.c new/clutter-gtk-1.6.4/clutter-gtk/gtk-clutter-embed.c --- old/clutter-gtk-1.6.2/clutter-gtk/gtk-clutter-embed.c 2015-06-17 13:58:35.000000000 +0200 +++ new/clutter-gtk-1.6.4/clutter-gtk/gtk-clutter-embed.c 2015-09-15 14:31:08.000000000 +0200 @@ -158,11 +158,145 @@ event->configure.y = allocation.y; event->configure.width = allocation.width; event->configure.height = allocation.height; - + gtk_widget_event (widget, event); gdk_event_free (event); } +#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) +static void +gtk_clutter_embed_ensure_surface (GtkClutterEmbed *embed) +{ + GtkClutterEmbedPrivate *priv = embed->priv; + + if (priv->subcompositor && !priv->clutter_surface) + { + GdkDisplay *display; + struct wl_compositor *compositor; + + display = gtk_widget_get_display (GTK_WIDGET (embed)); + compositor = gdk_wayland_display_get_wl_compositor (display); + priv->clutter_surface = wl_compositor_create_surface (compositor); + } +} + +static void +gtk_clutter_embed_ensure_subsurface (GtkClutterEmbed *embed) +{ + GtkClutterEmbedPrivate *priv; + GtkWidget *widget; + struct wl_surface *gtk_surface; + GdkWindow *window; + gint x, y; + + widget = GTK_WIDGET (embed); + priv = embed->priv; + + if (priv->subsurface) + return; + + window = gtk_widget_get_window (widget); + gtk_surface = gdk_wayland_window_get_wl_surface (gdk_window_get_toplevel (window)); + priv->subsurface = + wl_subcompositor_get_subsurface (priv->subcompositor, + priv->clutter_surface, + gtk_surface); + + gdk_window_get_origin (window, &x, &y); + wl_subsurface_set_position (priv->subsurface, x, y); + wl_subsurface_set_desync (priv->subsurface); +} +#endif + +static void +gtk_clutter_embed_ensure_stage_realized (GtkClutterEmbed *embed) +{ + GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (embed)->priv; + + if (!gtk_widget_get_realized (GTK_WIDGET (embed))) + return; + + if (!clutter_actor_is_realized (priv->stage)) + { + GdkWindow *window = gtk_widget_get_window (GTK_WIDGET (embed)); + +#if defined(CLUTTER_WINDOWING_GDK) + if (clutter_check_windowing_backend (CLUTTER_WINDOWING_GDK)) + { + clutter_gdk_set_stage_foreign (CLUTTER_STAGE (priv->stage), window); + } + else +#endif +#if defined(GDK_WINDOWING_X11) && defined(CLUTTER_WINDOWING_X11) + if (clutter_check_windowing_backend (CLUTTER_WINDOWING_X11) && + GDK_IS_X11_WINDOW (window)) + { + clutter_x11_set_stage_foreign (CLUTTER_STAGE (priv->stage), + GDK_WINDOW_XID (window)); + } + else +#endif +#if defined(GDK_WINDOWING_WIN32) && defined(CLUTTER_WINDOWING_WIN32) + if (clutter_check_windowing_backend (CLUTTER_WINDOWING_WIN32) && + GDK_IS_WIN32_WINDOW (window)) + { + clutter_win32_set_stage_foreign (CLUTTER_STAGE (priv->stage), + GDK_WINDOW_HWND (window)); + } + else +#endif +#if defined(GDK_WINDOWING_WAYLAND) && defined (CLUTTER_WINDOWING_WAYLAND) + if (clutter_check_windowing_backend (CLUTTER_WINDOWING_WAYLAND) && + GDK_IS_WAYLAND_WINDOW (window)) + { + gtk_clutter_embed_ensure_surface (embed); + clutter_wayland_stage_set_wl_surface (CLUTTER_STAGE (priv->stage), + priv->clutter_surface); + } + else +#endif + { + g_warning ("No backend found!"); + } + + clutter_actor_realize (priv->stage); + } + + /* A stage cannot really be unmapped because it is the top of + * Clutter's scene tree. So if the Gtk embedder is mapped, we + * translate this as visible for the ClutterStage. */ + if (gtk_widget_get_mapped (GTK_WIDGET (embed))) + clutter_actor_show (priv->stage); + + clutter_actor_queue_relayout (priv->stage); + + gtk_clutter_embed_send_configure (embed); + +#if defined(GDK_WINDOWING_WAYLAND) && defined (CLUTTER_WINDOWING_WAYLAND) + if (clutter_check_windowing_backend (CLUTTER_WINDOWING_WAYLAND)) + gtk_clutter_embed_ensure_subsurface (embed); +#endif +} + +static void +gtk_clutter_embed_stage_unrealize (GtkClutterEmbed *embed) +{ + GtkClutterEmbedPrivate *priv = embed->priv; + +#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) + g_clear_pointer (&priv->subsurface, wl_subsurface_destroy); + g_clear_pointer (&priv->clutter_surface, wl_surface_destroy); +#endif + + /* gtk may emit an unmap signal after dispose, so it's possible we + * may have already disposed priv->stage. */ + if (priv->stage != NULL) + { + clutter_actor_hide (priv->stage); + clutter_actor_unrealize (priv->stage); + } +} + static void on_stage_queue_redraw (ClutterStage *stage, ClutterActor *origin, @@ -219,25 +353,9 @@ static void gtk_clutter_embed_show (GtkWidget *widget) { - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; - - if (gtk_widget_get_realized (widget) && priv->stage != NULL) - clutter_actor_show (priv->stage); - GTK_WIDGET_CLASS (gtk_clutter_embed_parent_class)->show (widget); -} - -static void -gtk_clutter_embed_hide (GtkWidget *widget) -{ - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; - - /* gtk emits a hide signal during dispose, so it's possible we may - * have already disposed priv->stage. */ - if (priv->stage != NULL) - clutter_actor_hide (priv->stage); - GTK_WIDGET_CLASS (gtk_clutter_embed_parent_class)->hide (widget); + gtk_clutter_embed_ensure_stage_realized (GTK_CLUTTER_EMBED (widget)); } static GdkWindow * @@ -309,43 +427,9 @@ return GTK_WIDGET_CLASS (gtk_clutter_embed_parent_class)->draw (widget, cr); } -#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) -static void -gtk_clutter_embed_ensure_subsurface (GtkClutterEmbed *embed) -{ - GtkClutterEmbedPrivate *priv; - GtkWidget *widget; - struct wl_surface *gtk_surface; - GtkAllocation allocation; - GdkWindow *window; - gint x, y; - - widget = GTK_WIDGET (embed); - priv = embed->priv; - - if (priv->subsurface) - return; - - gtk_widget_get_allocation (widget, &allocation); - window = gtk_widget_get_window (widget); - gtk_surface = gdk_wayland_window_get_wl_surface (gdk_window_get_toplevel(window)); - - priv->subsurface = - wl_subcompositor_get_subsurface (priv->subcompositor, - priv->clutter_surface, - gtk_surface); - - gtk_widget_translate_coordinates (widget, gtk_widget_get_toplevel (widget), 0, 0, &x, &y); - gdk_window_get_origin (gtk_widget_get_parent_window (widget), &x, &y); - wl_subsurface_set_position (priv->subsurface, x + allocation.x, y + allocation.y); - wl_subsurface_set_desync (priv->subsurface); -} -#endif - static void gtk_clutter_embed_realize (GtkWidget *widget) { - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; GtkAllocation allocation; GtkStyleContext *style_context; GdkWindow *window; @@ -396,7 +480,7 @@ attributes.visual = gtk_widget_get_visual (widget); /* NOTE: GDK_MOTION_NOTIFY above should be safe as Clutter does its own - * throttling. + * throttling. */ attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK @@ -409,7 +493,8 @@ | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_TOUCH_MASK - | GDK_SMOOTH_SCROLL_MASK; + | GDK_SMOOTH_SCROLL_MASK + | GDK_STRUCTURE_MASK; attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL; @@ -430,19 +515,10 @@ style_context = gtk_widget_get_style_context (widget); gtk_style_context_set_background (style_context, window); -#if defined(CLUTTER_WINDOWING_GDK) - if (clutter_check_windowing_backend (CLUTTER_WINDOWING_GDK)) - { - clutter_gdk_set_stage_foreign (CLUTTER_STAGE (priv->stage), window); - } - else -#endif #if defined(GDK_WINDOWING_X11) && defined(CLUTTER_WINDOWING_X11) if (clutter_check_windowing_backend (CLUTTER_WINDOWING_X11) && GDK_IS_X11_WINDOW (window)) { - clutter_x11_set_stage_foreign (CLUTTER_STAGE (priv->stage), GDK_WINDOW_XID (window)); - if (num_filter == 0) gdk_window_add_filter (NULL, gtk_clutter_filter_func, widget); num_filter++; @@ -453,40 +529,23 @@ if (clutter_check_windowing_backend (CLUTTER_WINDOWING_WIN32) && GDK_IS_WIN32_WINDOW (window)) { - clutter_win32_set_stage_foreign (CLUTTER_STAGE (priv->stage), GDK_WINDOW_HWND (window)); - if (num_filter == 0) gdk_window_add_filter (NULL, gtk_clutter_filter_func, widget); num_filter++; } + else #endif - -#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) - if (priv->subcompositor) { - GdkDisplay *display; - struct wl_compositor *compositor; - - display = gtk_widget_get_display (widget); - compositor = gdk_wayland_display_get_wl_compositor (display); - priv->clutter_surface = wl_compositor_create_surface (compositor); - clutter_wayland_stage_set_wl_surface (CLUTTER_STAGE (priv->stage), - priv->clutter_surface); + /* Nothing to do. */ } -#endif - - clutter_actor_realize (priv->stage); - - if (gtk_widget_get_visible (widget)) - clutter_actor_show (priv->stage); - gtk_clutter_embed_send_configure (GTK_CLUTTER_EMBED (widget)); + gtk_clutter_embed_ensure_stage_realized (GTK_CLUTTER_EMBED (widget)); } static void gtk_clutter_embed_unrealize (GtkWidget *widget) { - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; + GtkClutterEmbed *embed = GTK_CLUTTER_EMBED (widget); if (num_filter > 0) { @@ -495,8 +554,7 @@ gdk_window_remove_filter (NULL, gtk_clutter_filter_func, widget); } - if (priv->stage != NULL) - clutter_actor_hide (priv->stage); + gtk_clutter_embed_stage_unrealize (embed); GTK_WIDGET_CLASS (gtk_clutter_embed_parent_class)->unrealize (widget); } @@ -520,6 +578,9 @@ case CLUTTER_REQUEST_WIDTH_FOR_HEIGHT: mode = GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT; break; + case CLUTTER_REQUEST_CONTENT_SIZE: + mode = GTK_SIZE_REQUEST_CONSTANT_SIZE; + break; } } @@ -661,7 +722,8 @@ gtk_clutter_embed_map_event (GtkWidget *widget, GdkEventAny *event) { - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; + GtkClutterEmbed *embed = GTK_CLUTTER_EMBED (widget); + GtkClutterEmbedPrivate *priv = embed->priv; GtkWidgetClass *parent_class; gboolean res = FALSE; @@ -669,7 +731,7 @@ if (parent_class->map_event) res = parent_class->map_event (widget, event); - clutter_actor_map (priv->stage); + gtk_clutter_embed_ensure_stage_realized (embed); clutter_actor_queue_redraw (priv->stage); @@ -680,7 +742,7 @@ gtk_clutter_embed_unmap_event (GtkWidget *widget, GdkEventAny *event) { - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; + GtkClutterEmbed *embed = GTK_CLUTTER_EMBED (widget); GtkWidgetClass *parent_class; gboolean res = FALSE; @@ -688,54 +750,11 @@ if (parent_class->unmap_event) res = parent_class->unmap_event (widget, event); - clutter_actor_unmap (priv->stage); - -#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) - g_clear_pointer (&priv->subsurface, wl_subsurface_destroy); -#endif + gtk_clutter_embed_stage_unrealize (embed); return res; } -static void -gtk_clutter_embed_map (GtkWidget *widget) -{ - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; - -#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) - { - GdkDisplay *gdk_display = gtk_widget_get_display (widget); - - if (clutter_check_windowing_backend (CLUTTER_WINDOWING_WAYLAND) && - GDK_IS_WAYLAND_DISPLAY (gdk_display)) - { - gtk_clutter_embed_ensure_subsurface (GTK_CLUTTER_EMBED (widget)); - } - } -#endif - - GTK_WIDGET_CLASS (gtk_clutter_embed_parent_class)->map (widget); - - clutter_actor_map (priv->stage); -} - -static void -gtk_clutter_embed_unmap (GtkWidget *widget) -{ - GtkClutterEmbedPrivate *priv = GTK_CLUTTER_EMBED (widget)->priv; - - GTK_WIDGET_CLASS (gtk_clutter_embed_parent_class)->unmap (widget); - - /* gtk may emit an unmap signal after dispose, so it's possible we may - * have already disposed priv->stage. */ - if (priv->stage != NULL) - clutter_actor_unmap (priv->stage); - -#if defined(GDK_WINDOWING_WAYLAND) && defined(CLUTTER_WINDOWING_WAYLAND) - g_clear_pointer (&priv->subsurface, wl_subsurface_destroy); -#endif -} - static gboolean gtk_clutter_embed_focus_in (GtkWidget *widget, GdkEventFocus *event) @@ -922,7 +941,7 @@ gdk_offscreen_window_set_embedder (child_window, NULL); } - + } static void @@ -1052,9 +1071,6 @@ widget_class->realize = gtk_clutter_embed_realize; widget_class->unrealize = gtk_clutter_embed_unrealize; widget_class->show = gtk_clutter_embed_show; - widget_class->hide = gtk_clutter_embed_hide; - widget_class->map = gtk_clutter_embed_map; - widget_class->unmap = gtk_clutter_embed_unmap; widget_class->map_event = gtk_clutter_embed_map_event; widget_class->unmap_event = gtk_clutter_embed_unmap_event; widget_class->focus_in_event = gtk_clutter_embed_focus_in; @@ -1252,7 +1268,7 @@ GtkClutterEmbedPrivate *priv = embed->priv; g_return_if_fail (GTK_CLUTTER_IS_EMBED (embed)); - + use_layout_size = !!use_layout_size; if (use_layout_size != priv->use_layout_size) { @@ -1279,6 +1295,6 @@ GtkClutterEmbedPrivate *priv = embed->priv; g_return_val_if_fail (GTK_CLUTTER_IS_EMBED (embed), FALSE); - + return priv->use_layout_size; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/clutter-gtk/gtk-clutter-version.h new/clutter-gtk-1.6.4/clutter-gtk/gtk-clutter-version.h --- old/clutter-gtk-1.6.2/clutter-gtk/gtk-clutter-version.h 2015-06-30 12:41:19.000000000 +0200 +++ new/clutter-gtk-1.6.4/clutter-gtk/gtk-clutter-version.h 2015-09-15 14:31:39.000000000 +0200 @@ -62,14 +62,14 @@ * The micro version of the Clutter-GTK library (3, if %CLUTTER_GTK_VERSION * is 1.2.3) */ -#define CLUTTER_GTK_MICRO_VERSION (2) +#define CLUTTER_GTK_MICRO_VERSION (4) /** * CLUTTER_GTK_VERSION: * * The full version of the Clutter-GTK library, like 1.2.3 */ -#define CLUTTER_GTK_VERSION 1.6.2 +#define CLUTTER_GTK_VERSION 1.6.4 /** * CLUTTER_GTK_VERSION_S: @@ -77,7 +77,7 @@ * The full version of the Clutter-GTK library, in string form (suited for * string concatenation) */ -#define CLUTTER_GTK_VERSION_S "1.6.2" +#define CLUTTER_GTK_VERSION_S "1.6.4" /** * CLUTTER_GTK_VERSION_HEX: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/configure.ac new/clutter-gtk-1.6.4/configure.ac --- old/clutter-gtk-1.6.2/configure.ac 2015-06-30 12:40:55.000000000 +0200 +++ new/clutter-gtk-1.6.4/configure.ac 2015-09-15 14:31:08.000000000 +0200 @@ -3,11 +3,11 @@ # An even micro number indicates a released version. m4_define([clutter_gtk_major], [1]) m4_define([clutter_gtk_minor], [6]) -m4_define([clutter_gtk_micro], [2]) +m4_define([clutter_gtk_micro], [4]) m4_define([clutter_gtk_version], [clutter_gtk_major.clutter_gtk_minor.clutter_gtk_micro]) # increase the interface age for each release; if the API changes, set to 0 -m4_define([clutter_gtk_interface_age], [2]) +m4_define([clutter_gtk_interface_age], [4]) m4_define([clutter_gtk_binary_age], [m4_eval(100 * clutter_gtk_minor + clutter_gtk_micro)]) m4_define([clutter_gtk_release_status], @@ -82,8 +82,8 @@ AC_CHECK_LIBM AC_SUBST(LIBM) -m4_define([clutter_req_version], [1.22.3]) -m4_define([gtk_req_version], [3.6.0]) +m4_define([clutter_req_version], [1.23.7]) +m4_define([gtk_req_version], [3.8.0]) PKG_CHECK_MODULES([CLUTTER_GTK_DEPS], [clutter-1.0 >= clutter_req_version gtk+-3.0 >= gtk_req_version]) AC_SUBST([CLUTTER_GTK_DEPS_CFLAGS]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/Makefile.am new/clutter-gtk-1.6.4/doc/reference/Makefile.am --- old/clutter-gtk-1.6.2/doc/reference/Makefile.am 2014-08-21 17:03:54.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/Makefile.am 2015-09-15 14:31:08.000000000 +0200 @@ -15,7 +15,7 @@ # gtk-doc will search all .c & .h files beneath here for inline comments # documenting the functions and macros. # e.g. DOC_SOURCE_DIR=../../../gtk -DOC_SOURCE_DIR=../../clutter-gtk +DOC_SOURCE_DIR=$(top_srcdir)/clutter-gtk $(top_builddir)/clutter-gtk # Extra options to pass to gtkdoc-scangobj. Not normally needed. SCANGOBJ_OPTIONS=--type-init-func="clutter_base_init()" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/GtkClutterActor.html new/clutter-gtk-1.6.4/doc/reference/html/GtkClutterActor.html --- old/clutter-gtk-1.6.2/doc/reference/html/GtkClutterActor.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/GtkClutterActor.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>GtkClutterActor: Clutter-Gtk 1.6.2 +<title>GtkClutterActor: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="ch02.html" title="Clutter-Gtk Widgets"> <link rel="prev" href="GtkClutterEmbed.html" title="GtkClutterEmbed"> <link rel="next" href="GtkClutterWindow.html" title="GtkClutterWindow"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -299,6 +299,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/GtkClutterEmbed.html new/clutter-gtk-1.6.4/doc/reference/html/GtkClutterEmbed.html --- old/clutter-gtk-1.6.2/doc/reference/html/GtkClutterEmbed.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/GtkClutterEmbed.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>GtkClutterEmbed: Clutter-Gtk 1.6.2 +<title>GtkClutterEmbed: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="ch02.html" title="Clutter-Gtk Widgets"> <link rel="prev" href="ch02.html" title="Clutter-Gtk Widgets"> <link rel="next" href="GtkClutterActor.html" title="GtkClutterActor"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -324,6 +324,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/GtkClutterWindow.html new/clutter-gtk-1.6.4/doc/reference/html/GtkClutterWindow.html --- old/clutter-gtk-1.6.2/doc/reference/html/GtkClutterWindow.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/GtkClutterWindow.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>GtkClutterWindow: Clutter-Gtk 1.6.2 +<title>GtkClutterWindow: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="ch02.html" title="Clutter-Gtk Widgets"> <link rel="prev" href="GtkClutterActor.html" title="GtkClutterActor"> <link rel="next" href="ch03.html" title="Miscellaneous"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -172,6 +172,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/annotation-glossary.html new/clutter-gtk-1.6.4/doc/reference/html/annotation-glossary.html --- old/clutter-gtk-1.6.2/doc/reference/html/annotation-glossary.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/annotation-glossary.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Annotation Glossary: Clutter-Gtk 1.6.2 +<title>Annotation Glossary: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="cluttergtk-glossary.html" title="Part II. Glossaries"> <link rel="prev" href="cluttergtk-glossary.html" title="Part II. Glossaries"> <link rel="next" href="ix02.html" title="Index of all symbols"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -47,6 +47,6 @@ <dd class="glossdef"><p>Don't free data after the code is done.</p></dd> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ch01.html new/clutter-gtk-1.6.4/doc/reference/html/ch01.html --- old/clutter-gtk-1.6.2/doc/reference/html/ch01.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ch01.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Clutter-Gtk Overview: Clutter-Gtk 1.6.2 +<title>Clutter-Gtk Overview: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="prev" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="prev" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="next" href="ch02.html" title="Clutter-Gtk Widgets"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -30,6 +30,6 @@ data structures and object classes with Clutter actors.</p> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ch02.html new/clutter-gtk-1.6.4/doc/reference/html/ch02.html --- old/clutter-gtk-1.6.2/doc/reference/html/ch02.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ch02.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Clutter-Gtk Widgets: Clutter-Gtk 1.6.2 +<title>Clutter-Gtk Widgets: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="ch01.html" title="Clutter-Gtk Overview"> <link rel="next" href="GtkClutterEmbed.html" title="GtkClutterEmbed"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -36,6 +36,6 @@ </dl></div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ch03.html new/clutter-gtk-1.6.4/doc/reference/html/ch03.html --- old/clutter-gtk-1.6.2/doc/reference/html/ch03.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ch03.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Miscellaneous: Clutter-Gtk 1.6.2 +<title>Miscellaneous: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="GtkClutterWindow.html" title="GtkClutterWindow"> <link rel="next" href="clutter-gtk-1.0-Utility-Functions.html" title="Utility Functions"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -28,6 +28,6 @@ </dt></dl></div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/clutter-gtk-1.0-Utility-Functions.html new/clutter-gtk-1.6.4/doc/reference/html/clutter-gtk-1.0-Utility-Functions.html --- old/clutter-gtk-1.6.2/doc/reference/html/clutter-gtk-1.0-Utility-Functions.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/clutter-gtk-1.0-Utility-Functions.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Utility Functions: Clutter-Gtk 1.6.2 +<title>Utility Functions: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="ch03.html" title="Miscellaneous"> <link rel="prev" href="ch03.html" title="Miscellaneous"> <link rel="next" href="ix01.html" title="Index"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -251,6 +251,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/clutter-gtk-1.0.devhelp2 new/clutter-gtk-1.6.4/doc/reference/html/clutter-gtk-1.0.devhelp2 --- old/clutter-gtk-1.6.2/doc/reference/html/clutter-gtk-1.0.devhelp2 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/clutter-gtk-1.0.devhelp2 2015-09-15 14:32:20.000000000 +0200 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> -<book xmlns="" title="Clutter-Gtk 1.6.2 Reference Manual" link="index.html" author="" name="clutter-gtk-1.0" version="2" language="c"> +<book xmlns="http://www.devhelp.net/book" title="Clutter-Gtk 1.6.4 Reference Manual" link="index.html" author="" name="clutter-gtk-1.0" version="2" language="c"> <chapters> <sub name="Clutter-Gtk Overview" link="ch01.html"/> <sub name="Clutter-Gtk Widgets" link="ch02.html"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-glossary.html new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-glossary.html --- old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-glossary.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-glossary.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Part II. Glossaries: Clutter-Gtk 1.6.2 +<title>Part II. Glossaries: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="cluttergtk-object-index.html" title="Object Index"> <link rel="next" href="annotation-glossary.html" title="Annotation Glossary"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -29,6 +29,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-object-hierarchy.html new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-object-hierarchy.html --- old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-object-hierarchy.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-object-hierarchy.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Object Hierarchy: Clutter-Gtk 1.6.2 +<title>Object Hierarchy: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects"> <link rel="prev" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects"> <link rel="next" href="cluttergtk-object-index.html" title="Object Index"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -39,6 +39,6 @@ </pre> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-object-index.html new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-object-index.html --- old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-object-index.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-object-index.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Object Index: Clutter-Gtk 1.6.2 +<title>Object Index: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="up" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects"> <link rel="prev" href="cluttergtk-object-hierarchy.html" title="Object Hierarchy"> <link rel="next" href="cluttergtk-glossary.html" title="Part II. Glossaries"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -54,6 +54,6 @@ </table></div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-objects.html new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-objects.html --- old/clutter-gtk-1.6.2/doc/reference/html/cluttergtk-objects.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/cluttergtk-objects.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Part I. Clutter-GTK Actors and Objects: Clutter-Gtk 1.6.2 +<title>Part I. Clutter-GTK Actors and Objects: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="ix01.html" title="Index"> <link rel="next" href="cluttergtk-object-hierarchy.html" title="Object Hierarchy"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -32,6 +32,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/index.html new/clutter-gtk-1.6.4/doc/reference/html/index.html --- old/clutter-gtk-1.6.2/doc/reference/html/index.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/index.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,21 +2,21 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Clutter-Gtk 1.6.2 Reference Manual: Clutter-Gtk 1.6.2 +<title>Clutter-Gtk 1.6.4 Reference Manual: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="next" href="ch01.html" title="Clutter-Gtk Overview"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <div class="book"> <div class="titlepage"> <div> -<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter-Gtk 1.6.2 +<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter-Gtk 1.6.4 Reference Manual</p></th></tr></table></div> -<div><p class="releaseinfo">Version 1.6.2 +<div><p class="releaseinfo">Version 1.6.4 </p></div> <div><p class="copyright">Copyright © 2006, 2007, 2008, 2009 Intel Corporation</p></div> <div><div class="legalnotice"> @@ -77,6 +77,6 @@ </dl></div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/index.sgml new/clutter-gtk-1.6.4/doc/reference/html/index.sgml --- old/clutter-gtk-1.6.2/doc/reference/html/index.sgml 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/index.sgml 1970-01-01 01:00:00.000000000 +0100 @@ -1,61 +0,0 @@ -<ANCHOR id="GtkClutterEmbed" href="clutter-gtk-1.0/GtkClutterEmbed.html"> -<ANCHOR id="GtkClutterEmbed.functions" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.functions"> -<ANCHOR id="GtkClutterEmbed.properties" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.properties"> -<ANCHOR id="GtkClutterEmbed.other" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.other"> -<ANCHOR id="GtkClutterEmbed.object-hierarchy" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.object-hierarchy"> -<ANCHOR id="GtkClutterEmbed.implemented-interfaces" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.implemented-interfaces"> -<ANCHOR id="GtkClutterEmbed.description" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.description"> -<ANCHOR id="GtkClutterEmbed.functions_details" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.functions_details"> -<ANCHOR id="gtk-clutter-embed-new" href="clutter-gtk-1.0/GtkClutterEmbed.html#gtk-clutter-embed-new"> -<ANCHOR id="gtk-clutter-embed-get-stage" href="clutter-gtk-1.0/GtkClutterEmbed.html#gtk-clutter-embed-get-stage"> -<ANCHOR id="gtk-clutter-embed-set-use-layout-size" href="clutter-gtk-1.0/GtkClutterEmbed.html#gtk-clutter-embed-set-use-layout-size"> -<ANCHOR id="gtk-clutter-embed-get-use-layout-size" href="clutter-gtk-1.0/GtkClutterEmbed.html#gtk-clutter-embed-get-use-layout-size"> -<ANCHOR id="GtkClutterEmbed.other_details" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.other_details"> -<ANCHOR id="GtkClutterEmbed-struct" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed-struct"> -<ANCHOR id="GtkClutterEmbedClass" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbedClass"> -<ANCHOR id="GtkClutterEmbed.property-details" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.property-details"> -<ANCHOR id="GtkClutterEmbed--use-layout-size" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed--use-layout-size"> -<ANCHOR id="GtkClutterEmbed.see-also" href="clutter-gtk-1.0/GtkClutterEmbed.html#GtkClutterEmbed.see-also"> -<ANCHOR id="GtkClutterActor" href="clutter-gtk-1.0/GtkClutterActor.html"> -<ANCHOR id="GtkClutterActor.functions" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.functions"> -<ANCHOR id="GtkClutterActor.properties" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.properties"> -<ANCHOR id="GtkClutterActor.other" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.other"> -<ANCHOR id="GtkClutterActor.object-hierarchy" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.object-hierarchy"> -<ANCHOR id="GtkClutterActor.implemented-interfaces" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.implemented-interfaces"> -<ANCHOR id="GtkClutterActor.description" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.description"> -<ANCHOR id="GtkClutterActor.functions_details" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.functions_details"> -<ANCHOR id="gtk-clutter-actor-new" href="clutter-gtk-1.0/GtkClutterActor.html#gtk-clutter-actor-new"> -<ANCHOR id="gtk-clutter-actor-new-with-contents" href="clutter-gtk-1.0/GtkClutterActor.html#gtk-clutter-actor-new-with-contents"> -<ANCHOR id="gtk-clutter-actor-get-contents" href="clutter-gtk-1.0/GtkClutterActor.html#gtk-clutter-actor-get-contents"> -<ANCHOR id="gtk-clutter-actor-get-widget" href="clutter-gtk-1.0/GtkClutterActor.html#gtk-clutter-actor-get-widget"> -<ANCHOR id="GtkClutterActor.other_details" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.other_details"> -<ANCHOR id="GtkClutterActor-struct" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor-struct"> -<ANCHOR id="GtkClutterActorClass" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActorClass"> -<ANCHOR id="GtkClutterActor.property-details" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor.property-details"> -<ANCHOR id="GtkClutterActor--contents" href="clutter-gtk-1.0/GtkClutterActor.html#GtkClutterActor--contents"> -<ANCHOR id="GtkClutterWindow" href="clutter-gtk-1.0/GtkClutterWindow.html"> -<ANCHOR id="GtkClutterWindow.functions" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.functions"> -<ANCHOR id="GtkClutterWindow.other" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.other"> -<ANCHOR id="GtkClutterWindow.object-hierarchy" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.object-hierarchy"> -<ANCHOR id="GtkClutterWindow.implemented-interfaces" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.implemented-interfaces"> -<ANCHOR id="GtkClutterWindow.description" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.description"> -<ANCHOR id="GtkClutterWindow.functions_details" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.functions_details"> -<ANCHOR id="gtk-clutter-window-new" href="clutter-gtk-1.0/GtkClutterWindow.html#gtk-clutter-window-new"> -<ANCHOR id="gtk-clutter-window-get-stage" href="clutter-gtk-1.0/GtkClutterWindow.html#gtk-clutter-window-get-stage"> -<ANCHOR id="GtkClutterWindow.other_details" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow.other_details"> -<ANCHOR id="GtkClutterWindow-struct" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindow-struct"> -<ANCHOR id="GtkClutterWindowClass" href="clutter-gtk-1.0/GtkClutterWindow.html#GtkClutterWindowClass"> -<ANCHOR id="clutter-gtk-1.0-Utility-Functions" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html"> -<ANCHOR id="clutter-gtk-1.0-Utility-Functions.functions" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#clutter-gtk-1.0-Utility-Functions.functions"> -<ANCHOR id="clutter-gtk-1.0-Utility-Functions.description" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#clutter-gtk-1.0-Utility-Functions.description"> -<ANCHOR id="clutter-gtk-1.0-Utility-Functions.functions_details" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#clutter-gtk-1.0-Utility-Functions.functions_details"> -<ANCHOR id="gtk-clutter-init" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#gtk-clutter-init"> -<ANCHOR id="gtk-clutter-init-with-args" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#gtk-clutter-init-with-args"> -<ANCHOR id="gtk-clutter-get-option-group" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#gtk-clutter-get-option-group"> -<ANCHOR id="clutter-gtk-1.0-Utility-Functions.other_details" href="clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html#clutter-gtk-1.0-Utility-Functions.other_details"> -<ANCHOR id="annotation-glossterm-allow-none" href="clutter-gtk-1.0/annotation-glossary.html#annotation-glossterm-allow-none"> -<ANCHOR id="annotation-glossterm-array" href="clutter-gtk-1.0/annotation-glossary.html#annotation-glossterm-array"> -<ANCHOR id="annotation-glossterm-inout" href="clutter-gtk-1.0/annotation-glossary.html#annotation-glossterm-inout"> -<ANCHOR id="annotation-glossterm-skip" href="clutter-gtk-1.0/annotation-glossary.html#annotation-glossterm-skip"> -<ANCHOR id="annotation-glossterm-transfer full" href="clutter-gtk-1.0/annotation-glossary.html#annotation-glossterm-transfer full"> -<ANCHOR id="annotation-glossterm-transfer none" href="clutter-gtk-1.0/annotation-glossary.html#annotation-glossterm-transfer none"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ix01.html new/clutter-gtk-1.6.4/doc/reference/html/ix01.html --- old/clutter-gtk-1.6.2/doc/reference/html/ix01.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ix01.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Index: Clutter-Gtk 1.6.2 +<title>Index: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="clutter-gtk-1.0-Utility-Functions.html" title="Utility Functions"> <link rel="next" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -94,6 +94,6 @@ </div> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ix02.html new/clutter-gtk-1.6.4/doc/reference/html/ix02.html --- old/clutter-gtk-1.6.2/doc/reference/html/ix02.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ix02.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Index of all symbols: Clutter-Gtk 1.6.2 +<title>Index of all symbols: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="annotation-glossary.html" title="Annotation Glossary"> <link rel="next" href="ix03.html" title="Index of new symbols in 1.0"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -192,6 +192,6 @@ <dd></dd> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ix03.html new/clutter-gtk-1.6.4/doc/reference/html/ix03.html --- old/clutter-gtk-1.6.2/doc/reference/html/ix03.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ix03.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Index of new symbols in 1.0: Clutter-Gtk 1.6.2 +<title>Index of new symbols in 1.0: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="ix02.html" title="Index of all symbols"> <link rel="next" href="ix04.html" title="Index of deprecated symbols"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -60,6 +60,6 @@ <dd></dd> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/ix04.html new/clutter-gtk-1.6.4/doc/reference/html/ix04.html --- old/clutter-gtk-1.6.2/doc/reference/html/ix04.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/ix04.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,14 +2,14 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Index of deprecated symbols: Clutter-Gtk 1.6.2 +<title>Index of deprecated symbols: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="ix03.html" title="Index of new symbols in 1.0"> <link rel="next" href="license.html" title="Appendix A. License"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -26,6 +26,6 @@ <a name="idx"></a> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/html/license.html new/clutter-gtk-1.6.4/doc/reference/html/license.html --- old/clutter-gtk-1.6.2/doc/reference/html/license.html 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/html/license.html 2015-09-15 14:32:20.000000000 +0200 @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Appendix A. License: Clutter-Gtk 1.6.2 +<title>Appendix A. License: Clutter-Gtk 1.6.4 Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> -<link rel="up" href="index.html" title="Clutter-Gtk 1.6.2 Reference Manual"> +<link rel="home" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> +<link rel="up" href="index.html" title="Clutter-Gtk 1.6.4 Reference Manual"> <link rel="prev" href="ix04.html" title="Index of deprecated symbols"> -<meta name="generator" content="GTK-Doc V1.23.1 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24.1 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -53,6 +53,6 @@ </p> </div> <div class="footer"> -<hr>Generated by GTK-Doc V1.23.1</div> +<hr>Generated by GTK-Doc V1.24.1</div> </body> </html> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/doc/reference/version.xml new/clutter-gtk-1.6.4/doc/reference/version.xml --- old/clutter-gtk-1.6.2/doc/reference/version.xml 2015-06-30 12:41:19.000000000 +0200 +++ new/clutter-gtk-1.6.4/doc/reference/version.xml 2015-09-15 14:31:39.000000000 +0200 @@ -1 +1 @@ -1.6.2 +1.6.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/examples/gtk-clutter-events.c new/clutter-gtk-1.6.4/examples/gtk-clutter-events.c --- old/clutter-gtk-1.6.2/examples/gtk-clutter-events.c 2013-09-24 19:02:52.000000000 +0200 +++ new/clutter-gtk-1.6.4/examples/gtk-clutter-events.c 2015-09-15 13:12:09.000000000 +0200 @@ -137,6 +137,7 @@ GtkWidget *widget, *vbox, *hbox, *button, *label, *box; ClutterActor *actor; GdkPixbuf *pixbuf = NULL; + GtkSizeGroup *size_group; if (gtk_clutter_init_with_args (&argc, &argv, "- Event test", NULL, NULL, NULL) != CLUTTER_INIT_SUCCESS) g_error ("Unable to initialize GtkClutter"); @@ -203,12 +204,14 @@ clutter_actor_set_size (actor, 500, 20); /* Create our adjustment widgets */ + size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, 0); box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0); label = gtk_label_new ("Rotate x-axis"); + gtk_size_group_add_widget (size_group, label); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); button = gtk_spin_button_new_with_range (0, 360, 1); gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0); @@ -218,6 +221,7 @@ gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0); label = gtk_label_new ("Rotate y-axis"); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); + gtk_size_group_add_widget (size_group, label); button = gtk_spin_button_new_with_range (0, 360, 1); gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0); g_signal_connect (button, "value-changed", G_CALLBACK (on_y_changed), app); @@ -226,6 +230,7 @@ gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0); label = gtk_label_new ("Rotate z-axis"); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); + gtk_size_group_add_widget (size_group, label); button = gtk_spin_button_new_with_range (0, 360, 1); gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0); g_signal_connect (button, "value-changed", G_CALLBACK (on_z_changed), app); @@ -234,6 +239,7 @@ gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0); label = gtk_label_new ("Adjust opacity"); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); + gtk_size_group_add_widget (size_group, label); button = gtk_spin_button_new_with_range (0, 255, 1); gtk_spin_button_set_value (GTK_SPIN_BUTTON (button), 255); gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/examples/gtk-clutter-multistage.c new/clutter-gtk-1.6.4/examples/gtk-clutter-multistage.c --- old/clutter-gtk-1.6.2/examples/gtk-clutter-multistage.c 2013-09-24 19:02:52.000000000 +0200 +++ new/clutter-gtk-1.6.4/examples/gtk-clutter-multistage.c 2015-07-23 23:31:02.000000000 +0200 @@ -39,11 +39,11 @@ stage1 = gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (clutter1)); clutter_actor_set_background_color (stage1, &col1); tex1 = gtk_clutter_texture_new (); - gtk_clutter_texture_set_from_stock (GTK_CLUTTER_TEXTURE (tex1), - clutter1, - GTK_STOCK_DIALOG_INFO, - GTK_ICON_SIZE_DIALOG, - NULL); + gtk_clutter_texture_set_from_icon_name (GTK_CLUTTER_TEXTURE (tex1), + clutter1, + "dialog-information", + GTK_ICON_SIZE_DIALOG, + NULL); clutter_actor_set_position (tex1, 160 - clutter_actor_get_width (tex1) / 2.0, 120 - clutter_actor_get_height (tex1) / 2.0); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/examples/gtk-clutter-test-actor.c new/clutter-gtk-1.6.4/examples/gtk-clutter-test-actor.c --- old/clutter-gtk-1.6.2/examples/gtk-clutter-test-actor.c 2014-08-21 16:59:57.000000000 +0200 +++ new/clutter-gtk-1.6.4/examples/gtk-clutter-test-actor.c 2015-08-21 12:56:08.000000000 +0200 @@ -149,7 +149,7 @@ stage = gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (clutter)); - button = gtk_button_new_from_stock (GTK_STOCK_QUIT); + button = gtk_button_new_with_mnemonic ("_Quit"); g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_widget_destroy), window); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/examples/gtk-clutter-test.c new/clutter-gtk-1.6.4/examples/gtk-clutter-test.c --- old/clutter-gtk-1.6.2/examples/gtk-clutter-test.c 2015-04-30 12:52:03.000000000 +0200 +++ new/clutter-gtk-1.6.4/examples/gtk-clutter-test.c 2015-07-23 23:22:37.000000000 +0200 @@ -90,11 +90,12 @@ clickity (GtkButton *button, gpointer stack) { - if (g_strcmp0 (gtk_stack_get_visible_child_name (GTK_STACK (stack)), "label") == 0) - gtk_stack_set_visible_child_name (GTK_STACK (stack), "clutter"); - else - gtk_stack_set_visible_child_name (GTK_STACK (stack), "label"); - fade = !fade; + if (g_strcmp0 (gtk_stack_get_visible_child_name (GTK_STACK (stack)), "label") == 0) + gtk_stack_set_visible_child_name (GTK_STACK (stack), "clutter"); + else + gtk_stack_set_visible_child_name (GTK_STACK (stack), "label"); + + fade = !fade; } static void @@ -169,6 +170,7 @@ clutter = gtk_clutter_embed_new (); gtk_stack_add_named (GTK_STACK (stack), clutter, "clutter"); + gtk_widget_realize (clutter); stage = gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (clutter)); clutter_actor_set_background_color (stage, CLUTTER_COLOR_LightSkyBlue); @@ -182,17 +184,14 @@ gtk_container_add (GTK_CONTAINER (vbox), button); gtk_widget_set_hexpand (button, TRUE); - button = gtk_button_new_with_label ("Fullscreen"); - gtk_button_set_image (GTK_BUTTON (button), - gtk_image_new_from_stock (GTK_STOCK_FULLSCREEN, - GTK_ICON_SIZE_BUTTON)); + button = gtk_button_new_with_mnemonic ("_Fullscreen"); g_signal_connect (button, "clicked", G_CALLBACK (on_fullscreen), window); gtk_container_add (GTK_CONTAINER (vbox), button); gtk_widget_set_hexpand (button, TRUE); - button = gtk_button_new_from_stock (GTK_STOCK_QUIT); + button = gtk_button_new_with_mnemonic ("_Quit"); g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_widget_destroy), window); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/examples/gtk-clutter-window-test.c new/clutter-gtk-1.6.4/examples/gtk-clutter-window-test.c --- old/clutter-gtk-1.6.2/examples/gtk-clutter-window-test.c 2013-09-24 19:02:52.000000000 +0200 +++ new/clutter-gtk-1.6.4/examples/gtk-clutter-window-test.c 2015-07-23 23:36:27.000000000 +0200 @@ -58,7 +58,10 @@ for (stock_id = (char *) first; stock_id != NULL; stock_id = va_arg (var_args, char *)) { - GtkToolItem *item = gtk_tool_button_new_from_stock (stock_id); + GtkToolItem *item = g_object_new (GTK_TYPE_TOOL_BUTTON, + "icon-name", stock_id, + "label", NULL, + NULL); gtk_toolbar_insert (toolbar, item, -1); } @@ -136,12 +139,11 @@ toolbar = gtk_toolbar_new (); add_toolbar_items (GTK_TOOLBAR (toolbar), - GTK_STOCK_ADD, - GTK_STOCK_BOLD, - GTK_STOCK_ITALIC, - GTK_STOCK_CANCEL, - GTK_STOCK_CDROM, - GTK_STOCK_CONVERT, + "list-add", + "format-text-bold", + "format-text-italic", + "media-optical", + "edit-copy", NULL); gtk_widget_show_all (toolbar); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/gtk-doc.make new/clutter-gtk-1.6.4/gtk-doc.make --- old/clutter-gtk-1.6.2/gtk-doc.make 2015-05-19 13:20:32.000000000 +0200 +++ new/clutter-gtk-1.6.4/gtk-doc.make 2015-08-19 20:25:19.000000000 +0200 @@ -142,7 +142,7 @@ GTK_DOC_V_XML_=$(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_XML_0=@echo " DOC Building XML"; -sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) +sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent $(GTK_DOC_V_XML)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ @@ -153,6 +153,17 @@ sgml.stamp: sgml-build.stamp @true +xml/gtkdocentities.ent: Makefile + $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \ + echo "<!ENTITY package \"$(PACKAGE)\">"; \ + echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \ + echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \ + echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \ + echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \ + echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \ + echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \ + ) > $@ + #### html #### GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_$(V)) Files old/clutter-gtk-1.6.2/po/ja.gmo and new/clutter-gtk-1.6.4/po/ja.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/po/ja.po new/clutter-gtk-1.6.4/po/ja.po --- old/clutter-gtk-1.6.2/po/ja.po 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/po/ja.po 2015-09-15 14:32:20.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: clutter-gtk master\n" "Report-Msgid-Bugs-To: http://bugzilla.clutter-project.org/enter_bug.cgi?" "product=clutter-gtk\n" -"POT-Creation-Date: 2015-06-30 11:41+0100\n" +"POT-Creation-Date: 2015-09-15 13:32+0100\n" "PO-Revision-Date: 2012-09-07 13:24+0900\n" "Last-Translator: Takeshi AIHANA <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" Files old/clutter-gtk-1.6.2/po/pl.gmo and new/clutter-gtk-1.6.4/po/pl.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/po/pl.po new/clutter-gtk-1.6.4/po/pl.po --- old/clutter-gtk-1.6.2/po/pl.po 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/po/pl.po 2015-09-15 14:32:20.000000000 +0200 @@ -4,15 +4,15 @@ # pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas: # [email protected] # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -# Piotr Drąg <[email protected]>, 2011-2012. -# Aviary.pl <[email protected]>, 2011-2012. +# Piotr Drąg <[email protected]>, 2011-2015. +# Aviary.pl <[email protected]>, 2011-2015. msgid "" msgstr "" "Project-Id-Version: clutter-gtk\n" "Report-Msgid-Bugs-To: http://bugzilla.clutter-project.org/enter_bug.cgi?" "product=clutter-gtk\n" -"POT-Creation-Date: 2015-06-30 11:41+0100\n" -"PO-Revision-Date: 2012-09-01 21:20+0200\n" +"POT-Creation-Date: 2015-09-15 13:32+0100\n" +"PO-Revision-Date: 2015-08-26 17:31+0200\n" "Last-Translator: Piotr Drąg <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" "Language: pl\n" @@ -27,4 +27,4 @@ #: clutter-gtk/gtk-clutter-texture.c:137 #, c-format msgid "Stock ID '%s' not found" -msgstr "Nie odnaleziono standardowego identyfikatora \"%s\"" +msgstr "Nie odnaleziono standardowego identyfikatora „%s”" Files old/clutter-gtk-1.6.2/po/zh_CN.gmo and new/clutter-gtk-1.6.4/po/zh_CN.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/clutter-gtk-1.6.2/po/zh_CN.po new/clutter-gtk-1.6.4/po/zh_CN.po --- old/clutter-gtk-1.6.2/po/zh_CN.po 2015-06-30 12:41:42.000000000 +0200 +++ new/clutter-gtk-1.6.4/po/zh_CN.po 2015-09-15 14:32:20.000000000 +0200 @@ -9,7 +9,7 @@ "Project-Id-Version: clutter-gtk master\n" "Report-Msgid-Bugs-To: http://bugzilla.clutter-project.org/enter_bug.cgi?" "product=clutter-gtk\n" -"POT-Creation-Date: 2015-06-30 11:41+0100\n" +"POT-Creation-Date: 2015-09-15 13:32+0100\n" "PO-Revision-Date: 2011-03-29 11:39+0800\n" "Last-Translator: Aron Xu <[email protected]>\n" "Language-Team: Chinese (simplified)\n"
