Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package breeze6-gtk for openSUSE:Factory checked in at 2024-11-27 22:05:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/breeze6-gtk (Old) and /work/SRC/openSUSE:Factory/.breeze6-gtk.new.28523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "breeze6-gtk" Wed Nov 27 22:05:49 2024 rev:16 rq:1226692 version:6.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/breeze6-gtk/breeze6-gtk.changes 2024-11-06 16:50:55.817506571 +0100 +++ /work/SRC/openSUSE:Factory/.breeze6-gtk.new.28523/breeze6-gtk.changes 2024-11-27 22:10:29.990363462 +0100 @@ -1,0 +2,10 @@ +Tue Nov 26 15:45:27 UTC 2024 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 6.2.4: + * New bugfix release + * For more details see https://kde.org/announcements/plasma/6/6.2.4 +- Changes since 6.2.3: + * checkbox: Apply indeterminate after checked + * update version for new release + +------------------------------------------------------------------- Old: ---- breeze-gtk-6.2.3.tar.xz breeze-gtk-6.2.3.tar.xz.sig New: ---- breeze-gtk-6.2.4.tar.xz breeze-gtk-6.2.4.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ breeze6-gtk.spec ++++++ --- /var/tmp/diff_new_pack.CKztXA/_old 2024-11-27 22:10:31.170412973 +0100 +++ /var/tmp/diff_new_pack.CKztXA/_new 2024-11-27 22:10:31.174413141 +0100 @@ -31,7 +31,7 @@ %bcond_without released Name: breeze6-gtk -Version: 6.2.3 +Version: 6.2.4 Release: 0 Summary: GTK+ theme matching KDE's Breeze License: LGPL-2.1-only ++++++ breeze-gtk-6.2.3.tar.xz -> breeze-gtk-6.2.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-6.2.3/CMakeLists.txt new/breeze-gtk-6.2.4/CMakeLists.txt --- old/breeze-gtk-6.2.3/CMakeLists.txt 2024-11-05 13:34:44.000000000 +0100 +++ new/breeze-gtk-6.2.4/CMakeLists.txt 2024-11-26 11:06:48.000000000 +0100 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) project(breeze-gtk) -set(PROJECT_VERSION "6.2.3") +set(PROJECT_VERSION "6.2.4") set(PROJECT_VERSION_MAJOR 6) find_package(ECM 6.2.0 REQUIRED NO_MODULE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-6.2.3/src/gtk3/widgets/_checkboxes.scss new/breeze-gtk-6.2.4/src/gtk3/widgets/_checkboxes.scss --- old/breeze-gtk-6.2.3/src/gtk3/widgets/_checkboxes.scss 2024-11-05 13:34:44.000000000 +0100 +++ new/breeze-gtk-6.2.4/src/gtk3/widgets/_checkboxes.scss 2024-11-26 11:06:48.000000000 +0100 @@ -91,10 +91,6 @@ } } - &:indeterminate { - -gtk-icon-source: -gtk-recolor(url("../assets/dash-symbolic.svg")); - } - menu menuitem & { margin: 0; // this is a workaround for a menu check/radio size allocation issue min-height: 14px; @@ -111,12 +107,18 @@ &:checked { -gtk-icon-source: -gtk-recolor(url("../assets/checkmark-symbolic.svg")); } + &:indeterminate { + -gtk-icon-source: -gtk-recolor(url("../assets/dash-symbolic.svg")); + } } radio { border-radius: 50%; &:checked { -gtk-icon-source: -gtk-recolor(url("../assets/bullet-symbolic.svg")); } + &:indeterminate { + -gtk-icon-source: -gtk-recolor(url("../assets/dash-symbolic.svg")); + } } radio:not(:indeterminate):not(:checked):active:not(:backdrop) { -gtk-icon-transform: scale(0); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-6.2.3/src/gtk4/widgets/_checkboxes.scss new/breeze-gtk-6.2.4/src/gtk4/widgets/_checkboxes.scss --- old/breeze-gtk-6.2.3/src/gtk4/widgets/_checkboxes.scss 2024-11-05 13:34:44.000000000 +0100 +++ new/breeze-gtk-6.2.4/src/gtk4/widgets/_checkboxes.scss 2024-11-26 11:06:48.000000000 +0100 @@ -90,11 +90,6 @@ } } - - &:indeterminate { - -gtk-icon-source: -gtk-recolor(url("../assets/dash-symbolic.svg")); - } - menu menuitem & { margin: 0; // this is a workaround for a menu check/radio size allocation issue min-height: 14px; @@ -111,12 +106,18 @@ &:checked { -gtk-icon-source: -gtk-recolor(url("../assets/checkmark-symbolic.svg")); } + &:indeterminate { + -gtk-icon-source: -gtk-recolor(url("../assets/dash-symbolic.svg")); + } } radio { border-radius: 50%; &:checked { -gtk-icon-source: -gtk-recolor(url("../assets/bullet-symbolic.svg")); } + &:indeterminate { + -gtk-icon-source: -gtk-recolor(url("../assets/dash-symbolic.svg")); + } } radio:not(:indeterminate):not(:checked):active:not(:backdrop) { -gtk-icon-transform: scale(0); }