Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kirigami2 for openSUSE:Factory checked in at 2023-11-13 22:17:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kirigami2 (Old) and /work/SRC/openSUSE:Factory/.kirigami2.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kirigami2" Mon Nov 13 22:17:07 2023 rev:84 rq:1125332 version:5.112.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kirigami2/kirigami2.changes 2023-10-19 22:48:09.808268779 +0200 +++ /work/SRC/openSUSE:Factory/.kirigami2.new.17445/kirigami2.changes 2023-11-13 22:19:30.876506602 +0100 @@ -1,0 +2,11 @@ +Mon Nov 6 09:13:58 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 5.112.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.112.0 +- Changes since 5.111.0: + * Avatar: Add tests for cyrillic initials + * Add support for cyrillic initials + +------------------------------------------------------------------- Old: ---- kirigami2-5.111.0.tar.xz kirigami2-5.111.0.tar.xz.sig New: ---- kirigami2-5.112.0.tar.xz kirigami2-5.112.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kirigami2.spec ++++++ --- /var/tmp/diff_new_pack.HJ5Ukv/_old 2023-11-13 22:19:31.592532965 +0100 +++ /var/tmp/diff_new_pack.HJ5Ukv/_new 2023-11-13 22:19:31.596533113 +0100 @@ -24,7 +24,7 @@ %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kirigami2 -Version: 5.111.0 +Version: 5.112.0 Release: 0 Summary: Set of QtQuick components License: LGPL-2.1-or-later ++++++ kirigami2-5.111.0.tar.xz -> kirigami2-5.112.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/CMakeLists.txt new/kirigami2-5.112.0/CMakeLists.txt --- old/kirigami2-5.111.0/CMakeLists.txt 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/CMakeLists.txt 2023-11-04 11:03:21.000000000 +0100 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.111.0") # handled by release scripts -set(KF_DEP_VERSION "5.111.0") # handled by release scripts +set(KF_VERSION "5.112.0") # handled by release scripts +set(KF_DEP_VERSION "5.112.0") # handled by release scripts project(kirigami2 VERSION ${KF_VERSION}) @@ -21,7 +21,7 @@ if(DEFINED STATIC_LIBRARY) message(FATAL_ERROR "Use the BUILD_SHARED_LIBS=OFF option to build a static library, STATIC_LIBRARY is no longer a supported option") endif() -find_package(ECM 5.111.0 NO_MODULE) +find_package(ECM 5.112.0 NO_MODULE) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH}) if (NOT ${BUILD_SHARED_LIBS}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/autotests/tst_avatar.qml new/kirigami2-5.112.0/autotests/tst_avatar.qml --- old/kirigami2-5.111.0/autotests/tst_avatar.qml 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/autotests/tst_avatar.qml 2023-11-04 11:03:21.000000000 +0100 @@ -37,6 +37,19 @@ compare(Kirigami.NameUtils.isStringUnsuitableForInitials("è£ç¶å"), false) compare(Kirigami.NameUtils.initialsFromString("è£ç¶å"), "è£") } + function test_cyrillic_name() { + compare(Kirigami.NameUtils.isStringUnsuitableForInitials("ÐÐµÐ¹Ñ ÐаÑÑин"), false) + compare(Kirigami.NameUtils.initialsFromString("ÐÐµÐ¹Ñ ÐаÑÑин"), "ÐÐ") + + compare(Kirigami.NameUtils.isStringUnsuitableForInitials("Ðаланока"), false) + compare(Kirigami.NameUtils.initialsFromString("Ðаланока"), "Ð") + + compare(Kirigami.NameUtils.isStringUnsuitableForInitials("ÐаÑем комÑ-Ñо иÑполÑзоваÑÑ Ñакое длинное не Ð¸Ð¼Ñ Ð² поле ÐмÑ"), false) + compare(Kirigami.NameUtils.initialsFromString("ÐаÑем комÑ-Ñо иÑполÑзоваÑÑ Ñакое длинное не Ð¸Ð¼Ñ Ð² поле ÐмÑ"), "ÐÐ") + + compare(Kirigami.NameUtils.isStringUnsuitableForInitials("ÐолÑзоваÑÐµÐ»Ñ Ðайв-СÐÐÐ"), false) + compare(Kirigami.NameUtils.initialsFromString("Ðайв-СÐÐÐ ÐолÑзоваÑелÑ"), "ÐÐ") + } function test_bad_names() { compare(Kirigami.NameUtils.isStringUnsuitableForInitials("151231023"), true) } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/poqm/ca@valencia/libkirigami2plugin_qt.po new/kirigami2-5.112.0/poqm/ca@valencia/libkirigami2plugin_qt.po --- old/kirigami2-5.111.0/poqm/ca@valencia/libkirigami2plugin_qt.po 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/poqm/ca@valencia/libkirigami2plugin_qt.po 2023-11-04 11:03:21.000000000 +0100 @@ -212,7 +212,7 @@ #, qt-format msgctxt "PageTab|" msgid "Navigate to %1. Progress: %2 percent." -msgstr "Navega a %1. Progrés: %2 per cent." +msgstr "Navega cap a %1. Progrés: %2 per cent." #. Accessibility text for a page tab. Keep the text as concise as possible. #: controls/swipenavigator/templates/PageTab.qml:46 @@ -225,14 +225,14 @@ #, qt-format msgctxt "PageTab|" msgid "Navigate to %1. Demanding attention." -msgstr "Navega a %1. Exigix atenció." +msgstr "Navega cap a %1. Exigix atenció." #. Accessibility text for a page tab that's requesting the user's attention. Keep the text as concise as possible. #: controls/swipenavigator/templates/PageTab.qml:52 #, qt-format msgctxt "PageTab|" msgid "Navigate to %1." -msgstr "Navega a %1." +msgstr "Navega cap a %1." #: controls/templates/OverlayDrawer.qml:141 msgctxt "OverlayDrawer|" @@ -262,7 +262,7 @@ #: controls/UrlButton.qml:54 msgctxt "UrlButton|" msgid "Copy Link to Clipboard" -msgstr "Copia l'enllaç al porta-retalls" +msgstr "Copia l'enllaç a dins del porta-retalls" #: settings.cpp:220 #, qt-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/poqm/es/libkirigami2plugin_qt.po new/kirigami2-5.112.0/poqm/es/libkirigami2plugin_qt.po --- old/kirigami2-5.111.0/poqm/es/libkirigami2plugin_qt.po 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/poqm/es/libkirigami2plugin_qt.po 2023-11-04 11:03:21.000000000 +0100 @@ -1,8 +1,8 @@ -# Eloy Cuadra <ecua...@eloihr.net>, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023. +# SPDX-FileCopyrightText: 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Eloy Cuadra <ecua...@eloihr.net> msgid "" msgstr "" "Project-Id-Version: libkirigamiplugin_qt\n" -"PO-Revision-Date: 2023-06-24 01:08+0200\n" +"PO-Revision-Date: 2023-10-17 21:40+0200\n" "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n" "Language-Team: Spanish <kde-l10n...@kde.org>\n" "Language: es\n" @@ -11,7 +11,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.04.2\n" +"X-Generator: Lokalize 23.08.2\n" #: controls/AboutItem.qml:133 #, qt-format @@ -39,7 +39,7 @@ #: controls/AboutItem.qml:207 msgctxt "AboutItem|" msgid "Donate" -msgstr "Donar" +msgstr "Hacer un donativo" #: controls/AboutItem.qml:224 msgctxt "AboutItem|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/poqm/fr/libkirigami2plugin_qt.po new/kirigami2-5.112.0/poqm/fr/libkirigami2plugin_qt.po --- old/kirigami2-5.111.0/poqm/fr/libkirigami2plugin_qt.po 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/poqm/fr/libkirigami2plugin_qt.po 2023-11-04 11:03:21.000000000 +0100 @@ -12,7 +12,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 23.08.0\n" +"X-Generator: Lokalize 23.08.2\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: qtrich\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/poqm/gl/libkirigami2plugin_qt.po new/kirigami2-5.112.0/poqm/gl/libkirigami2plugin_qt.po --- old/kirigami2-5.111.0/poqm/gl/libkirigami2plugin_qt.po 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/poqm/gl/libkirigami2plugin_qt.po 2023-11-04 11:03:21.000000000 +0100 @@ -1,5 +1,5 @@ +# SPDX-FileCopyrightText: 2023 Adrián Chaves (Gallaecio) # Adrián Chaves Fernández (Gallaecio) <adriyeticha...@gmail.com>, 2017. -# Adrián Chaves (Gallaecio) <adr...@chaves.io>, 2018, 2019, 2023. msgid "" msgstr "" "Project-Id-Version: \n" @@ -11,7 +11,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 23.04.2\n" +"X-Generator: Lokalize 23.08.2\n" "X-Qt-Contexts: true\n" #: controls/AboutItem.qml:133 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/poqm/ru/libkirigami2plugin_qt.po new/kirigami2-5.112.0/poqm/ru/libkirigami2plugin_qt.po --- old/kirigami2-5.111.0/poqm/ru/libkirigami2plugin_qt.po 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/poqm/ru/libkirigami2plugin_qt.po 2023-11-04 11:03:21.000000000 +0100 @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2023-05-04 11:41+0300\n" +"PO-Revision-Date: 2023-10-27 11:38+0300\n" "Last-Translator: Olesya Gerasimenko <translation-t...@basealt.ru>\n" "Language-Team: Basealt Translation Team\n" "Language: ru\n" @@ -14,7 +14,7 @@ "X-Qt-Contexts: true\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 23.04.3\n" #: controls/AboutItem.qml:133 #, qt-format @@ -148,20 +148,14 @@ msgstr "ÐаÑолÑ" #: controls/PasswordField.qml:44 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" msgctxt "PasswordField|" msgid "Hide Password" -msgstr "ÐаÑолÑ" +msgstr "СкÑÑÑÑ Ð¿Ð°ÑолÑ" #: controls/PasswordField.qml:44 -#, fuzzy -#| msgctxt "PasswordField|" -#| msgid "Password" msgctxt "PasswordField|" msgid "Show Password" -msgstr "ÐаÑолÑ" +msgstr "ÐоказаÑÑ Ð¿Ð°ÑолÑ" #: controls/private/globaltoolbar/PageRowGlobalToolBarUI.qml:70 msgctxt "PageRowGlobalToolBarUI|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/poqm/zh_CN/libkirigami2plugin_qt.po new/kirigami2-5.112.0/poqm/zh_CN/libkirigami2plugin_qt.po --- old/kirigami2-5.111.0/poqm/zh_CN/libkirigami2plugin_qt.po 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/poqm/zh_CN/libkirigami2plugin_qt.po 2023-11-04 11:03:21.000000000 +0100 @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2023-09-16 10:08\n" +"PO-Revision-Date: 2023-10-21 13:54\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami2-5.111.0/src/avatar.cpp new/kirigami2-5.112.0/src/avatar.cpp --- old/kirigami2-5.111.0/src/avatar.cpp 2023-10-07 12:21:03.000000000 +0200 +++ new/kirigami2-5.112.0/src/avatar.cpp 2023-11-04 11:03:21.000000000 +0100 @@ -144,7 +144,7 @@ return true; } - const auto scripts = QList<QChar::Script>{QChar::Script_Common, QChar::Script_Inherited, QChar::Script_Latin, QChar::Script_Han, QChar::Script_Hangul}; + const auto scripts = QList<QChar::Script>{QChar::Script_Common, QChar::Script_Inherited, QChar::Script_Latin, QChar::Script_Han, QChar::Script_Hangul, QChar::Script_Cyrillic}; for (auto character : string) { if (!scripts.contains(character.script())) {