Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plasma5-phone-components for openSUSE:Factory checked in at 2021-03-15 10:54:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma5-phone-components (Old) and /work/SRC/openSUSE:Factory/.plasma5-phone-components.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-phone-components" Mon Mar 15 10:54:13 2021 rev:5 rq:876495 version:5.21.2 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma5-phone-components/plasma5-phone-components.changes 2021-03-02 12:44:26.508302877 +0100 +++ /work/SRC/openSUSE:Factory/.plasma5-phone-components.new.2401/plasma5-phone-components.changes 2021-03-15 10:54:14.585157235 +0100 @@ -1,0 +2,13 @@ +Tue Mar 2 15:01:38 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.21.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.21.2 +- Changes since 5.21.1: + * Fix the SignalStrength indicator on lockscreen + * Use Header colors for top panel + * shell: keep panelsfix.js in sync with layout.js + * fix horizontal scrolling of applets + +------------------------------------------------------------------- Old: ---- plasma-phone-components-5.21.1.tar.xz plasma-phone-components-5.21.1.tar.xz.sig New: ---- plasma-phone-components-5.21.2.tar.xz plasma-phone-components-5.21.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma5-phone-components.spec ++++++ --- /var/tmp/diff_new_pack.FXbkCM/_old 2021-03-15 10:54:16.165159661 +0100 +++ /var/tmp/diff_new_pack.FXbkCM/_new 2021-03-15 10:54:16.169159667 +0100 @@ -23,7 +23,7 @@ %bcond_without lang Name: plasma5-phone-components -Version: 5.21.1 +Version: 5.21.2 Release: 0 # Full Plasma 5 version (e.g. 5.9.3) %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}} ++++++ plasma-phone-components-5.21.1.tar.xz -> plasma-phone-components-5.21.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/containments/panel/package/contents/ui/FullContainer.qml new/plasma-phone-components-5.21.2/containments/panel/package/contents/ui/FullContainer.qml --- old/plasma-phone-components-5.21.1/containments/panel/package/contents/ui/FullContainer.qml 2021-02-23 14:06:25.000000000 +0100 +++ new/plasma-phone-components-5.21.2/containments/panel/package/contents/ui/FullContainer.qml 2021-03-02 14:10:14.000000000 +0100 @@ -34,6 +34,7 @@ Layout.minimumHeight: applet && applet.switchHeight onShouldBeVisibleChanged: fullContainer.visible = fullContainer.shouldBeVisible + Component.onCompleted: visibleChanged(); onVisibleChanged: { if (visible) { for (var i = 0; i < fullRepresentationModel.count; ++i) { @@ -45,7 +46,7 @@ fullRepresentationView.forceLayout(); fullRepresentationView.currentIndex = ObjectModel.index; - fullRepresentationView.positionViewAtIndex(ObjectModel.index, ListView.SnapPosition) + fullRepresentationView.positionViewAtIndex(ObjectModel.index, ListView.Contain) } else if (ObjectModel.index >= 0) { fullRepresentationModel.remove(ObjectModel.index); fullRepresentationView.forceLayout(); @@ -56,11 +57,17 @@ } Connections { target: fullContainer.applet - onActivated: { + function onActivated() { if (!visible) { return; } fullRepresentationView.currentIndex = ObjectModel.index; } } + Connections { + target: fullContainer.applet.fullRepresentationItem + function onParentChanged() { + fullContainer.applet.fullRepresentationItem.parent = fullContainer; + } + } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/containments/panel/package/contents/ui/main.qml new/plasma-phone-components-5.21.2/containments/panel/package/contents/ui/main.qml --- old/plasma-phone-components-5.21.1/containments/panel/package/contents/ui/main.qml 2021-02-23 14:06:25.000000000 +0100 +++ new/plasma-phone-components-5.21.2/containments/panel/package/contents/ui/main.qml 2021-03-02 14:10:14.000000000 +0100 @@ -167,7 +167,7 @@ PlasmaCore.ColorScope { id: icons z: 1 - colorGroup: showingApp ? PlasmaCore.Theme.NormalColorGroup : PlasmaCore.Theme.ComplementaryColorGroup + colorGroup: showingApp ? PlasmaCore.Theme.HeaderColorGroup : PlasmaCore.Theme.ComplementaryColorGroup //parent: slidingPanel.visible && !slidingPanel.wideScreen ? panelContents : root anchors { left: parent.left @@ -266,7 +266,7 @@ anchors.fill: parent onPressed: { slidingPanel.cancelAnimations(); - slidingPanel.drawerX = Math.min(Math.max(0, mouse.x - slidingPanel.drawerWidth/2), slidingPanel.width - slidingPanel.drawerWidth) + slidingPanel.drawerX = Math.min(Math.max(0, mouse.x - slidingPanel.drawerWidth/2), slidingPanel.width - slidingPanel.contentItem.width) slidingPanel.userInteracting = true; oldMouseY = mouse.y; slidingPanel.offset = 0//units.gridUnit * 2; @@ -295,7 +295,7 @@ onClosed: quickSettings.closed() contentItem: Item { - implicitWidth: quickSettingsParent.implicitWidth + implicitWidth: panelContents.implicitWidth implicitHeight: Math.min(slidingPanel.height, quickSettingsParent.implicitHeight) GridLayout { id: panelContents @@ -325,7 +325,7 @@ z: 1 interactive: width < contentWidth //parent: slidingPanel.wideScreen ? slidingPanel.flickable.contentItem : panelContents - Layout.preferredWidth: slidingPanel.wideScreen ? Math.min(slidingPanel.width/2, quickSettingsParent.width*fullRepresentationModel.count) : panelContents.width + Layout.preferredWidth: slidingPanel.wideScreen ? Math.min(slidingPanel.width - quickSettingsParent.width, quickSettingsParent.width*fullRepresentationModel.count) : panelContents.width //Layout.fillWidth: true clip: slidingPanel.wideScreen y: slidingPanel.wideScreen ? 0 : quickSettingsParent.height - height * (1-opacity) @@ -333,7 +333,7 @@ height: Math.min(plasmoid.screenGeometry.height - slidingPanel.headerHeight - quickSettingsParent.height - bottomBar.height, implicitHeight) //leftMargin: slidingPanel.drawerX preferredHighlightBegin: slidingPanel.drawerX - + implicitHeight: units.gridUnit * 20 cacheBuffer: width * 100 highlightFollowsCurrentItem: true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/containments/taskpanel/package/contents/ui/main.qml new/plasma-phone-components-5.21.2/containments/taskpanel/package/contents/ui/main.qml --- old/plasma-phone-components-5.21.1/containments/taskpanel/package/contents/ui/main.qml 2021-02-23 14:06:25.000000000 +0100 +++ new/plasma-phone-components-5.21.2/containments/taskpanel/package/contents/ui/main.qml 2021-03-02 14:10:14.000000000 +0100 @@ -35,7 +35,7 @@ id: root width: 600 height: 480 - colorGroup: showingApp ? PlasmaCore.Theme.NormalColorGroup : PlasmaCore.Theme.ComplementaryColorGroup + colorGroup: showingApp ? PlasmaCore.Theme.HeaderColorGroup : PlasmaCore.Theme.ComplementaryColorGroup Plasmoid.backgroundHints: PlasmaCore.Types.NoBackground diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/look-and-feel/contents/lockscreen/indicators/SignalStrength.qml new/plasma-phone-components-5.21.2/look-and-feel/contents/lockscreen/indicators/SignalStrength.qml --- old/plasma-phone-components-5.21.1/look-and-feel/contents/lockscreen/indicators/SignalStrength.qml 2021-02-23 14:06:25.000000000 +0100 +++ new/plasma-phone-components-5.21.2/look-and-feel/contents/lockscreen/indicators/SignalStrength.qml 2021-03-02 14:10:14.000000000 +0100 @@ -21,7 +21,6 @@ import MeeGo.QOfono 0.2 -import org.kde.plasma.plasmoid 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/po/de/plasma_applet_org.kde.phone.panel.po new/plasma-phone-components-5.21.2/po/de/plasma_applet_org.kde.phone.panel.po --- old/plasma-phone-components-5.21.1/po/de/plasma_applet_org.kde.phone.panel.po 2021-02-23 14:06:30.000000000 +0100 +++ new/plasma-phone-components-5.21.2/po/de/plasma_applet_org.kde.phone.panel.po 2021-03-02 14:10:19.000000000 +0100 @@ -1,22 +1,22 @@ # Copyright (C) YEAR This file is copyright: # This file is distributed under the same license as the plasma-phone-components package. # -# Burkhard L??ck <lu...@hube-lueck.de>, 2020. +# Burkhard L??ck <lu...@hube-lueck.de>, 2020, 2021. # Frederik Schwarzer <schwar...@kde.org>, 2020. msgid "" msgstr "" "Project-Id-Version: plasma-phone-components\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-02-02 09:47+0100\n" -"PO-Revision-Date: 2020-08-22 09:27+0200\n" -"Last-Translator: Frederik Schwarzer <schwar...@kde.org>\n" +"PO-Revision-Date: 2021-03-02 11:39+0100\n" +"Last-Translator: Burkhard L??ck <lu...@hube-lueck.de>\n" "Language-Team: German <kde-i18n...@kde.org>\n" "Language: de\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 20.08.0\n" +"X-Generator: Lokalize 19.12.3\n" #: package/contents/ui/indicators/Battery.qml:50 #, kde-format @@ -26,12 +26,12 @@ #: package/contents/ui/indicators/SignalStrength.qml:71 #, kde-format msgid "Sim locked" -msgstr "" +msgstr "SIM-Karte gesperrt" #: package/contents/ui/indicators/Volume.qml:153 #, kde-format msgid "Audio" -msgstr "" +msgstr "Audio" #: package/contents/ui/indicators/Volume.qml:157 #, kde-format @@ -61,7 +61,7 @@ #: package/contents/ui/quicksettings/QuickSettings.qml:183 #, kde-format msgid "Bluetooth" -msgstr "" +msgstr "Bluetooth" #: package/contents/ui/quicksettings/QuickSettings.qml:192 #, kde-format @@ -101,7 +101,7 @@ #: package/contents/ui/quicksettings/QuickSettings.qml:247 #, kde-format msgid "Night Color" -msgstr "" +msgstr "Nachtfarben" #: package/contents/ui/quicksettings/QuickSettings.qml:298 #, kde-format @@ -109,12 +109,12 @@ msgstr "Bildschirmhelligkeit" #: phonepanel.cpp:187 -#, fuzzy, kde-format +#, kde-format #| msgid "Screenshot" msgid "New Screenshot" -msgstr "Bildschirmfoto" +msgstr "Neues Bildschirmfoto" #: phonepanel.cpp:189 #, kde-format msgid "New screenshot saved to %1" -msgstr "" \ No newline at end of file +msgstr "Neues Bildschirmfoto in %1 gespeichert" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/po/id/plasma_applet_org.kde.phone.panel.po new/plasma-phone-components-5.21.2/po/id/plasma_applet_org.kde.phone.panel.po --- old/plasma-phone-components-5.21.1/po/id/plasma_applet_org.kde.phone.panel.po 2021-02-23 14:06:37.000000000 +0100 +++ new/plasma-phone-components-5.21.2/po/id/plasma_applet_org.kde.phone.panel.po 2021-03-02 14:10:24.000000000 +0100 @@ -1,6 +1,6 @@ # Copyright (C) YEAR This file is copyright: # This file is distributed under the same license as the plasma-phone-components package. -# Wantoyo <wanto...@gmail.com>, 2019, 2020. +# Wantoyo <wanto...@gmail.com>, 2019, 2020, 2021. # msgid "" msgstr "" @@ -15,7 +15,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 19.12.1\n" +"X-Generator: Lokalize 20.12.1\n" #: package/contents/ui/indicators/Battery.qml:50 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/po/it/plasma_applet_org.kde.phone.homescreen.po new/plasma-phone-components-5.21.2/po/it/plasma_applet_org.kde.phone.homescreen.po --- old/plasma-phone-components-5.21.1/po/it/plasma_applet_org.kde.phone.homescreen.po 2021-02-23 14:06:37.000000000 +0100 +++ new/plasma-phone-components-5.21.2/po/it/plasma_applet_org.kde.phone.homescreen.po 2021-03-02 14:10:25.000000000 +0100 @@ -1,6 +1,6 @@ # Copyright (C) YEAR This file is copyright: # This file is distributed under the same license as the plasma-phone-components package. -# Paolo Zamponi <zapa...@email.it>, 2019. +# Paolo Zamponi <zapa...@email.it>, 2019, 2021. # msgid "" msgstr "" @@ -15,7 +15,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 19.04.1\n" +"X-Generator: Lokalize 20.12.2\n" #: package/contents/ui/ConfigOverlay.qml:102 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/shell/contents/layout.js new/plasma-phone-components-5.21.2/shell/contents/layout.js --- old/plasma-phone-components-5.21.1/shell/contents/layout.js 2021-02-23 14:06:25.000000000 +0100 +++ new/plasma-phone-components-5.21.2/shell/contents/layout.js 2021-03-02 14:10:14.000000000 +0100 @@ -1,9 +1,9 @@ - var desktopsArray = desktopsForActivity(currentActivity()); for (var j = 0; j < desktopsArray.length; j++) { desktopsArray[j].wallpaperPlugin = "org.kde.image"; } desktopsArray[0].addWidget("org.kde.phone.krunner", 0, 0, screenGeometry(0).width, 20) +// keep this list in sync with shell/contents/updates/panelsfix.js var panel = new Panel("org.kde.phone.panel"); panel.addWidget("org.kde.plasma.notifications"); panel.addWidget("org.kde.plasma.mediacontroller"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-phone-components-5.21.1/shell/contents/updates/panelsfix.js new/plasma-phone-components-5.21.2/shell/contents/updates/panelsfix.js --- old/plasma-phone-components-5.21.1/shell/contents/updates/panelsfix.js 2021-02-23 14:06:25.000000000 +0100 +++ new/plasma-phone-components-5.21.2/shell/contents/updates/panelsfix.js 2021-03-02 14:10:14.000000000 +0100 @@ -11,10 +11,14 @@ } if (!topFound) { + // keep widget list synced with the layout.js let topPanel = new Panel("org.kde.phone.panel") - topPanel.location = "Top"; + topPanel.addWidget("org.kde.plasma.notifications"); + topPanel.addWidget("org.kde.plasma.mediacontroller"); + topPanel.location = "top"; } if (!bottomFound) { - let topPanel = new Panel("org.kde.phone.taskpanel") - topPanel.location = "Bottom"; + let bottomPanel = new Panel("org.kde.phone.taskpanel") + bottomPanel.location = "bottom"; + bottomPanel.height = 2 * gridUnit; }