Hello community, here is the log from the commit of package kscreen5 for openSUSE:Factory checked in at 2016-08-08 13:52:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kscreen5 (Old) and /work/SRC/openSUSE:Factory/.kscreen5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kscreen5" Changes: -------- --- /work/SRC/openSUSE:Factory/kscreen5/kscreen5.changes 2016-07-15 12:25:05.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kscreen5.new/kscreen5.changes 2016-08-08 13:52:55.000000000 +0200 @@ -1,0 +2,23 @@ +Wed Jul 20 08:54:23 UTC 2016 - [email protected] + +- Update to 5.7.2 + * New bugfix release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.2.php + +------------------------------------------------------------------- +Wed Jul 13 06:13:28 UTC 2016 - [email protected] + +- Update to 5.7.1 + * New bugfix release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.1.php + +------------------------------------------------------------------- +Tue Jul 5 11:34:31 UTC 2016 - [email protected] + +- Use the new %kf5_find_lang macro to create the file list for the + lang package +- Remove rpmlintrc file, it is not needed any more now + +------------------------------------------------------------------- Old: ---- kscreen-5.7.0.tar.xz kscreen5-rpmlintrc New: ---- kscreen-5.7.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kscreen5.spec ++++++ --- /var/tmp/diff_new_pack.TabLz6/_old 2016-08-08 13:52:56.000000000 +0200 +++ /var/tmp/diff_new_pack.TabLz6/_new 2016-08-08 13:52:56.000000000 +0200 @@ -18,14 +18,13 @@ %bcond_without lang Name: kscreen5 -Version: 5.7.0 +Version: 5.7.2 Release: 0 Summary: KDE's screen management software License: GPL-2.0+ Group: System/GUI/KDE Url: http://www.kde.org Source: kscreen-%{version}.tar.xz -Source99: %{name}-rpmlintrc BuildRequires: cmake >= 2.8.12 BuildRequires: extra-cmake-modules >= 1.6.0 BuildRequires: fdupes @@ -62,11 +61,14 @@ %setup -q -n kscreen-%{version} %build - %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5 + %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir} %make_jobs %install %kf5_makeinstall -C build +%if %{with lang} + %kf5_find_lang +%endif %files %defattr(-,root,root) @@ -78,9 +80,7 @@ %{_kf5_servicesdir}/ %if %{with lang} -%files lang -%defattr(-,root,root) -%{_kf5_localedir}/ +%files lang -f %{name}.lang %endif %changelog ++++++ kscreen-5.7.0.tar.xz -> kscreen-5.7.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.7.0/CMakeLists.txt new/kscreen-5.7.2/CMakeLists.txt --- old/kscreen-5.7.0/CMakeLists.txt 2016-06-30 16:58:00.000000000 +0200 +++ new/kscreen-5.7.2/CMakeLists.txt 2016-07-19 12:59:39.000000000 +0200 @@ -1,5 +1,5 @@ project(KScreen) -set(PROJECT_VERSION "5.7.0") +set(PROJECT_VERSION "5.7.2") cmake_minimum_required(VERSION 2.8.12) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.7.0/console/console.cpp new/kscreen-5.7.2/console/console.cpp --- old/kscreen-5.7.0/console/console.cpp 2016-06-30 16:57:15.000000000 +0200 +++ new/kscreen-5.7.2/console/console.cpp 2016-07-19 12:58:55.000000000 +0200 @@ -143,6 +143,8 @@ return QStringLiteral("Panel (Laptop)"); case Output::VGA: return QStringLiteral("VGA"); + case Output::DVI: + return QStringLiteral("DVI"); case Output::DVII: return QStringLiteral("DVI-I"); case Output::DVIA: @@ -165,10 +167,9 @@ return QStringLiteral("TV-C4"); case Output::DisplayPort: return QStringLiteral("DisplayPort"); - default: - return QStringLiteral("Invalid Type"); }; + return QStringLiteral("Invalid Type") + QString::number(type); } void Console::printJSONConfig() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.7.0/kded/daemon.cpp new/kscreen-5.7.2/kded/daemon.cpp --- old/kscreen-5.7.0/kded/daemon.cpp 2016-06-30 16:57:15.000000000 +0200 +++ new/kscreen-5.7.2/kded/daemon.cpp 2016-07-19 12:58:55.000000000 +0200 @@ -89,7 +89,8 @@ KActionCollection *coll = new KActionCollection(this); QAction* action = coll->addAction(QStringLiteral("display")); action->setText(i18n("Switch Display" )); - KGlobalAccel::self()->setGlobalShortcut(action, Qt::Key_Display); + QList<QKeySequence> switchDisplayShortcuts({Qt::Key_Display, Qt::MetaModifier + Qt::Key_P}); + KGlobalAccel::self()->setGlobalShortcut(action, switchDisplayShortcuts); connect(action, &QAction::triggered, [&](bool) { displayButton(); }); new KScreenAdaptor(this); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kscreen-5.7.0/kded/generator.cpp new/kscreen-5.7.2/kded/generator.cpp --- old/kscreen-5.7.0/kded/generator.cpp 2016-06-30 16:57:15.000000000 +0200 +++ new/kscreen-5.7.2/kded/generator.cpp 2016-07-19 12:58:55.000000000 +0200 @@ -258,9 +258,8 @@ return config; } - default: - // None: just return config - // Clone: handled above + case Generator::None: // just return config + case Generator::Clone: // handled above break; } // switch
