Hello community, here is the log from the commit of package kscreen5 for openSUSE:Factory checked in at 2017-04-30 21:12:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kscreen5 (Old) and /work/SRC/openSUSE:Factory/.kscreen5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kscreen5" Sun Apr 30 21:12:51 2017 rev:39 rq:491300 version:5.9.5 Changes: -------- --- /work/SRC/openSUSE:Factory/kscreen5/kscreen5.changes 2017-03-28 15:15:33.466201944 +0200 +++ /work/SRC/openSUSE:Factory/.kscreen5.new/kscreen5.changes 2017-04-30 21:12:55.265558235 +0200 @@ -1,0 +2,11 @@ +Tue Apr 25 18:58:01 CEST 2017 - [email protected] + +- Update to 5.9.5 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.9.5.php +- Changes since 5.9.4: + * Support fractional scailng in KScreen Scaling preview + * Set xrdb XFT.DPI value as integer + +------------------------------------------------------------------- Old: ---- kscreen-5.9.4.tar.xz New: ---- kscreen-5.9.5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kscreen5.spec ++++++ --- /var/tmp/diff_new_pack.wA5tkD/_old 2017-04-30 21:12:55.997455055 +0200 +++ /var/tmp/diff_new_pack.wA5tkD/_new 2017-04-30 21:12:56.001454492 +0200 @@ -18,7 +18,7 @@ %bcond_without lang Name: kscreen5 -Version: 5.9.4 +Version: 5.9.5 Release: 0 # Full Plasma 5 version (e.g. 5.9.4) %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}} ++++++ kscreen-5.9.4.tar.xz -> kscreen-5.9.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/CMakeLists.txt new/kscreen-5.9.5/CMakeLists.txt --- old/kscreen-5.9.4/CMakeLists.txt 2017-03-21 14:51:43.000000000 +0100 +++ new/kscreen-5.9.5/CMakeLists.txt 2017-04-25 14:43:22.000000000 +0200 @@ -1,5 +1,5 @@ project(KScreen) -set(PROJECT_VERSION "5.9.4") +set(PROJECT_VERSION "5.9.5") cmake_minimum_required(VERSION 2.8.12) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/kcm/kcm_kscreen.desktop.cmake new/kscreen-5.9.5/kcm/kcm_kscreen.desktop.cmake --- old/kscreen-5.9.4/kcm/kcm_kscreen.desktop.cmake 2017-03-21 14:50:48.000000000 +0100 +++ new/kscreen-5.9.5/kcm/kcm_kscreen.desktop.cmake 2017-04-25 14:41:16.000000000 +0200 @@ -40,6 +40,7 @@ Name[sr@ijekavianlatin]=Ekrani Name[sr@latin]=Ekrani Name[sv]=Bildskärmar +Name[tr]=Ekranlar Name[uk]=Дисплеї Name[x-test]=xxDisplaysxx Name[zh_CN]=显示 @@ -117,6 +118,7 @@ X-KDE-Keywords[sr@ijekavianlatin]=display,monitor,scale,scaling,resolution,oritentation,outputs,prikaz,monitor,ekran,skaliranje,rezolucija,orijentacija,izlaz X-KDE-Keywords[sr@latin]=display,monitor,scale,scaling,resolution,oritentation,outputs,prikaz,monitor,ekran,skaliranje,rezolucija,orijentacija,izlaz X-KDE-Keywords[sv]=skärm,bildskärm,skala,skalning,upplösning,orientering,utgångar +X-KDE-Keywords[tr]=ekran,monitör,ölçek,ölçeklendirme,çözünürlük,yönelim,çıktılar X-KDE-Keywords[uk]=display,monitor,scale,scaling,resolution,orientation,outputs,дисплей,монітор,масштаб,масштабування,роздільність,здатність,орієнтація,виведення,виходи X-KDE-Keywords[x-test]=xxdisplayxx,xxmonitorxx,xxscalexx,xxscalingxx,xxresolutionxx,xxorientationxx,xxoutputsxx X-KDE-Keywords[zh_CN]=display,monitor,scale,scaling,resolution,orientation,outputs,显示,监视器,缩放,分辨率,旋转,方位,输出 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/kcm/src/previewwidget.cpp new/kscreen-5.9.5/kcm/src/previewwidget.cpp --- old/kscreen-5.9.4/kcm/src/previewwidget.cpp 2017-03-21 14:50:48.000000000 +0100 +++ new/kscreen-5.9.5/kcm/src/previewwidget.cpp 2017-04-25 14:41:16.000000000 +0200 @@ -68,16 +68,13 @@ //scale by our new factor pixelSize *= m_scale; - int dpr = qRound(m_scale); - return pixelSize / dpr; //as we are now dealing with pixels it will be scaled up in the paint(), so it needs dividing here + return pixelSize / m_scale; //as we are now dealing with pixels it will be scaled up in the paint(), so it needs dividing here } QPixmap PreviewWidget::updatePixmapCache() { - int dpr = qRound(m_scale); - - QPixmap pixmap(m_internalPreview ->sizeHint() * dpr); - pixmap.setDevicePixelRatio(dpr); + QPixmap pixmap(m_internalPreview ->sizeHint() * m_scale); + pixmap.setDevicePixelRatio(m_scale); QPainter p(&pixmap); m_internalPreview ->render(&p); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/kcm/src/scalingconfig.cpp new/kscreen-5.9.5/kcm/src/scalingconfig.cpp --- old/kscreen-5.9.4/kcm/src/scalingconfig.cpp 2017-03-21 14:50:48.000000000 +0100 +++ new/kscreen-5.9.5/kcm/src/scalingconfig.cpp 2017-04-25 14:41:16.000000000 +0200 @@ -119,9 +119,9 @@ QDialog::accept(); } -qreal ScalingConfig::scaleDPI() const +int ScalingConfig::scaleDPI() const { - return scaleFactor() * 96.0; + return qRound(scaleFactor() * 96.0); } qreal ScalingConfig::scaleFactor() const diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/kcm/src/scalingconfig.h new/kscreen-5.9.5/kcm/src/scalingconfig.h --- old/kscreen-5.9.4/kcm/src/scalingconfig.h 2017-03-21 14:50:48.000000000 +0100 +++ new/kscreen-5.9.5/kcm/src/scalingconfig.h 2017-04-25 14:41:16.000000000 +0200 @@ -38,7 +38,7 @@ private: void load(); qreal scaleFactor() const; - qreal scaleDPI() const; + int scaleDPI() const; Ui::Scaling ui; qreal m_initialScalingFactor = 1.0; KScreen::OutputList m_outputList; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/po/tr/kcm_displayconfiguration.po new/kscreen-5.9.5/po/tr/kcm_displayconfiguration.po --- old/kscreen-5.9.4/po/tr/kcm_displayconfiguration.po 2017-03-21 14:51:38.000000000 +0100 +++ new/kscreen-5.9.5/po/tr/kcm_displayconfiguration.po 2017-04-25 14:43:10.000000000 +0200 @@ -1,21 +1,21 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Volkan Gezer <[email protected]>, 2015. +# Volkan Gezer <[email protected]>, 2015, 2017. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:20+0100\n" -"PO-Revision-Date: 2015-08-10 15:19+0000\n" -"Last-Translator: Necdet <[email protected]>\n" +"PO-Revision-Date: 2017-04-24 16:21+0100\n" +"Last-Translator: Volkan Gezer <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" "Language: tr\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 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -206,25 +206,25 @@ #: src/scaling.ui:14 #, kde-format msgid "Dialog" -msgstr "" +msgstr "İletişim Kutusu" #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #: src/scaling.ui:20 #, kde-format msgid "Screen Scaling" -msgstr "" +msgstr "Ekran Ölçeklendirme" #. i18n: ectx: property (text), widget (QLabel, label) #: src/scaling.ui:31 #, kde-format msgid "Scale:" -msgstr "" +msgstr "Ölçek:" #. i18n: ectx: property (text), widget (QLabel, scaleLabel) #: src/scaling.ui:72 #, kde-format msgid "TextLabel" -msgstr "" +msgstr "MetinEtiketi" #: src/scalingconfig.cpp:40 #, kde-format @@ -235,44 +235,44 @@ #: src/stylepreview.ui:19 #, kde-format msgid "Tab 1" -msgstr "" +msgstr "Sekme 1" #. i18n: ectx: property (title), widget (QGroupBox, GroupBox1) #: src/stylepreview.ui:29 #, kde-format msgid "Group Box" -msgstr "" +msgstr "Grup Kutusu" #. i18n: ectx: property (text), widget (QRadioButton, RadioButton1) #. i18n: ectx: property (text), widget (QRadioButton, RadioButton2) #: src/stylepreview.ui:35 src/stylepreview.ui:45 #, kde-format msgid "Radio button" -msgstr "" +msgstr "Radyo düğmesi" #. i18n: ectx: property (text), widget (QCheckBox, CheckBox1) #: src/stylepreview.ui:62 #, kde-format msgid "Checkbox" -msgstr "" +msgstr "Onay kutusu" #. i18n: ectx: property (text), widget (QPushButton, PushButton1) #: src/stylepreview.ui:115 #, kde-format msgid "Button" -msgstr "" +msgstr "Düğme" #. i18n: ectx: property (text), item, widget (QComboBox, ComboBox1) #: src/stylepreview.ui:125 #, kde-format msgid "Combobox" -msgstr "" +msgstr "Açılan kutu" #. i18n: ectx: attribute (title), widget (QWidget, tab) #: src/stylepreview.ui:155 #, kde-format msgid "Tab 2" -msgstr "" +msgstr "Sekme 2" #: src/widget.cpp:90 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.9.4/po/tr/kscreen.po new/kscreen-5.9.5/po/tr/kscreen.po --- old/kscreen-5.9.4/po/tr/kscreen.po 2017-03-21 14:51:38.000000000 +0100 +++ new/kscreen-5.9.5/po/tr/kscreen.po 2017-04-25 14:43:10.000000000 +0200 @@ -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. # -# Volkan Gezer <[email protected]>, 2015. +# Volkan Gezer <[email protected]>, 2015, 2017. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-12-02 03:27+0100\n" -"PO-Revision-Date: 2015-02-08 14:01+0100\n" +"PO-Revision-Date: 2017-04-24 16:39+0100\n" "Last-Translator: Volkan Gezer <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" "Language: tr\n" @@ -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 1.5\n" +"X-Generator: Lokalize 2.0\n" #: daemon.cpp:91 #, kde-format @@ -26,10 +26,10 @@ #, kde-format msgctxt "OSD text after XF86Display button press" msgid "No External Display" -msgstr "" +msgstr "Harici Ekran Yok" #: daemon.cpp:249 #, kde-format msgctxt "OSD text after XF86Display button press" msgid "Changing Screen Layout" -msgstr "" \ No newline at end of file +msgstr "Ekran Düzeni Değişikliği" \ No newline at end of file
