Hello community,
here is the log from the commit of package kaccounts-integration for
openSUSE:Leap:15.2 checked in at 2020-03-15 07:10:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/kaccounts-integration (Old)
and /work/SRC/openSUSE:Leap:15.2/.kaccounts-integration.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kaccounts-integration"
Sun Mar 15 07:10:02 2020 rev:57 rq:784934 version:19.12.3
Changes:
--------
---
/work/SRC/openSUSE:Leap:15.2/kaccounts-integration/kaccounts-integration.changes
2020-02-13 14:39:02.281597478 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.kaccounts-integration.new.3160/kaccounts-integration.changes
2020-03-15 07:10:22.696928059 +0100
@@ -1,0 +2,11 @@
+Thu Mar 5 20:35:47 UTC 2020 - Luca Beltrame <[email protected]>
+
+- Update to 19.12.3
+ * New bugfix release
+ * For more details please see:
+ * https://www.kde.org/announcements/releases/19.12.3
+- Changes since 19.12.2:
+ * Unbreak the Accounts KCM (kde#415267)
+ * [CreateAccount job] Never set an empty name when creating an account
(kde#414219)
+
+-------------------------------------------------------------------
Old:
----
kaccounts-integration-19.12.2.tar.xz
kaccounts-integration-19.12.2.tar.xz.sig
New:
----
kaccounts-integration-19.12.3.tar.xz
kaccounts-integration-19.12.3.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kaccounts-integration.spec ++++++
--- /var/tmp/diff_new_pack.PNcbdm/_old 2020-03-15 07:10:23.040928264 +0100
+++ /var/tmp/diff_new_pack.PNcbdm/_new 2020-03-15 07:10:23.044928266 +0100
@@ -21,7 +21,7 @@
%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print
$1"."$2}')}
%bcond_without lang
Name: kaccounts-integration
-Version: 19.12.2
+Version: 19.12.3
Release: 0
Summary: KDE Accounts Providers
License: GPL-2.0-or-later
++++++ kaccounts-integration-19.12.2.tar.xz ->
kaccounts-integration-19.12.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kaccounts-integration-19.12.2/CMakeLists.txt
new/kaccounts-integration-19.12.3/CMakeLists.txt
--- old/kaccounts-integration-19.12.2/CMakeLists.txt 2020-02-04
02:46:37.000000000 +0100
+++ new/kaccounts-integration-19.12.3/CMakeLists.txt 2020-03-03
01:31:02.000000000 +0100
@@ -14,7 +14,7 @@
set(KDE_APPLICATIONS_VERSION_MAJOR "19")
set(KDE_APPLICATIONS_VERSION_MINOR "12")
-set(KDE_APPLICATIONS_VERSION_MICRO "2")
+set(KDE_APPLICATIONS_VERSION_MICRO "3")
set(KACCOUNTS_VERSION
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
set(KACCOUNTS_SOVERSION "1")
set(ACCOUNTSQT_DEP_VERSION "1.13")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-19.12.2/src/jobs/createaccount.cpp
new/kaccounts-integration-19.12.3/src/jobs/createaccount.cpp
--- old/kaccounts-integration-19.12.2/src/jobs/createaccount.cpp
2020-02-02 15:08:03.000000000 +0100
+++ new/kaccounts-integration-19.12.3/src/jobs/createaccount.cpp
2020-03-02 21:58:31.000000000 +0100
@@ -181,7 +181,12 @@
m_account->selectService();
if (m_account->displayName().isEmpty()) {
- m_account->setDisplayName(info.userName());
+ if(info.userName().isEmpty()) {
+ // info.userName() can be empty, see bug#414219
+
m_account->setDisplayName(QString("%1%2").arg(info.caption()).arg(info.id()));
+ } else {
+ m_account->setDisplayName(info.userName());
+ }
}
m_account->setValue("username", info.userName());
m_account->setCredentialsId(info.id());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-19.12.2/src/kcm/package/contents/ui/Accounts.qml
new/kaccounts-integration-19.12.3/src/kcm/package/contents/ui/Accounts.qml
--- old/kaccounts-integration-19.12.2/src/kcm/package/contents/ui/Accounts.qml
2020-02-02 15:08:03.000000000 +0100
+++ new/kaccounts-integration-19.12.3/src/kcm/package/contents/ui/Accounts.qml
2020-03-02 21:58:31.000000000 +0100
@@ -34,7 +34,7 @@
id: kaccountsRoot
// Existing accounts
- ListView {
+ view: ListView {
model: OA.AccountServiceModel {
id: accountsModel
service: "global"
@@ -45,7 +45,7 @@
width: ListView.view.width
contentItem: Controls.Label {
- text: i18n("%1 (%2)", model.displayName, providerName)
+ text: i18n("%1 (%2)", model.displayName, model.providerName)
OA.Account {
id: account
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-19.12.2/src/kcm/package/contents/ui/AvailableAccounts.qml
new/kaccounts-integration-19.12.3/src/kcm/package/contents/ui/AvailableAccounts.qml
---
old/kaccounts-integration-19.12.2/src/kcm/package/contents/ui/AvailableAccounts.qml
2020-02-02 15:08:03.000000000 +0100
+++
new/kaccounts-integration-19.12.3/src/kcm/package/contents/ui/AvailableAccounts.qml
2020-03-02 21:58:31.000000000 +0100
@@ -29,9 +29,7 @@
id: root
title: i18n("Add new Account")
- ListView {
- anchors.fill: parent
-
+ view: ListView {
model: OA.ProviderModel {}
delegate: Kirigami.BasicListItem {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-19.12.2/src/kcm/package/contents/ui/AvailableServices.qml
new/kaccounts-integration-19.12.3/src/kcm/package/contents/ui/AvailableServices.qml
---
old/kaccounts-integration-19.12.2/src/kcm/package/contents/ui/AvailableServices.qml
2020-02-02 15:08:03.000000000 +0100
+++
new/kaccounts-integration-19.12.3/src/kcm/package/contents/ui/AvailableServices.qml
2020-03-02 21:58:31.000000000 +0100
@@ -31,8 +31,7 @@
property alias accountId: servicesModel.accountId
- ListView {
- anchors.fill: parent
+ view: ListView {
model: OA.AccountServiceModel {
id: servicesModel
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kaccounts-integration-19.12.2/src/kcm/package/metadata.desktop
new/kaccounts-integration-19.12.3/src/kcm/package/metadata.desktop
--- old/kaccounts-integration-19.12.2/src/kcm/package/metadata.desktop
2020-02-02 15:08:03.000000000 +0100
+++ new/kaccounts-integration-19.12.3/src/kcm/package/metadata.desktop
2020-03-02 21:58:31.000000000 +0100
@@ -40,6 +40,7 @@
Name[zh_TW]=帳號
Comment=Add Your Online Accounts
Comment[ca]=Afegiu els vostres comptes en línia
+Comment[ca@valencia]=Afegiu els vostres comptes en línia
Comment[cs]=Přidejte svoje účty online
Comment[de]=Fügen Sie Ihre Online-Zugänge hinzu
Comment[en_GB]=Add Your Online Accounts