Hello community, here is the log from the commit of package libkscreen for openSUSE:Factory checked in at 2014-05-15 21:31:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkscreen (Old) and /work/SRC/openSUSE:Factory/.libkscreen.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkscreen" Changes: -------- --- /work/SRC/openSUSE:Factory/libkscreen/libkscreen.changes 2014-05-05 21:12:20.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.libkscreen.new/libkscreen.changes 2014-05-15 21:31:26.000000000 +0200 @@ -1,0 +2,6 @@ +Tue May 13 01:48:50 UTC 2014 - [email protected] + +- Update to version 1.0.4: + * Bugfix release, no changelog provided + +------------------------------------------------------------------- Old: ---- libkscreen-1.0.3.tar.xz New: ---- libkscreen-1.0.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkscreen.spec ++++++ --- /var/tmp/diff_new_pack.OVye0O/_old 2014-05-15 21:31:27.000000000 +0200 +++ /var/tmp/diff_new_pack.OVye0O/_new 2014-05-15 21:31:27.000000000 +0200 @@ -19,7 +19,7 @@ # %define soversion 1 Name: libkscreen -Version: 1.0.3 +Version: 1.0.4 Release: 0 Summary: KDE's screen management library License: GPL-2.0+ ++++++ libkscreen-1.0.3.tar.xz -> libkscreen-1.0.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkscreen-1.0.3/CMakeLists.txt new/libkscreen-1.0.4/CMakeLists.txt --- old/libkscreen-1.0.3/CMakeLists.txt 2014-05-04 19:25:33.000000000 +0200 +++ new/libkscreen-1.0.4/CMakeLists.txt 2014-05-11 03:17:35.000000000 +0200 @@ -1,7 +1,7 @@ project(libkscreen) set(libkscreen_VERSION_MAJOR 1) set(libkscreen_VERSION_MINOR 0) -set(libkscreen_VERSION_RELEASE 2) +set(libkscreen_VERSION_RELEASE 4) set(libkscreen_VERSION "${libkscreen_VERSION_MAJOR}.${libkscreen_VERSION_MINOR}.${libkscreen_VERSION_RELEASE}") add_definitions("-DLIBKSCREEN_VERSION=\\\"${libkscreen_VERSION}\\\"") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkscreen-1.0.3/backends/xrandr/xrandrconfig.cpp new/libkscreen-1.0.4/backends/xrandr/xrandrconfig.cpp --- old/libkscreen-1.0.3/backends/xrandr/xrandrconfig.cpp 2014-05-04 19:25:33.000000000 +0200 +++ new/libkscreen-1.0.4/backends/xrandr/xrandrconfig.cpp 2014-05-11 03:17:35.000000000 +0200 @@ -157,7 +157,7 @@ output->updateKScreenOutput(kscreenOutput); } - if (config->primaryOutput()->id() != m_primaryOutput) { + if (!config->primaryOutput() || config->primaryOutput()->id() != m_primaryOutput) { config->setPrimaryOutput(config->output(m_primaryOutput)); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkscreen-1.0.3/src/output.cpp new/libkscreen-1.0.4/src/output.cpp --- old/libkscreen-1.0.3/src/output.cpp 2014-05-04 19:25:33.000000000 +0200 +++ new/libkscreen-1.0.4/src/output.cpp 2014-05-11 03:17:35.000000000 +0200 @@ -425,7 +425,11 @@ QDebug operator<<(QDebug dbg, const KScreen::Output *output) { - dbg << "KScreen::Output(Id:" << output->id() <<", Name:" << output->name() << ")"; + if(output) { + dbg << "KScreen::Output(Id:" << output->id() <<", Name:" << output->name() << ")"; + } else { + dbg << "KScreen::Output(NULL)"; + } return dbg; } -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
