commit oxygen-gtk3 for openSUSE:Factory
Hello community, here is the log from the commit of package oxygen-gtk3 for openSUSE:Factory checked in at 2014-04-14 12:08:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/oxygen-gtk3 (Old) and /work/SRC/openSUSE:Factory/.oxygen-gtk3.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "oxygen-gtk3" Changes: -------- --- /work/SRC/openSUSE:Factory/oxygen-gtk3/oxygen-gtk3.changes 2014-03-09 18:32:35.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.oxygen-gtk3.new/oxygen-gtk3.changes 2014-04-14 12:08:35.000000000 +0200 @@ -1,0 +2,19 @@ +Sun Apr 13 20:34:57 UTC 2014 - hrvoje.senjan@gmail.com + +- Update to 1.3.5 + * made more widgets 'transparent' via css, to get the proper + background gradient behind + * fix crash with menubar animations when invalid menubar was passed + * fixed updates for treeviews embedded in scrolled-windows + * added (still not perfect) support for firefox compiled against gtk3 +- Drop 0001-make-sure-parent-is-registered-to-innerShadowEngine-.patch, + merged upstream + +------------------------------------------------------------------- +Tue Mar 18 17:45:10 UTC 2014 - hrvoje.senjan@gmail.com + +- Added crashfix from upstream: + 0001-make-sure-parent-is-registered-to-innerShadowEngine-.patch, + kde#331879 + +------------------------------------------------------------------- Old: ---- oxygen-gtk3-1.3.4.tar.bz2 New: ---- oxygen-gtk3-1.3.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ oxygen-gtk3.spec ++++++ --- /var/tmp/diff_new_pack.HBujoB/_old 2014-04-14 12:08:35.000000000 +0200 +++ /var/tmp/diff_new_pack.HBujoB/_new 2014-04-14 12:08:35.000000000 +0200 @@ -17,7 +17,7 @@ Name: oxygen-gtk3 -Version: 1.3.4 +Version: 1.3.5 Release: 0 Summary: A Port of the default KDE Widget Theme (Oxygen), to GTK 3.x License: LGPL-2.1+ ++++++ oxygen-gtk3-1.3.4.tar.bz2 -> oxygen-gtk3-1.3.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/oxygen-gtk3-1.3.4/CMakeLists.txt new/oxygen-gtk3-1.3.5/CMakeLists.txt --- old/oxygen-gtk3-1.3.4/CMakeLists.txt 2014-03-07 16:20:03.000000000 +0100 +++ new/oxygen-gtk3-1.3.5/CMakeLists.txt 2014-04-10 08:47:47.000000000 +0200 @@ -13,7 +13,7 @@ set( CPACK_PACKAGE_VENDOR "hugo.pereira@free.fr" ) set( CPACK_PACKAGE_VERSION_MAJOR "1" ) set( CPACK_PACKAGE_VERSION_MINOR "3" ) -set( CPACK_PACKAGE_VERSION_PATCH "4" ) +set( CPACK_PACKAGE_VERSION_PATCH "5" ) set( CPACK_SOURCE_IGNORE_FILES "build" "^${PROJECT_SOURCE_DIR}.*/.git/" ) ################################## diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/oxygen-gtk3-1.3.4/src/oxygenthemingengine.cpp new/oxygen-gtk3-1.3.5/src/oxygenthemingengine.cpp --- old/oxygen-gtk3-1.3.4/src/oxygenthemingengine.cpp 2014-03-07 16:20:03.000000000 +0100 +++ new/oxygen-gtk3-1.3.5/src/oxygenthemingengine.cpp 2014-04-10 08:47:33.000000000 +0200 @@ -251,7 +251,8 @@ gtk_widget_path_is_type( path, GTK_TYPE_LIST_BOX ) || gtk_widget_path_is_type( path, GTK_TYPE_VIEWPORT ) || gtk_widget_path_is_type( path, GTK_TYPE_EVENT_BOX ) || - gtk_widget_path_is_type( path, GTK_TYPE_PANED ) + gtk_widget_path_is_type( path, GTK_TYPE_PANED ) || + Gtk::g_object_is_a( G_OBJECT( widget ), "GdlDockItemGrip" ) ) ) { @@ -703,7 +704,10 @@ } // make sure child is registered - if( borderStyle == GTK_BORDER_STYLE_INSET && gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( widget ) ) == GTK_SHADOW_IN ) + if( + borderStyle == GTK_BORDER_STYLE_INSET && + gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( widget ) ) == GTK_SHADOW_IN && + Style::instance().animations().innerShadowEngine().contains( widget ) ) { Style::instance().animations().innerShadowEngine().registerChild( widget, gtk_bin_get_child( GTK_BIN( widget ) ) ); } } else if( @@ -1432,7 +1436,8 @@ if( gtk_scrolled_window_get_shadow_type( scrolledWindow ) != GTK_SHADOW_IN ) { gtk_scrolled_window_set_shadow_type( scrolledWindow, GTK_SHADOW_IN ); - Style::instance().animations().innerShadowEngine().registerChild( child, gtk_bin_get_child( GTK_BIN( child ) ) ); + if( Style::instance().animations().innerShadowEngine().contains( child ) ) + { Style::instance().animations().innerShadowEngine().registerChild( child, gtk_bin_get_child( GTK_BIN( child ) ) ); } } return; -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de