Hello community,

here is the log from the commit of package kscreen5 for openSUSE:Factory 
checked in at 2017-11-10 14:47:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kscreen5 (Old)
 and      /work/SRC/openSUSE:Factory/.kscreen5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kscreen5"

Fri Nov 10 14:47:43 2017 rev:49 rq:539705 version:5.11.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kscreen5/kscreen5.changes        2017-10-27 
13:49:36.661140225 +0200
+++ /work/SRC/openSUSE:Factory/.kscreen5.new/kscreen5.changes   2017-11-10 
14:47:43.365070384 +0100
@@ -1,0 +2,11 @@
+Tue Nov  7 15:15:27 CET 2017 - fab...@ritter-vogt.de
+
+- Update to 5.11.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.11.3.php
+- Changes since 5.11.2:
+  * Don't re-align outputs when QMLOutput in clone mode moves
+  * Keep the unified QMLOutput always in center
+
+-------------------------------------------------------------------

Old:
----
  kscreen-5.11.2.tar.xz

New:
----
  kscreen-5.11.3.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kscreen5.spec ++++++
--- /var/tmp/diff_new_pack.WTVvcl/_old  2017-11-10 14:47:44.341035096 +0100
+++ /var/tmp/diff_new_pack.WTVvcl/_new  2017-11-10 14:47:44.345034952 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           kscreen5
-Version:        5.11.2
+Version:        5.11.3
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}

++++++ kscreen-5.11.2.tar.xz -> kscreen-5.11.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.11.2/CMakeLists.txt 
new/kscreen-5.11.3/CMakeLists.txt
--- old/kscreen-5.11.2/CMakeLists.txt   2017-10-24 13:03:51.000000000 +0200
+++ new/kscreen-5.11.3/CMakeLists.txt   2017-11-07 13:44:42.000000000 +0100
@@ -1,5 +1,5 @@
 project(KScreen)
-set(PROJECT_VERSION "5.11.2")
+set(PROJECT_VERSION "5.11.3")
 
 cmake_minimum_required(VERSION 2.8.12)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.11.2/kcm/src/declarative/qmloutput.cpp 
new/kscreen-5.11.3/kcm/src/declarative/qmloutput.cpp
--- old/kscreen-5.11.2/kcm/src/declarative/qmloutput.cpp        2017-10-24 
13:01:03.000000000 +0200
+++ new/kscreen-5.11.3/kcm/src/declarative/qmloutput.cpp        2017-11-07 
13:43:19.000000000 +0100
@@ -242,18 +242,25 @@
         return;
     }
 
-    if (m_rightDock) {
-        QMLOutput *rightDock = m_rightDock;
-        float newWidth = currentOutputWidth() * m_screen->outputScale();
-        setX(rightDock->x() - newWidth);
-        setRightDockedTo(rightDock);
-    }
+    if (isCloneMode()) {
+        const float newWidth = currentOutputWidth() * m_screen->outputScale();
+        setX((m_screen->width() - newWidth) / 2);
+        const float newHeight = currentOutputHeight() * 
m_screen->outputScale();
+        setY((m_screen->height() - newHeight) / 2);
+    } else {
+        if (m_rightDock) {
+            QMLOutput *rightDock = m_rightDock;
+            float newWidth = currentOutputWidth() * m_screen->outputScale();
+            setX(rightDock->x() - newWidth);
+            setRightDockedTo(rightDock);
+        }
 
-    if (m_bottomDock) {
-        QMLOutput *bottomDock = m_bottomDock;
-        float newHeight = currentOutputHeight() * m_screen->outputScale();
-        setY(bottomDock->y() - newHeight);
-        setBottomDockedTo(bottomDock);
+        if (m_bottomDock) {
+            QMLOutput *bottomDock = m_bottomDock;
+            float newHeight = currentOutputHeight() * m_screen->outputScale();
+            setY(bottomDock->y() - newHeight);
+            setBottomDockedTo(bottomDock);
+        }
     }
 
     Q_EMIT currentOutputSizeChanged();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.11.2/kcm/src/declarative/qmlscreen.cpp 
new/kscreen-5.11.3/kcm/src/declarative/qmlscreen.cpp
--- old/kscreen-5.11.2/kcm/src/declarative/qmlscreen.cpp        2017-10-24 
13:01:03.000000000 +0200
+++ new/kscreen-5.11.3/kcm/src/declarative/qmlscreen.cpp        2017-11-07 
13:43:19.000000000 +0100
@@ -233,6 +233,10 @@
 
 void QMLScreen::qmlOutputMoved(QMLOutput *qmlOutput)
 {
+    if (qmlOutput->isCloneMode()) {
+        return;
+    }
+
     updateCornerOutputs();
 
     if (m_leftmost) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.11.2/po/da/kcm_displayconfiguration.po 
new/kscreen-5.11.3/po/da/kcm_displayconfiguration.po
--- old/kscreen-5.11.2/po/da/kcm_displayconfiguration.po        2017-10-24 
13:01:48.000000000 +0200
+++ new/kscreen-5.11.3/po/da/kcm_displayconfiguration.po        2017-11-07 
13:43:41.000000000 +0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander <mschlan...@opensuse.org>, 2015, 2016.
+# Martin Schlander <mschlan...@opensuse.org>, 2015, 2016, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-09-21 05:33+0200\n"
-"PO-Revision-Date: 2016-05-12 20:48+0100\n"
+"PO-Revision-Date: 2017-10-28 19:56+0100\n"
 "Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
 "Language-Team: Danish <kde-i18n-...@kde.org>\n"
 "Language: da\n"
@@ -175,13 +175,13 @@
 #, kde-format
 msgctxt "Scale multiplier, show everything at 1 times normal scale"
 msgid "1x"
-msgstr ""
+msgstr "1x"
 
 #: src/outputconfig.cpp:132
 #, kde-format
 msgctxt "Scale multiplier, show everything at 2 times normal scale"
 msgid "2x"
-msgstr ""
+msgstr "2x"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/outputconfig.cpp:137 src/scaling.ui:31
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kscreen-5.11.2/po/eu/plasma_applet_org.kde.plasma.kscreen.po 
new/kscreen-5.11.3/po/eu/plasma_applet_org.kde.plasma.kscreen.po
--- old/kscreen-5.11.2/po/eu/plasma_applet_org.kde.plasma.kscreen.po    
1970-01-01 01:00:00.000000000 +0100
+++ new/kscreen-5.11.3/po/eu/plasma_applet_org.kde.plasma.kscreen.po    
2017-11-07 13:43:48.000000000 +0100
@@ -0,0 +1,72 @@
+# Translation of plasma_applet_org.kde.plasma.kscreen.po to Euskara/Basque 
(eu).
+# Copyright (C) 2017, The Free Software Foundation, Inc.
+# This file is distributed under the same license as the kde-workspace package.
+# KDE Euskaratzeko proiektuaren arduraduna <xa...@euskalnet.net.
+#
+# Translators:
+# Iñigo Salvador Azurmendi <xa...@euskalnet.net>, 2017.
+msgid ""
+msgstr ""
+"Project-Id-Version: plasma_applet_org.kde.plasma.kscreen\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"PO-Revision-Date: 2017-11-05 14:36+0100\n"
+"Last-Translator: Iñigo Salvador Azurmendi <xa...@euskalnet.net>\n"
+"Language-Team: Basque <kde-i18n-...@kde.org>\n"
+"Language: eu\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 2.0\n"
+
+#: kscreenapplet.cpp:82
+#, kde-format
+msgid "Failed to connect to KScreen daemon"
+msgstr "Huts egin du KScreen daimonera konektatzeak"
+
+#: kscreenapplet.cpp:96
+#, kde-format
+msgid "Failed to load root object"
+msgstr "Huts egin du erroko objektua zamatzeak"
+
+#: package/contents/ui/main.qml:47
+#, kde-format
+msgctxt "%1 is name of the newly connected display"
+msgid "A new display %1 has been detected"
+msgstr "Bistaratzaile berri bat hauteman da, %1"
+
+#: package/contents/ui/main.qml:91
+#, kde-format
+msgctxt "Places the newly connected screen right of the existing one"
+msgid "Extend to Right"
+msgstr "Hedatu eskuinera"
+
+#: package/contents/ui/main.qml:101
+#, kde-format
+msgctxt "Places the newly connected screen left of the existing one"
+msgid "Extend to Left"
+msgstr "Hedatu ezkerrera"
+
+#: package/contents/ui/main.qml:111
+#, kde-format
+msgctxt "Makes the newly conencted screen a clone of the primary one"
+msgid "Clone Primary Output"
+msgstr "Bikoiztu irteera nagusia"
+
+#: package/contents/ui/main.qml:121
+#, kde-format
+msgctxt "Disables the newly connected screen"
+msgid "Disable"
+msgstr "Desgaitu"
+
+#: package/contents/ui/main.qml:131
+#, kde-format
+msgid "No Action"
+msgstr "Ekintzarik ez"
+
+#: package/contents/ui/main.qml:141
+#, kde-format
+msgctxt "Opens KScreen KCM"
+msgid "Advanced Configuration"
+msgstr "Konfigurazio aurreratua"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.11.2/po/pt_BR/kcm_displayconfiguration.po 
new/kscreen-5.11.3/po/pt_BR/kcm_displayconfiguration.po
--- old/kscreen-5.11.2/po/pt_BR/kcm_displayconfiguration.po     2017-10-24 
13:03:22.000000000 +0200
+++ new/kscreen-5.11.3/po/pt_BR/kcm_displayconfiguration.po     2017-11-07 
13:44:22.000000000 +0100
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # André Marcelo Alvarenga <alvare...@kde.org>, 2015, 2016.
+# Luiz Fernando Ranghetti <elchev...@opensuse.org>, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: kcm_displayconfiguration\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-09-21 05:33+0200\n"
-"PO-Revision-Date: 2016-04-11 21:47-0300\n"
-"Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n"
-"Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
+"PO-Revision-Date: 2017-11-03 18:46-0300\n"
+"Last-Translator: Luiz Fernando Ranghetti <elchev...@opensuse.org>\n"
+"Language-Team: Portuguese <kde-i18n-pt...@kde.org>\n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -179,13 +180,13 @@
 #, kde-format
 msgctxt "Scale multiplier, show everything at 1 times normal scale"
 msgid "1x"
-msgstr ""
+msgstr "1x"
 
 #: src/outputconfig.cpp:132
 #, kde-format
 msgctxt "Scale multiplier, show everything at 2 times normal scale"
 msgid "2x"
-msgstr ""
+msgstr "2x"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/outputconfig.cpp:137 src/scaling.ui:31


Reply via email to