Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kconfigwidgets for openSUSE:Factory checked in at 2022-03-14 19:34:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kconfigwidgets (Old) and /work/SRC/openSUSE:Factory/.kconfigwidgets.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kconfigwidgets" Mon Mar 14 19:34:15 2022 rev:102 rq:961230 version:5.92.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kconfigwidgets/kconfigwidgets.changes 2022-02-24 18:21:29.102689853 +0100 +++ /work/SRC/openSUSE:Factory/.kconfigwidgets.new.25692/kconfigwidgets.changes 2022-03-14 19:35:31.650015678 +0100 @@ -1,0 +2,19 @@ +Mon Mar 7 09:26:46 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 5.92.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.92.0 +- Changes since 5.91.0: + * Add Qt6 Android CI + * Remove broken Python bindings generation + * KHamburgerMenu: Avoid null receiver warning upon showing menubar + * Port away from deprecated KAuth includes + * Add @since 5.92 in KColorScheme::operator== API docs + * Add a KColorScheme::operator== + * Make the BUILD_DESIGNERPLUGIN option dependent on not cross-compiling + * Add explicit CMake option HAVE_KAUTH + * KHambugerMenu: Fix crash on windows when showing the window menubar + from the KHamburgerMenu (kde#449806) + +------------------------------------------------------------------- Old: ---- kconfigwidgets-5.91.0.tar.xz kconfigwidgets-5.91.0.tar.xz.sig New: ---- kconfigwidgets-5.92.0.tar.xz kconfigwidgets-5.92.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kconfigwidgets.spec ++++++ --- /var/tmp/diff_new_pack.uYtc5z/_old 2022-03-14 19:35:32.202016340 +0100 +++ /var/tmp/diff_new_pack.uYtc5z/_new 2022-03-14 19:35:32.206016345 +0100 @@ -17,14 +17,14 @@ %define lname libKF5ConfigWidgets5 -%define _tar_path 5.91 +%define _tar_path 5.92 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kconfigwidgets -Version: 5.91.0 +Version: 5.92.0 Release: 0 Summary: Widgets for configuration dialogs License: LGPL-2.1-or-later ++++++ kconfigwidgets-5.91.0.tar.xz -> kconfigwidgets-5.92.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/.gitlab-ci.yml new/kconfigwidgets-5.92.0/.gitlab-ci.yml --- old/kconfigwidgets-5.91.0/.gitlab-ci.yml 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/.gitlab-ci.yml 2022-03-05 13:57:20.000000000 +0100 @@ -6,3 +6,4 @@ - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android.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 + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/CMakeLists.txt new/kconfigwidgets-5.92.0/CMakeLists.txt --- old/kconfigwidgets-5.91.0/CMakeLists.txt 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/CMakeLists.txt 2022-03-05 13:57:20.000000000 +0100 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.91.0") # handled by release scripts -set(KF_DEP_VERSION "5.91.0") # handled by release scripts +set(KF_VERSION "5.92.0") # handled by release scripts +set(KF_DEP_VERSION "5.92.0") # handled by release scripts project(KConfigWidgets VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.91.0 NO_MODULE) +find_package(ECM 5.92.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -22,6 +22,7 @@ include(ECMAddQch) include(ECMQtDeclareLoggingCategory) include(ECMDeprecationSettings) +include(CMakeDependentOption) set(REQUIRED_QT_VERSION 5.15.2) find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets) @@ -40,15 +41,21 @@ option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") -option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON) +cmake_dependent_option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON "NOT CMAKE_CROSSCOMPILING" OFF) add_feature_info(DESIGNERPLUGIN ${BUILD_DESIGNERPLUGIN} "Build plugin for Qt Designer") +if (NOT ANDROID AND NOT WIN32) + option(WITH_KAUTH "Build with KAuth support" ON) +else() + set(WITH_KAUTH OFF) +endif() + ecm_setup_version(PROJECT VARIABLE_PREFIX KCONFIGWIDGETS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kconfigwidgets_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5ConfigWidgetsConfigVersion.cmake" SOVERSION 5) -if (NOT ANDROID AND NOT WIN32) +if (WITH_KAUTH) find_package(KF5Auth ${KF_DEP_VERSION} REQUIRED) endif() find_package(KF5CoreAddons ${KF_DEP_VERSION} REQUIRED) @@ -109,7 +116,7 @@ include(CMakePackageConfigHelpers) set(HAVE_KAUTH FALSE) -if (TARGET KF5::Auth) +if (WITH_KAUTH) set(HAVE_KAUTH TRUE) endif() configure_package_config_file( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/autotests/pythontest.py new/kconfigwidgets-5.92.0/autotests/pythontest.py --- old/kconfigwidgets-5.91.0/autotests/pythontest.py 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/autotests/pythontest.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,26 +0,0 @@ -#!/usr/bin/env python -#-*- coding: utf-8 -*- - -import sys - -sys.path.append(sys.argv[1]) - -from PyQt5 import QtCore -from PyQt5 import QtWidgets - -from PyKF5 import KConfigWidgets - -def main(): - app = QtWidgets.QApplication(sys.argv) - - rfa = KConfigWidgets.KRecentFilesAction(None) - - rfa.addUrl(QtCore.QUrl("http://kde.org")) - rfa.addUrl(QtCore.QUrl("http://gnu.org")) - - assert(len(rfa.urls()) == 2) - assert(QtCore.QUrl("http://kde.org") in rfa.urls()) - assert(QtCore.QUrl("http://gnu.org") in rfa.urls()) - -if __name__ == '__main__': - sys.exit(main()) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/cmake/rules_PyKF5.py new/kconfigwidgets-5.92.0/cmake/rules_PyKF5.py --- old/kconfigwidgets-5.91.0/cmake/rules_PyKF5.py 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/cmake/rules_PyKF5.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,19 +0,0 @@ -# SPDX-FileCopyrightText: 2016 Stephen Kelly <[email protected]> -# -# SPDX-License-Identifier: BSD-3-Clause - -import os, sys - -import rules_engine -sys.path.append(os.path.dirname(os.path.dirname(rules_engine.__file__))) -import Qt5Ruleset - -def local_container_rules(): - return [ - [".*", "KStandardAction", ".*", ".*", ".*", rules_engine.container_discard], - ] - -class RuleSet(Qt5Ruleset.RuleSet): - def __init__(self): - Qt5Ruleset.RuleSet.__init__(self) - self._container_db = rules_engine.ContainerRuleDb(lambda: local_container_rules() + Qt5Ruleset.container_rules()) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/af/kf5_entry.desktop new/kconfigwidgets-5.92.0/po/af/kf5_entry.desktop --- old/kconfigwidgets-5.91.0/po/af/kf5_entry.desktop 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/af/kf5_entry.desktop 2022-03-05 13:57:20.000000000 +0100 @@ -4,7 +4,7 @@ Name[ar]=???????????????????????? Name[as]=?????????????????????????????? Name[ast]=Afrikaans -Name[az]=Afrikaan dilind?? +Name[az]=Afrikaan dili Name[be]=?????????????????? Name[be@latin]=Afrykaans Name[bg]=?????????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/ca@valencia/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/ca@valencia/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/ca@valencia/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/ca@valencia/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -4,7 +4,7 @@ # version 3 or later versions approved by the membership of KDE e.V. # # Sebasti?? Pla i Sanz <[email protected]>, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007. -# Antoni Bella P??rez <[email protected]>, 2003, 2006, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020, 2021. +# Antoni Bella P??rez <[email protected]>, 2003, 2006, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020, 2021, 2022. # Albert Astals Cid <[email protected]>, 2004, 2005, 2007. # Josep M. Ferrer <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020, 2021. # Robert Millan <[email protected]>, 2009. @@ -14,14 +14,14 @@ "Project-Id-Version: kconfigwidgets\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2021-11-13 09:15+0100\n" +"PO-Revision-Date: 2022-02-15 22:20+0100\n" "Last-Translator: Antoni Bella P??rez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.08.1\n" +"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -237,7 +237,7 @@ #: kstandardaction_p.h:40 msgid "&Quit" -msgstr "&Surt" +msgstr "I&x" #: kstandardaction_p.h:40 msgid "Quit application" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/en_GB/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/en_GB/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/en_GB/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/en_GB/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -8,7 +8,7 @@ "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2022-01-01 14:58+0000\n" +"PO-Revision-Date: 2022-02-19 12:04+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" "Language: en_GB\n" @@ -16,7 +16,7 @@ "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.0\n" +"X-Generator: Lokalize 21.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -78,25 +78,19 @@ msgstr "&Menu" #: khamburgermenu.cpp:334 -#, fuzzy, kde-format -#| msgid "Show all options" +#, kde-format msgctxt "@action:inmenu A menu item that advertises and enables the menubar" msgid "Show &Menubar with All Actions" -msgstr "Show all options" +msgstr "Show &Menubar with All Actions" #: khamburgermenu.cpp:362 -#, fuzzy, kde-format -#| msgctxt "" -#| "@option:check An item in a list of resources that allows to query for " -#| "more resources to put in the list" -#| msgid "More..." +#, kde-format msgctxt "@action:inmenu A menu text advertising its contents (more features)." msgid "More" -msgstr "More..." +msgstr "More" #: khamburgermenu.cpp:363 -#, fuzzy, kde-format -#| msgid "More Actions" +#, kde-format msgctxt "" "@action:inmenu A section heading advertising the contents of the menu bar" msgid "More Actions" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/eu/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/eu/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/eu/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/eu/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -1,6 +1,6 @@ # Translation for kconfigwidgets5.po to Euskara/Basque (eu) # Copyright (C) 1999-2017, Free Software Foundation, Inc. -# Copyright (C) 2018-2021, this file is copyright: +# Copyright (C) 2018-2022, this file is copyright: # This file is distributed under the same license as the kconfigwidgets package. # KDE euskaratzeko proiektuko arduraduna <[email protected]>. # @@ -8,31 +8,31 @@ # Marcos <[email protected]>, 2002,2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010. # Ion Gazta??aga <[email protected]>, 2005. # I??aki Larra??aga Murgoitio <[email protected]>, 2009. -# I??igo Salvador Azurmendi <[email protected]>, 2010, 2011, 2012, 2013, 2014, 2017, 2019, 2020, 2021. +# I??igo Salvador Azurmendi <[email protected]>, 2010, 2011, 2012, 2013, 2014, 2017, 2019, 2020, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: kconfigwidgets\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2021-12-29 08:17+0100\n" +"PO-Revision-Date: 2022-02-26 23:09+0100\n" "Last-Translator: I??igo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.12.0\n" +"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "I??igo Salvador Azurmendi,Marcos,Ion Gazta??aga" +msgstr "I??igo Salvador Azurmendi" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "[email protected],[email protected],[email protected]" +msgstr "[email protected]" #: kcmodule.cpp:189 #, kde-format @@ -84,25 +84,19 @@ msgstr "&Menua" #: khamburgermenu.cpp:334 -#, fuzzy, kde-format -#| msgid "Show all options" +#, kde-format msgctxt "@action:inmenu A menu item that advertises and enables the menubar" msgid "Show &Menubar with All Actions" -msgstr "Erakutsi aukera guztiak" +msgstr "Erakutsi &menu-barra ekintza guztiekin" #: khamburgermenu.cpp:362 -#, fuzzy, kde-format -#| msgctxt "" -#| "@option:check An item in a list of resources that allows to query for " -#| "more resources to put in the list" -#| msgid "More..." +#, kde-format msgctxt "@action:inmenu A menu text advertising its contents (more features)." msgid "More" -msgstr "Gehiago..." +msgstr "Gehiago" #: khamburgermenu.cpp:363 -#, fuzzy, kde-format -#| msgid "More Actions" +#, kde-format msgctxt "" "@action:inmenu A section heading advertising the contents of the menu bar" msgid "More Actions" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/ko/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/ko/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/ko/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/ko/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -1,14 +1,14 @@ # Korean messages for kdelibs. # Copyright (C) Free Software Foundation, Inc. # Cho Sung Jae <[email protected]>, 2007. -# Shinjo Park <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2020, 2021. +# Shinjo Park <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2020, 2021, 2022. # msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2021-11-14 19:17+0100\n" +"PO-Revision-Date: 2022-02-20 21:56+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" "Language: ko\n" @@ -78,24 +78,23 @@ msgstr "??????(&M)" #: khamburgermenu.cpp:334 -#, fuzzy, kde-format -#| msgid "Show &Menubar" +#, kde-format msgctxt "@action:inmenu A menu item that advertises and enables the menubar" msgid "Show &Menubar with All Actions" -msgstr "?????? ????????? ??????(&M)" +msgstr "?????? ????????? ?????? ????????? ??????(&M)" #: khamburgermenu.cpp:362 #, kde-format msgctxt "@action:inmenu A menu text advertising its contents (more features)." msgid "More" -msgstr "" +msgstr "??? ??????" #: khamburgermenu.cpp:363 #, kde-format msgctxt "" "@action:inmenu A section heading advertising the contents of the menu bar" msgid "More Actions" -msgstr "" +msgstr "??? ?????? ??????" #: krecentfilesaction.cpp:68 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/my/kf5_entry.desktop new/kconfigwidgets-5.92.0/po/my/kf5_entry.desktop --- old/kconfigwidgets-5.91.0/po/my/kf5_entry.desktop 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/my/kf5_entry.desktop 2022-03-05 13:57:20.000000000 +0100 @@ -23,6 +23,7 @@ Name[pt]=Birman??s Name[pt_BR]=Birman??s Name[ro]=Burmez?? +Name[ru]=???????????????????? Name[sk]=Barm??ina Name[sl]=Burman????ina Name[sv]=Burmesiska diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/ro/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/ro/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/ro/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/ro/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -7,7 +7,7 @@ "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2022-02-04 11:40+0000\n" +"PO-Revision-Date: 2022-02-06 20:55+0000\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian\n" "Language: ro\n" @@ -268,7 +268,7 @@ #: kstandardaction_p.h:46 kstandardaction_p.h:48 msgid "&Paste" -msgstr "&Lipe??te" +msgstr "Li&pe??te" #: kstandardaction_p.h:46 kstandardaction_p.h:48 msgid "Paste clipboard content" @@ -276,15 +276,15 @@ #: kstandardaction_p.h:50 msgid "C&lear" -msgstr "??&terge" +msgstr "C&ur??????" #: kstandardaction_p.h:51 msgid "Select &All" -msgstr "Selecteaz?? t&ot" +msgstr "Selecte&az?? tot" #: kstandardaction_p.h:52 msgid "Dese&lect" -msgstr "&Deselecteaz??" +msgstr "Dese&lecteaz??" #: kstandardaction_p.h:53 msgid "&Find..." @@ -292,7 +292,7 @@ #: kstandardaction_p.h:54 msgid "Find &Next" -msgstr "Caut?? ??n &continuare" +msgstr "Caut?? &urm??tor" #: kstandardaction_p.h:55 msgid "Find Pre&vious" @@ -304,7 +304,7 @@ #: kstandardaction_p.h:58 msgid "&Actual Size" -msgstr "M??rime &actual??" +msgstr "Dimensiune re&al??" #: kstandardaction_p.h:58 msgid "View document at its actual size" @@ -324,7 +324,7 @@ #: kstandardaction_p.h:60 msgid "Zoom to fit page width in window" -msgstr "Panorameaz?? pentru a ??ncadra l????imea paginii ??n fereastr??" +msgstr "Apropie pentru a ??ncadra l????imea paginii ??n fereastr??" #: kstandardaction_p.h:61 msgid "Fit to Page &Height" @@ -340,15 +340,15 @@ #: kstandardaction_p.h:63 msgid "Zoom &Out" -msgstr "Mi&c??oreaz??" +msgstr "Mic??&oreaz??" #: kstandardaction_p.h:64 msgid "&Zoom..." -msgstr "&Scaleaz??..." +msgstr "&Apropiere???" #: kstandardaction_p.h:64 msgid "Select zoom level" -msgstr "Alege nivelul de panoramare" +msgstr "Alege nivelul de apropiere" #: kstandardaction_p.h:65 msgid "&Refresh" @@ -376,7 +376,7 @@ #: kstandardaction_p.h:73 msgid "&Next Page" -msgstr "Pagina &urm??toare" +msgstr "Pagi&na urm??toare" #: kstandardaction_p.h:73 msgid "Go to next page" @@ -384,15 +384,15 @@ #: kstandardaction_p.h:74 msgid "&Go To..." -msgstr "&Mergi la..." +msgstr "&Mergi la???" #: kstandardaction_p.h:75 msgid "&Go to Page..." -msgstr "&Mergi la pagina..." +msgstr "&Mergi la pagina???" #: kstandardaction_p.h:76 msgid "&Go to Line..." -msgstr "&Mergi la linia..." +msgstr "&Mergi la linia???" #: kstandardaction_p.h:77 msgid "&First Page" @@ -432,11 +432,11 @@ #: kstandardaction_p.h:83 msgid "&Edit Bookmarks..." -msgstr "&Editeaz?? semne de carte..." +msgstr "R&edacteaz?? semne de carte???" #: kstandardaction_p.h:85 msgid "&Spelling..." -msgstr "&Ortografie..." +msgstr "&Ortografie???" #: kstandardaction_p.h:85 msgid "Check spelling in document" @@ -460,7 +460,7 @@ #: kstandardaction_p.h:89 msgid "Show St&atusbar" -msgstr "Ar&at?? bara de stare" +msgstr "&Arat?? bara de stare" #: kstandardaction_p.h:89 msgid "Show or hide statusbar" @@ -468,7 +468,7 @@ #: kstandardaction_p.h:90 msgid "F&ull Screen Mode" -msgstr "Regim &ecran complet" +msgstr "Regim de &ecran complet" #: kstandardaction_p.h:92 msgid "&Save Settings" @@ -476,20 +476,20 @@ #: kstandardaction_p.h:94 msgid "Configure Keyboard S&hortcuts..." -msgstr "Co&nfigureaz?? scurt??turile de tastatur??..." +msgstr "Co&nfigureaz?? scurt??turi de tastatur?????" #: kstandardaction_p.h:95 #, kde-format msgid "&Configure %1..." -msgstr "&Configureaz?? %1..." +msgstr "&Configureaz?? %1???" #: kstandardaction_p.h:96 msgid "Configure Tool&bars..." -msgstr "Configureaz?? barele de &unelte..." +msgstr "Configureaz?? &barele de unelte???" #: kstandardaction_p.h:97 msgid "Configure &Notifications..." -msgstr "Configureaz?? ¬ific??rile..." +msgstr "Configureaz?? ¬ific??rile???" #: kstandardaction_p.h:104 #, kde-format @@ -498,7 +498,7 @@ #: kstandardaction_p.h:105 msgid "What's &This?" -msgstr "Ce ??nseamn?? &aceasta?" +msgstr "Ce ??nseamn?? aceas&ta?" #: kstandardaction_p.h:106 msgid "Tip of the &Day" @@ -506,11 +506,11 @@ #: kstandardaction_p.h:107 msgid "&Report Bug..." -msgstr "&Raporteaz?? erori..." +msgstr "&Raporteaz?? defect???" #: kstandardaction_p.h:108 msgid "Configure &Language..." -msgstr "Configurare &limb??..." +msgstr "Configureaz?? &limba???" #: kstandardaction_p.h:109 #, kde-format @@ -527,7 +527,7 @@ #: kstandardaction_p.h:112 msgid "&Rename..." -msgstr "&Redenume??te..." +msgstr "&Redenume??te???" #: kstandardaction_p.h:113 msgid "&Move to Trash" @@ -551,13 +551,13 @@ #, kde-format msgctxt "@title" msgid "Did you know...?\n" -msgstr "??tia??i c??...?\n" +msgstr "??tia??i c??????\n" #: ktipdialog.cpp:288 #, kde-format msgctxt "@option:check" msgid "&Show tips on startup" -msgstr "Arat?? &sfatul zilei la pornire" +msgstr "Arat?? &sfaturi la pornire" #: ktipdialog.cpp:293 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/ru/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/ru/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/ru/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/ru/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -15,19 +15,20 @@ # Julia Dronova <[email protected]>, 2012. # Alexander Lakhin <[email protected]>, 2013. # Alexander Yavorsky <[email protected]>, 2019, 2020, 2021. +# Olesya Gerasimenko <[email protected]>, 2022. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2021-04-17 15:44+0300\n" -"Last-Translator: Alexander Yavorsky <[email protected]>\n" -"Language-Team: Russian <[email protected]>\n" +"PO-Revision-Date: 2022-02-15 16:08+0300\n" +"Last-Translator: Olesya Gerasimenko <[email protected]>\n" +"Language-Team: Basealt Translation Team\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.12.3\n" +"X-Generator: Lokalize 21.12.1\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Environment: kde\n" @@ -39,14 +40,14 @@ msgid "Your names" msgstr "" "???????????????? ??????????,?????????????? ????????????????????,???????????? ??????????????????,???????????? ????????????,?????????????? " -"????????????" +"????????????,?????????? ??????????????????????" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" "[email protected],[email protected],[email protected],[email protected]," -"[email protected]" +"[email protected],[email protected]" #: kcmodule.cpp:189 #, kde-format @@ -83,7 +84,7 @@ #: kcommandbar.cpp:584 #, kde-format msgid "No commands matching the filter" -msgstr "" +msgstr "?????? ????????????, ?????????????????????????????? ??????????????" #: kconfigdialog.cpp:37 #, kde-format @@ -98,25 +99,19 @@ msgstr "&????????" #: khamburgermenu.cpp:334 -#, fuzzy, kde-format -#| msgid "Show all options" +#, kde-format msgctxt "@action:inmenu A menu item that advertises and enables the menubar" msgid "Show &Menubar with All Actions" -msgstr "???????????????? ???????????? ???????? ????????????????????" +msgstr "???????????????? &???????? ???? ?????????? ????????????????????" #: khamburgermenu.cpp:362 -#, fuzzy, kde-format -#| msgctxt "" -#| "@option:check An item in a list of resources that allows to query for " -#| "more resources to put in the list" -#| msgid "More..." +#, kde-format msgctxt "@action:inmenu A menu text advertising its contents (more features)." msgid "More" -msgstr "??????????????????????????..." +msgstr "?????????????????????????????" #: khamburgermenu.cpp:363 -#, fuzzy, kde-format -#| msgid "More Actions" +#, kde-format msgctxt "" "@action:inmenu A section heading advertising the contents of the menu bar" msgid "More Actions" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/sk/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/sk/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/sk/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/sk/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -8,20 +8,20 @@ # Richard Fri?? <[email protected]>, 2011. # Roman Pahol??k <[email protected]>, 2012, 2013, 2015, 2016, 2021. # Mthw <[email protected]>, 2019. -# Matej Mrenica <[email protected]>, 2019, 2020, 2021. +# Matej Mrenica <[email protected]>, 2019, 2020, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2021-11-16 12:35+0100\n" +"PO-Revision-Date: 2022-02-14 11:55+0100\n" "Last-Translator: Matej Mrenica <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 21.11.80\n" +"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #, kde-format @@ -87,25 +87,19 @@ msgstr "Ponuka" #: khamburgermenu.cpp:334 -#, fuzzy, kde-format -#| msgid "Show all options" +#, kde-format msgctxt "@action:inmenu A menu item that advertises and enables the menubar" msgid "Show &Menubar with All Actions" -msgstr "Zobraz?? v??etky mo??nosti" +msgstr "Zobraz?? ponuku so v??etk??mi akciami" #: khamburgermenu.cpp:362 -#, fuzzy, kde-format -#| msgctxt "" -#| "@option:check An item in a list of resources that allows to query for " -#| "more resources to put in the list" -#| msgid "More..." +#, kde-format msgctxt "@action:inmenu A menu text advertising its contents (more features)." msgid "More" -msgstr "Viac..." +msgstr "Viac" #: khamburgermenu.cpp:363 -#, fuzzy, kde-format -#| msgid "More Actions" +#, kde-format msgctxt "" "@action:inmenu A section heading advertising the contents of the menu bar" msgid "More Actions" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/po/zh_CN/kconfigwidgets5.po new/kconfigwidgets-5.92.0/po/zh_CN/kconfigwidgets5.po --- old/kconfigwidgets-5.91.0/po/zh_CN/kconfigwidgets5.po 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/po/zh_CN/kconfigwidgets5.po 2022-03-05 13:57:20.000000000 +0100 @@ -16,7 +16,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-25 00:40+0000\n" -"PO-Revision-Date: 2022-01-08 15:22\n" +"PO-Revision-Date: 2022-02-26 05:16\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -92,24 +92,23 @@ msgstr "??????(&M)" #: khamburgermenu.cpp:334 -#, fuzzy, kde-format -#| msgid "Show &Menubar" +#, kde-format msgctxt "@action:inmenu A menu item that advertises and enables the menubar" msgid "Show &Menubar with All Actions" -msgstr "???????????????(&M)" +msgstr "????????????????????????????????????(&M)" #: khamburgermenu.cpp:362 #, kde-format msgctxt "@action:inmenu A menu text advertising its contents (more features)." msgid "More" -msgstr "" +msgstr "??????" #: khamburgermenu.cpp:363 #, kde-format msgctxt "" "@action:inmenu A section heading advertising the contents of the menu bar" msgid "More Actions" -msgstr "" +msgstr "????????????" #: krecentfilesaction.cpp:68 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/src/CMakeLists.txt new/kconfigwidgets-5.92.0/src/CMakeLists.txt --- old/kconfigwidgets-5.91.0/src/CMakeLists.txt 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/src/CMakeLists.txt 2022-03-05 13:57:20.000000000 +0100 @@ -68,8 +68,12 @@ target_link_libraries(KF5ConfigWidgets PRIVATE advapi32) endif() -if (TARGET KF5::Auth) - target_link_libraries(KF5ConfigWidgets PUBLIC KF5::Auth) # KCModule uses KAuth::Action TODO KF6 Change to KF5::AuthCore +if (WITH_KAUTH) + if (QT_MAJOR_VERSION STREQUAL "6") + target_link_libraries(KF5ConfigWidgets PUBLIC KF5::AuthCore) + else() + target_link_libraries(KF5ConfigWidgets PUBLIC KF5::Auth) + endif() else() target_compile_definitions(KF5ConfigWidgets PUBLIC -DKCONFIGWIDGETS_NO_KAUTH) endif() @@ -110,41 +114,6 @@ REQUIRED_HEADERS KConfigWidgets_HEADERS ) -find_package(PythonModuleGeneration) - -if (PythonModuleGeneration_FOUND) - ecm_generate_python_binding( - TARGET KF5::ConfigWidgets - PYTHONNAMESPACE PyKF5 - MODULENAME KConfigWidgets - SIP_INCLUDES - RULES_FILE "${CMAKE_SOURCE_DIR}/cmake/rules_PyKF5.py" - SIP_DEPENDS - QtCore/QtCoremod.sip - PyKF5/KCodecs/KCodecsmod.sip - PyKF5/KWidgetsAddons/KWidgetsAddonsmod.sip - PyKF5/KConfigGui/KConfigGuimod.sip - PyKF5/KAuth/KAuthmod.sip - HEADERS - kcodecaction.h - kcolorscheme.h - kcolorschememanager.h - kconfigdialog.h - kconfigviewstatesaver.h - kconfigdialogmanager.h - kcmodule.h - khamburgermenu.h - kcommandbar.h - khelpclient.h - klanguagebutton.h - kpastetextaction.h - krecentfilesaction.h - kviewstatemaintainer.h - kstandardaction.h - ktipdialog.h - ) -endif() - install(TARGETS KF5ConfigWidgets EXPORT KF5ConfigWidgetsTargets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/src/kcmodule.cpp new/kconfigwidgets-5.92.0/src/kcmodule.cpp --- old/kconfigwidgets-5.91.0/src/kcmodule.cpp 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/src/kcmodule.cpp 2022-03-05 13:57:20.000000000 +0100 @@ -16,7 +16,7 @@ #include <KLocalizedString> #include <kconfigdialogmanager.h> #ifndef KCONFIGWIDGETS_NO_KAUTH -#include <KAuthExecuteJob> +#include <KAuth/ExecuteJob> #endif class KCModulePrivate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/src/kcmodule.h new/kconfigwidgets-5.92.0/src/kcmodule.h --- old/kconfigwidgets-5.91.0/src/kcmodule.h 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/src/kcmodule.h 2022-03-05 13:57:20.000000000 +0100 @@ -11,7 +11,7 @@ #include <kconfigwidgets_export.h> #ifndef KCONFIGWIDGETS_NO_KAUTH -#include <KAuthAction> +#include <KAuth/Action> #endif #include <QVariant> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/src/kcolorscheme.cpp new/kconfigwidgets-5.92.0/src/kcolorscheme.cpp --- old/kconfigwidgets-5.91.0/src/kcolorscheme.cpp 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/src/kcolorscheme.cpp 2022-03-05 13:57:20.000000000 +0100 @@ -18,6 +18,8 @@ #include <QWidget> #endif +#include <array> + // BEGIN StateEffects class StateEffects { @@ -289,11 +291,15 @@ QBrush foreground(KColorScheme::ForegroundRole) const; QBrush decoration(KColorScheme::DecorationRole) const; qreal contrast() const; -private: - struct { - QBrush fg[KColorScheme::NForegroundRoles]; - QBrush bg[KColorScheme::NBackgroundRoles]; - QBrush deco[KColorScheme::NDecorationRoles]; + + struct Brushes { + std::array<QBrush, KColorScheme::NForegroundRoles> fg; + std::array<QBrush, KColorScheme::NForegroundRoles> bg; + std::array<QBrush, KColorScheme::NForegroundRoles> deco; + + bool operator==(const Brushes &b) const { + return this == &b || (fg == b.fg && bg == b.bg && deco == b.deco); + } } _brushes; qreal _contrast; @@ -554,6 +560,14 @@ } } +bool KColorScheme::operator==(const KColorScheme &other) const +{ + return d == other.d + || (d->_contrast == other.d->_contrast + && d->_brushes == other.d->_brushes) + ; +} + // static int KColorScheme::contrast() { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/src/kcolorscheme.h new/kconfigwidgets-5.92.0/src/kcolorscheme.h --- old/kconfigwidgets-5.91.0/src/kcolorscheme.h 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/src/kcolorscheme.h 2022-03-05 13:57:20.000000000 +0100 @@ -477,6 +477,11 @@ */ static bool isColorSetSupported(const KSharedConfigPtr &config, KColorScheme::ColorSet set); + /** + * @since 5.92 + */ + bool operator==(const KColorScheme &other) const; + private: QExplicitlySharedDataPointer<KColorSchemePrivate> d; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-5.91.0/src/khamburgermenu.cpp new/kconfigwidgets-5.92.0/src/khamburgermenu.cpp --- old/kconfigwidgets-5.91.0/src/khamburgermenu.cpp 2022-02-05 22:20:05.000000000 +0100 +++ new/kconfigwidgets-5.92.0/src/khamburgermenu.cpp 2022-03-05 13:57:20.000000000 +0100 @@ -395,8 +395,8 @@ q->setVisible(!menuBarVisible); if (!m_menuAction) { - if (menuBarVisible) { - m_actualMenu.reset(); // might as well free up some memory + if (menuBarVisible && m_actualMenu) { + m_actualMenu.release()->deleteLater(); // might as well free up some memory } return; }
