Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libkdecoration2 for openSUSE:Factory checked in at 2022-06-13 13:02:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkdecoration2 (Old) and /work/SRC/openSUSE:Factory/.libkdecoration2.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkdecoration2" Mon Jun 13 13:02:20 2022 rev:127 rq:981915 version:5.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libkdecoration2/libkdecoration2.changes 2022-05-05 23:05:12.953469109 +0200 +++ /work/SRC/openSUSE:Factory/.libkdecoration2.new.1548/libkdecoration2.changes 2022-06-13 13:02:35.541122196 +0200 @@ -1,0 +2,22 @@ +Thu Jun 9 11:15:01 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.25.0 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.25.0 +- No code changes since 5.24.90 + +------------------------------------------------------------------- +Thu May 19 19:45:55 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.24.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.24.90 +- Changes since 5.24.5: + * Add RtL support (kde#432390) + * Hide tooltip when pressing button + * decoration:add blurregion property + * Add KF6 build support and CI + +------------------------------------------------------------------- Old: ---- kdecoration-5.24.5.tar.xz kdecoration-5.24.5.tar.xz.sig New: ---- kdecoration-5.25.0.tar.xz kdecoration-5.25.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkdecoration2.spec ++++++ --- /var/tmp/diff_new_pack.jDAKhu/_old 2022-06-13 13:02:36.081122950 +0200 +++ /var/tmp/diff_new_pack.jDAKhu/_new 2022-06-13 13:02:36.085122957 +0200 @@ -22,15 +22,15 @@ %define lname_private libkdecorations2private%{private_sover} %bcond_without released Name: libkdecoration2 -Version: 5.24.5 +Version: 5.25.0 Release: 0 Summary: KDE's window decorations library License: GPL-2.0-or-later Group: System/GUI/KDE URL: http://www.kde.org -Source: https://download.kde.org/stable/plasma/%{version}/kdecoration-%{version}.tar.xz +Source: kdecoration-%{version}.tar.xz %if %{with released} -Source1: https://download.kde.org/stable/plasma/%{version}/kdecoration-%{version}.tar.xz.sig +Source1: kdecoration-%{version}.tar.xz.sig Source2: plasma.keyring %endif BuildRequires: cmake >= 3.16 ++++++ kdecoration-5.24.5.tar.xz -> kdecoration-5.25.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/.gitlab-ci.yml new/kdecoration-5.25.0/.gitlab-ci.yml --- old/kdecoration-5.24.5/.gitlab-ci.yml 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/.gitlab-ci.yml 2022-06-09 11:06:30.000000000 +0200 @@ -4,3 +4,4 @@ include: - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/CMakeLists.txt new/kdecoration-5.25.0/CMakeLists.txt --- old/kdecoration-5.24.5/CMakeLists.txt 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/CMakeLists.txt 2022-06-09 11:06:30.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) project(decoration-api) -set(PROJECT_VERSION "5.24.5") +set(PROJECT_VERSION "5.25.0") set(QT_MIN_VERSION "5.15.0") -set(KF5_MIN_VERSION "5.86") +set(KF5_MIN_VERSION "5.90") set(KDE_COMPILERSETTINGS_LEVEL "5.82") find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) @@ -29,7 +29,7 @@ SOVERSION 5) #dependencies -find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS +find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Gui Test @@ -78,7 +78,7 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kdecoration2_version.h - DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel ) + DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF} COMPONENT Devel ) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/KDecoration2Config.cmake.in new/kdecoration-5.25.0/KDecoration2Config.cmake.in --- old/kdecoration-5.24.5/KDecoration2Config.cmake.in 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/KDecoration2Config.cmake.in 2022-06-09 11:06:30.000000000 +0200 @@ -1,7 +1,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(Qt5Gui @QT_MIN_VERSION@) +find_dependency(Qt@QT_MAJOR_VERSION@Gui @QT_MIN_VERSION@) include("${CMAKE_CURRENT_LIST_DIR}/KDecoration2Targets.cmake") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/po/ca@valencia/kdecoration.po new/kdecoration-5.25.0/po/ca@valencia/kdecoration.po --- old/kdecoration-5.24.5/po/ca@valencia/kdecoration.po 2022-05-03 12:05:02.000000000 +0200 +++ new/kdecoration-5.25.0/po/ca@valencia/kdecoration.po 2022-06-09 11:06:36.000000000 +0200 @@ -44,7 +44,7 @@ #: decorationbutton.cpp:308 #, kde-format msgid "Minimize" -msgstr "Minimitza" +msgstr "Minimisa" #: decorationbutton.cpp:311 #, kde-format @@ -54,7 +54,7 @@ #: decorationbutton.cpp:313 #, kde-format msgid "Maximize" -msgstr "Maximitza" +msgstr "Maximisa" #: decorationbutton.cpp:315 #, kde-format @@ -79,19 +79,19 @@ #: decorationbutton.cpp:325 #, kde-format msgid "Don't keep below other windows" -msgstr "No mantinguis per davall de les atres finestres" +msgstr "No mantinges per davall de les atres finestres" #: decorationbutton.cpp:327 #, kde-format msgid "Keep below other windows" -msgstr "Mant??n per davall de les atres finestres" +msgstr "Mantin per davall de les atres finestres" #: decorationbutton.cpp:330 #, kde-format msgid "Don't keep above other windows" -msgstr "No mantinguis al damunt de les atres finestres" +msgstr "No mantinges al damunt de les atres finestres" #: decorationbutton.cpp:332 #, kde-format msgid "Keep above other windows" -msgstr "Mant??n al damunt de les atres finestres" \ No newline at end of file +msgstr "Mantin al damunt de les atres finestres" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/po/tr/kdecoration.po new/kdecoration-5.25.0/po/tr/kdecoration.po --- old/kdecoration-5.24.5/po/tr/kdecoration.po 1970-01-01 01:00:00.000000000 +0100 +++ new/kdecoration-5.25.0/po/tr/kdecoration.po 2022-06-09 11:06:44.000000000 +0200 @@ -0,0 +1,93 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the kdecoration package. +# +# Emir SARI <emir_s...@icloud.com>, 2022. +msgid "" +msgstr "" +"Project-Id-Version: kdecoration\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2021-05-05 00:20+0000\n" +"PO-Revision-Date: 2022-03-20 11:56+0300\n" +"Last-Translator: Emir SARI <emir_s...@icloud.com>\n" +"Language-Team: Turkish <kde-l10n...@kde.org>\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Lokalize 21.12.3\n" + +#: decorationbutton.cpp:299 +#, kde-format +msgid "More actions for this window" +msgstr "Bu pencere i??in daha fazla eylem" + +#: decorationbutton.cpp:301 +#, kde-format +msgid "Application menu" +msgstr "Uygulama men??s??" + +#: decorationbutton.cpp:304 +#, kde-format +msgid "On one desktop" +msgstr "Bir masa??st??nde" + +#: decorationbutton.cpp:306 +#, kde-format +msgid "On all desktops" +msgstr "T??m masa??stlerinde" + +#: decorationbutton.cpp:308 +#, kde-format +msgid "Minimize" +msgstr "Simge Durumuna K??????lt" + +#: decorationbutton.cpp:311 +#, kde-format +msgid "Restore" +msgstr "Geri Y??kle" + +#: decorationbutton.cpp:313 +#, kde-format +msgid "Maximize" +msgstr "Ekran?? Kapla" + +#: decorationbutton.cpp:315 +#, kde-format +msgid "Close" +msgstr "Kapat" + +#: decorationbutton.cpp:317 +#, kde-format +msgid "Context help" +msgstr "Ba??lam yard??m??" + +#: decorationbutton.cpp:320 +#, kde-format +msgid "Unshade" +msgstr "Panjuru A??" + +#: decorationbutton.cpp:322 +#, kde-format +msgid "Shade" +msgstr "Panjuru Kapat" + +#: decorationbutton.cpp:325 +#, kde-format +msgid "Don't keep below other windows" +msgstr "Di??er pencerelerin alt??nda tutma" + +#: decorationbutton.cpp:327 +#, kde-format +msgid "Keep below other windows" +msgstr "Di??er pencerelerin alt??nda tut" + +#: decorationbutton.cpp:330 +#, kde-format +msgid "Don't keep above other windows" +msgstr "Di??er pencerelerin ??st??nde tutma" + +#: decorationbutton.cpp:332 +#, kde-format +msgid "Keep above other windows" +msgstr "Di??er pencerelerin ??st??nde tut" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/po/zh_CN/kdecoration.po new/kdecoration-5.25.0/po/zh_CN/kdecoration.po --- old/kdecoration-5.24.5/po/zh_CN/kdecoration.po 2022-05-03 12:05:18.000000000 +0200 +++ new/kdecoration-5.25.0/po/zh_CN/kdecoration.po 2022-06-09 11:06:45.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-05-05 00:20+0000\n" -"PO-Revision-Date: 2022-04-26 15:33\n" +"PO-Revision-Date: 2022-06-05 04:19\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/src/CMakeLists.txt new/kdecoration-5.25.0/src/CMakeLists.txt --- old/kdecoration-5.24.5/src/CMakeLists.txt 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/src/CMakeLists.txt 2022-06-09 11:06:30.000000000 +0200 @@ -69,7 +69,7 @@ DESTINATION ${KDECORATION2_INCLUDEDIR}/KDecoration2 COMPONENT Devel) -install(TARGETS kdecorations2 EXPORT KDecoration2Targets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS kdecorations2 EXPORT KDecoration2Targets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) install( FILES diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/src/decoration.cpp new/kdecoration-5.25.0/src/decoration.cpp --- old/kdecoration-5.24.5/src/decoration.cpp 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/src/decoration.cpp 2022-06-09 11:06:30.000000000 +0200 @@ -219,6 +219,7 @@ Q_EMIT variableName##Changed(emitValue); \ } +DELEGATE(setBlurRegion, blurRegion, const QRegion &, ) DELEGATE(setBorders, borders, const QMargins &, ) DELEGATE(setResizeOnlyBorders, resizeOnlyBorders, const QMargins &, ) DELEGATE(setTitleBar, titleBar, const QRect &, ) @@ -233,6 +234,7 @@ return d->name; \ } +DELEGATE(blurRegion, QRegion) DELEGATE(borders, QMargins) DELEGATE(resizeOnlyBorders, QMargins) DELEGATE(titleBar, QRect) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/src/decoration.h new/kdecoration-5.25.0/src/decoration.h --- old/kdecoration-5.24.5/src/decoration.h 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/src/decoration.h 2022-06-09 11:06:30.000000000 +0200 @@ -128,6 +128,11 @@ QSize size() const; /** + * The decoration's blur region in local coordinates + */ + QRegion blurRegion() const; + + /** * Invoked by the framework to set the Settings for this Decoration before * init is invoked. * @internal @@ -193,6 +198,7 @@ virtual void init(); Q_SIGNALS: + void blurRegionChanged(); void bordersChanged(); void resizeOnlyBordersChanged(); void sectionUnderMouseChanged(Qt::WindowFrameSection); @@ -215,6 +221,7 @@ explicit Decoration(QObject *parent, const QVariantList &args); void setBorders(const QMargins &borders); void setResizeOnlyBorders(const QMargins &borders); + void setBlurRegion(const QRegion ®ion); /** * An implementation has to invoke this method whenever the area * containing the controls and caption changes. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/src/decoration_p.h new/kdecoration-5.25.0/src/decoration_p.h --- old/kdecoration-5.24.5/src/decoration_p.h 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/src/decoration_p.h 2022-06-09 11:06:30.000000000 +0200 @@ -40,6 +40,7 @@ void updateSectionUnderMouse(const QPoint &mousePosition); QRect titleBar; + QRegion blurRegion; void addButton(DecorationButton *button); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdecoration-5.24.5/src/private/CMakeLists.txt new/kdecoration-5.25.0/src/private/CMakeLists.txt --- old/kdecoration-5.24.5/src/private/CMakeLists.txt 2022-05-03 12:04:59.000000000 +0200 +++ new/kdecoration-5.25.0/src/private/CMakeLists.txt 2022-06-09 11:06:30.000000000 +0200 @@ -45,7 +45,7 @@ DESTINATION ${KDECORATION2_INCLUDEDIR}/KDecoration2/Private COMPONENT Devel) -install(TARGETS kdecorations2private EXPORT KDecoration2Targets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS kdecorations2private EXPORT KDecoration2Targets ${KF_INSTALL_TARGETS_DEFAULT_ARGS}) install( FILES