Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libplasma6 for openSUSE:Factory checked in at 2025-07-03 12:08:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libplasma6 (Old) and /work/SRC/openSUSE:Factory/.libplasma6.new.1903 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libplasma6" Thu Jul 3 12:08:07 2025 rev:28 rq:1289896 version:6.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libplasma6/libplasma6.changes 2025-06-26 11:36:23.666498422 +0200 +++ /work/SRC/openSUSE:Factory/.libplasma6.new.1903/libplasma6.changes 2025-07-03 12:08:48.801579085 +0200 @@ -1,0 +2,10 @@ +Tue Jul 1 13:11:12 UTC 2025 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 6.4.2: + * New bugfix release + * For more details see https://kde.org/announcements/plasma/6/6.4.2 +- Changes since 6.4.1: + * Update version for new release 6.4.2 + * theme: Add active, positive, neutral, negative backgrounds colors + +------------------------------------------------------------------- Old: ---- libplasma-6.4.1.tar.xz libplasma-6.4.1.tar.xz.sig New: ---- libplasma-6.4.2.tar.xz libplasma-6.4.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libplasma6.spec ++++++ --- /var/tmp/diff_new_pack.JCsPm5/_old 2025-07-03 12:08:49.665614837 +0200 +++ /var/tmp/diff_new_pack.JCsPm5/_new 2025-07-03 12:08:49.669615003 +0200 @@ -26,7 +26,7 @@ %{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk -F. '{print $1"."$2}')} %bcond_without released Name: libplasma6 -Version: 6.4.1 +Version: 6.4.2 Release: 0 Summary: Plasma library and runtime components based upon KF6 and Qt6 License: GPL-2.0-or-later AND LGPL-2.0-or-later ++++++ libplasma-6.4.1.tar.xz -> libplasma-6.4.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libplasma-6.4.1/CMakeLists.txt new/libplasma-6.4.2/CMakeLists.txt --- old/libplasma-6.4.1/CMakeLists.txt 2025-06-24 11:33:31.000000000 +0200 +++ new/libplasma-6.4.2/CMakeLists.txt 2025-07-01 13:40:38.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) -set(PROJECT_VERSION "6.4.1") +set(PROJECT_VERSION "6.4.2") project(libplasma VERSION ${PROJECT_VERSION}) set(QT_MIN_VERSION "6.8.0") -set(PROJECT_DEP_VERSION "6.4.1") +set(PROJECT_DEP_VERSION "6.4.2") set(KF6_MIN_VERSION "6.14.0") set(CMAKE_CXX_STANDARD 20) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libplasma-6.4.1/src/declarativeimports/kirigamiplasmastyle/plasmatheme.cpp new/libplasma-6.4.2/src/declarativeimports/kirigamiplasmastyle/plasmatheme.cpp --- old/libplasma-6.4.1/src/declarativeimports/kirigamiplasmastyle/plasmatheme.cpp 2025-06-24 11:33:31.000000000 +0200 +++ new/libplasma-6.4.2/src/declarativeimports/kirigamiplasmastyle/plasmatheme.cpp 2025-07-01 13:40:38.000000000 +0200 @@ -174,14 +174,13 @@ setHighlightColor(m_theme.color(Plasma::Theme::HighlightColor, group)); // Plasma::Theme doesn't have AlternateBackground setAlternateBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); - - // Plasma::Theme doesn't have any different background color type - setActiveBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); + setActiveBackgroundColor(m_theme.color(Plasma::Theme::ActiveBackgroundColor, group)); + // Plasma::Theme doesn't have link backgrounds. setLinkBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); setVisitedLinkBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); - setNegativeBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); - setNeutralBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); - setPositiveBackgroundColor(m_theme.color(Plasma::Theme::BackgroundColor, group)); + setNegativeBackgroundColor(m_theme.color(Plasma::Theme::NegativeBackgroundColor, group)); + setNeutralBackgroundColor(m_theme.color(Plasma::Theme::NeutralBackgroundColor, group)); + setPositiveBackgroundColor(m_theme.color(Plasma::Theme::PositiveBackgroundColor, group)); // decoration setHoverColor(m_theme.color(Plasma::Theme::HoverColor, group)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libplasma-6.4.1/src/plasma/private/theme_p.cpp new/libplasma-6.4.2/src/plasma/private/theme_p.cpp --- old/libplasma-6.4.1/src/plasma/private/theme_p.cpp 2025-06-24 11:33:31.000000000 +0200 +++ new/libplasma-6.4.2/src/plasma/private/theme_p.cpp 2025-07-01 13:40:38.000000000 +0200 @@ -337,6 +337,17 @@ return scheme->foreground(KColorScheme::NegativeText).color(); case Theme::DisabledTextColor: return scheme->foreground(KColorScheme::InactiveText).color(); + case Theme::ActiveTextColor: + return scheme->foreground(KColorScheme::ActiveText).color(); + + case Theme::ActiveBackgroundColor: + return scheme->background(KColorScheme::ActiveBackground).color(); + case Theme::PositiveBackgroundColor: + return scheme->background(KColorScheme::PositiveBackground).color(); + case Theme::NeutralBackgroundColor: + return scheme->background(KColorScheme::NeutralBackground).color(); + case Theme::NegativeBackgroundColor: + return scheme->background(KColorScheme::NegativeBackground).color(); } return QColor(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libplasma-6.4.1/src/plasma/theme.h new/libplasma-6.4.2/src/plasma/theme.h --- old/libplasma-6.4.1/src/plasma/theme.h 2025-06-24 11:33:31.000000000 +0200 +++ new/libplasma-6.4.2/src/plasma/theme.h 2025-07-01 13:40:38.000000000 +0200 @@ -104,6 +104,11 @@ NeutralTextColor = 9, NegativeTextColor = 10, DisabledTextColor = 11, + ActiveTextColor, + ActiveBackgroundColor, + PositiveBackgroundColor, + NeutralBackgroundColor, + NegativeBackgroundColor, }; /*!