Hello community, here is the log from the commit of package step for openSUSE:Factory checked in at 2017-09-11 16:22:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/step (Old) and /work/SRC/openSUSE:Factory/.step.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "step" Mon Sep 11 16:22:29 2017 rev:84 rq:522672 version:17.08.1 Changes: -------- --- /work/SRC/openSUSE:Factory/step/step.changes 2017-08-28 15:09:50.234543266 +0200 +++ /work/SRC/openSUSE:Factory/.step.new/step.changes 2017-09-11 16:23:26.207259765 +0200 @@ -1,0 +2,12 @@ +Thu Sep 07 07:02:42 CEST 2017 - [email protected] + +- Update to 17.08.1 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-17.08.1.php +- Changes since 17.08.0: + * Don't search for and link to libcln when using libqalculate>=2.0 + * Use KActionCollection::setDefaultShortcut + * Add .arcconfig + +------------------------------------------------------------------- Old: ---- step-17.08.0.tar.xz New: ---- step-17.08.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ step.spec ++++++ --- /var/tmp/diff_new_pack.R6SpIB/_old 2017-09-11 16:23:26.675194061 +0200 +++ /var/tmp/diff_new_pack.R6SpIB/_new 2017-09-11 16:23:26.679193499 +0200 @@ -19,7 +19,7 @@ %bcond_without lang Name: step -Version: 17.08.0 +Version: 17.08.1 Release: 0 %define kf5_version 5.26.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) ++++++ step-17.08.0.tar.xz -> step-17.08.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/step-17.08.0/.arcconfig new/step-17.08.1/.arcconfig --- old/step-17.08.0/.arcconfig 1970-01-01 01:00:00.000000000 +0100 +++ new/step-17.08.1/.arcconfig 2017-08-29 21:21:47.000000000 +0200 @@ -0,0 +1,3 @@ +{ + "phabricator.uri" : "https://phabricator.kde.org/" +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/step-17.08.0/cmake/modules/FindQalculate.cmake new/step-17.08.1/cmake/modules/FindQalculate.cmake --- old/step-17.08.0/cmake/modules/FindQalculate.cmake 2017-07-01 23:55:29.000000000 +0200 +++ new/step-17.08.1/cmake/modules/FindQalculate.cmake 2017-08-29 21:21:47.000000000 +0200 @@ -30,9 +30,10 @@ pkg_check_modules(_pc_QALCULATE libqalculate) endif(QALCULATE_MIN_VERSION) - pkg_check_modules(_pc_CLN cln) - if(_pc_QALCULATE_FOUND) + if(${_pc_QALCULATE_VERSION} VERSION_LESS 2.0.0) + pkg_check_modules(_pc_CLN cln) + endif() set(QALCULATE_CFLAGS ${_pc_QALCULATE_CFLAGS}) endif(_pc_QALCULATE_FOUND) @@ -52,13 +53,17 @@ ${INCLUDE_INSTALL_DIR} ) - find_library(CLN_LIBRARIES - NAMES - cln - PATHS - ${_pc_CLN_LIBRARY_DIRS} - ${LIB_INSTALL_DIR} - ) + if(_pc_QALCULATE_FOUND) + if(${_pc_QALCULATE_VERSION} VERSION_LESS 2.0.0) + find_library(CLN_LIBRARIES + NAMES + cln + PATHS + ${_pc_CLN_LIBRARY_DIRS} + ${LIB_INSTALL_DIR} + ) + endif() + endif() else(NOT WIN32) # XXX: currently no libqalculate on windows diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/step-17.08.0/po/zh_CN/step.po new/step-17.08.1/po/zh_CN/step.po --- old/step-17.08.0/po/zh_CN/step.po 2017-08-11 02:32:07.000000000 +0200 +++ new/step-17.08.1/po/zh_CN/step.po 2017-09-05 02:28:05.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:14+0100\n" -"PO-Revision-Date: 2017-08-05 09:36-0400\n" +"PO-Revision-Date: 2017-08-31 05:21-0400\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/step-17.08.0/poqm/zh_CN/step_qt.po new/step-17.08.1/poqm/zh_CN/step_qt.po --- old/step-17.08.0/poqm/zh_CN/step_qt.po 2017-08-11 02:32:07.000000000 +0200 +++ new/step-17.08.1/poqm/zh_CN/step_qt.po 2017-09-05 02:28:05.000000000 +0200 @@ -2183,12 +2183,12 @@ #: world.cc:32 msgctxt "ObjectClass|" msgid "Tool" -msgstr "" +msgstr "工具" #: world.cc:32 msgctxt "ObjectDescription|" msgid "Tool" -msgstr "" +msgstr "工具" #: world.cc:34 msgctxt "ObjectClass|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/step-17.08.0/step/mainwindow.cc new/step-17.08.1/step/mainwindow.cc --- old/step-17.08.0/step/mainwindow.cc 2017-07-01 23:55:29.000000000 +0200 +++ new/step-17.08.1/step/mainwindow.cc 2017-08-29 21:21:47.000000000 +0200 @@ -198,8 +198,8 @@ actionDelete = actionCollection()->add<QAction>("edit_delete", worldModel, SLOT(deleteSelectedItems())); actionDelete->setText(i18n("&Delete")); actionDelete->setIcon(QIcon::fromTheme("edit-delete")); - actionDelete->setShortcut(QKeySequence(Qt::Key_Delete)); actionDelete->setEnabled(false); + actionCollection()->setDefaultShortcut(actionDelete, QKeySequence(Qt::Key_Delete)); /* Simulation menu */ // The run speed action group
