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 2026-02-16 13:05:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/breeze6-gtk (Old)
 and      /work/SRC/openSUSE:Factory/.breeze6-gtk.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "breeze6-gtk"

Mon Feb 16 13:05:28 2026 rev:36 rq:1333060 version:6.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/breeze6-gtk/breeze6-gtk.changes  2026-01-18 
22:19:32.949297598 +0100
+++ /work/SRC/openSUSE:Factory/.breeze6-gtk.new.1977/breeze6-gtk.changes        
2026-02-16 13:08:14.043323961 +0100
@@ -1,0 +2,34 @@
+Thu Feb 12 19:42:37 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.0:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.6.0
+- Changes since 6.5.91:
+  * Update version for new release 6.6.0
+
+-------------------------------------------------------------------
+Wed Jan 28 16:13:19 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.5.91:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.5.91
+- Changes since 6.5.90:
+  * Update version for new release 6.5.91
+
+-------------------------------------------------------------------
+Sat Jan 17 20:24:53 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.5.90:
+  * New feature release
+  * For more details see https://kde.org/announcements/plasma/6/6.5.90
+- Changes since 6.5.5:
+  * Update version for new release 6.5.90
+  * Fix expander arrow icon being missing in GTK4 applications (kde#477505)
+  * Fix corner radii for CSD and SSD-using GTK apps (kde#489562)
+  * Fix strange black lines between some elements (kde#484383)
+  * Add external margins to Toolbar items in pure GTK4 apps (kde#489564)
+  * Remove button and switch gradient
+  * gtk3/menu: fix corner radius background
+  * Update version for new release 6.5.80
+
+-------------------------------------------------------------------

Old:
----
  breeze-gtk-6.5.5.tar.xz
  breeze-gtk-6.5.5.tar.xz.sig

New:
----
  breeze-gtk-6.6.0.tar.xz
  breeze-gtk-6.6.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ breeze6-gtk.spec ++++++
--- /var/tmp/diff_new_pack.T88r31/_old  2026-02-16 13:08:15.115368565 +0100
+++ /var/tmp/diff_new_pack.T88r31/_new  2026-02-16 13:08:15.119368731 +0100
@@ -31,14 +31,14 @@
 
 %bcond_without released
 Name:           breeze6-gtk
-Version:        6.5.5
+Version:        6.6.0
 Release:        0
 Summary:        GTK+ theme matching KDE's Breeze
 License:        LGPL-2.1-only
 URL:            https://www.kde.org
-Source:         
https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz
+Source:         %{rname}-%{version}.tar.xz
 %if %{with released}
-Source1:        
https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz.sig
+Source1:        %{rname}-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 BuildRequires:  %{python_module pycairo}

++++++ breeze-gtk-6.5.5.tar.xz -> breeze-gtk-6.6.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/CMakeLists.txt 
new/breeze-gtk-6.6.0/CMakeLists.txt
--- old/breeze-gtk-6.5.5/CMakeLists.txt 2026-01-13 13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/CMakeLists.txt 2026-02-12 11:01:22.000000000 +0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(breeze-gtk)
-set(PROJECT_VERSION "6.5.5")
+set(PROJECT_VERSION "6.6.0")
 
 find_package(ECM 6.2.0 REQUIRED NO_MODULE)
 include(FeatureSummary)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk3/widgets/_button.scss 
new/breeze-gtk-6.6.0/src/gtk3/widgets/_button.scss
--- old/breeze-gtk-6.5.5/src/gtk3/widgets/_button.scss  2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk3/widgets/_button.scss  2026-02-12 
11:01:22.000000000 +0100
@@ -10,15 +10,6 @@
        border-color: gtkmix($c, gtkmix($bg, $fg, 0.333), 0.5);
 }
 
-@mixin bg-gradient($bg) {
-       background: linear-gradient(
-               180deg,
-               gtkmix($bg, white, 0.03125) 0%,
-               $bg 50%,
-               gtkmix($bg, black, 0.03125) 100%
-       );
-}
-
 @mixin linked() {
        border-right-style: none;
        border-radius: 0;
@@ -137,9 +128,7 @@
 
                color: gtk("@theme_button_foreground_normal");
                border-color: gtk("@borders");
-               @include bg-gradient(
-                       gtk("@theme_button_background_normal")
-               );
+               background: gtk("@theme_button_background_normal");
 
                &:backdrop {
                        box-shadow: none;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk3/widgets/_sidebar.scss 
new/breeze-gtk-6.6.0/src/gtk3/widgets/_sidebar.scss
--- old/breeze-gtk-6.5.5/src/gtk3/widgets/_sidebar.scss 2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk3/widgets/_sidebar.scss 2026-02-12 
11:01:22.000000000 +0100
@@ -44,13 +44,17 @@
                &:dir(ltr),
                &.left,
                &.left:dir(rtl) {
-                       border-right: 1px solid $ligh_border_color;
+                       border-right: 1px
+                               solid
+                               gtk("@borders_breeze");
                        border-left: none;
                }
 
                &:dir(rtl),
                &.right {
-                       border-left: 1px solid $ligh_border_color;
+                       border-left: 1px
+                               solid
+                               gtk("@borders_breeze");
                        border-right: none;
                }
        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk3/widgets/_switch.scss 
new/breeze-gtk-6.6.0/src/gtk3/widgets/_switch.scss
--- old/breeze-gtk-6.5.5/src/gtk3/widgets/_switch.scss  2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk3/widgets/_switch.scss  2026-02-12 
11:01:22.000000000 +0100
@@ -67,9 +67,7 @@
 
                box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.125);
                border-color: gtk("@borders");
-               @include bg-gradient(
-                       gtk("@theme_button_background_normal")
-               );
+               background: gtk("@theme_button_background_normal");
        }
 
        &:hover slider {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk3/widgets/_toolbar.scss 
new/breeze-gtk-6.6.0/src/gtk3/widgets/_toolbar.scss
--- old/breeze-gtk-6.5.5/src/gtk3/widgets/_toolbar.scss 2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk3/widgets/_toolbar.scss 2026-02-12 
11:01:22.000000000 +0100
@@ -8,7 +8,7 @@
        padding: 4px;
        background-color: gtk("@theme_bg_color");
 }
-toolbar {
+.toolbar, toolbar {
        @extend %toolbar;
        padding: 4px 3px 3px 4px;
        &:backdrop {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk4/widgets/_button.scss 
new/breeze-gtk-6.6.0/src/gtk4/widgets/_button.scss
--- old/breeze-gtk-6.5.5/src/gtk4/widgets/_button.scss  2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk4/widgets/_button.scss  2026-02-12 
11:01:22.000000000 +0100
@@ -10,15 +10,6 @@
        border-color: gtkmix($c, gtkmix($bg, $fg, 0.333), 0.5);
 }
 
-@mixin bg-gradient($bg) {
-       background: linear-gradient(
-               180deg,
-               gtkmix($bg, white, 0.03125) 0%,
-               $bg 50%,
-               gtkmix($bg, black, 0.03125) 100%
-       );
-}
-
 @mixin linked() {
        border-right-style: none;
        border-radius: 0;
@@ -124,9 +115,7 @@
 
                color: gtk("@theme_button_foreground_normal");
                border-color: gtk("@borders");
-               @include bg-gradient(
-                       gtk("@theme_button_background_normal")
-               );
+               background: gtk("@theme_button_background_normal");
 
                &:backdrop {
                        box-shadow: none;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk4/widgets/_sidebar.scss 
new/breeze-gtk-6.6.0/src/gtk4/widgets/_sidebar.scss
--- old/breeze-gtk-6.5.5/src/gtk4/widgets/_sidebar.scss 2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk4/widgets/_sidebar.scss 2026-02-12 
11:01:22.000000000 +0100
@@ -44,13 +44,17 @@
                &:dir(ltr),
                &.left,
                &.left:dir(rtl) {
-                       border-right: 1px solid $ligh_border_color;
+                       border-right: 1px
+                               solid
+                               gtk("@borders_breeze");
                        border-left: none;
                }
 
                &:dir(rtl),
                &.right {
-                       border-left: 1px solid $ligh_border_color;
+                       border-left: 1px
+                               solid
+                               gtk("@borders_breeze");
                        border-right: none;
                }
        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk4/widgets/_switch.scss 
new/breeze-gtk-6.6.0/src/gtk4/widgets/_switch.scss
--- old/breeze-gtk-6.5.5/src/gtk4/widgets/_switch.scss  2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk4/widgets/_switch.scss  2026-02-12 
11:01:22.000000000 +0100
@@ -67,9 +67,7 @@
 
                box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.125);
                border-color: gtk("@borders");
-               @include bg-gradient(
-                       gtk("@theme_button_background_normal")
-               );
+               background: gtk("@theme_button_background_normal");
        }
 
        &:hover slider {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-gtk-6.5.5/src/gtk4/widgets/_toolbar.scss 
new/breeze-gtk-6.6.0/src/gtk4/widgets/_toolbar.scss
--- old/breeze-gtk-6.5.5/src/gtk4/widgets/_toolbar.scss 2026-01-13 
13:56:39.000000000 +0100
+++ new/breeze-gtk-6.6.0/src/gtk4/widgets/_toolbar.scss 2026-02-12 
11:01:22.000000000 +0100
@@ -7,7 +7,7 @@
        padding: 4px;
        background-color: gtk("@theme_bg_color");
 }
-toolbar {
+.toolbar, toolbar {
        @extend %toolbar;
        padding: 4px 3px 3px 4px;
        &:backdrop {

Reply via email to