Hello community, here is the log from the commit of package ark for openSUSE:Factory checked in at 2016-07-21 07:41:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ark (Old) and /work/SRC/openSUSE:Factory/.ark.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ark" Changes: -------- --- /work/SRC/openSUSE:Factory/ark/ark.changes 2016-06-20 10:55:31.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.ark.new/ark.changes 2016-07-21 07:42:02.000000000 +0200 @@ -1,0 +2,8 @@ +Thu Jul 7 23:16:11 UTC 2016 - [email protected] + +- Update to KDE Applications 16.04.3 + * KDE Applications 16.04.3 + * https://www.kde.org/announcements/announce-applications-16.04.3.php + + +------------------------------------------------------------------- Old: ---- ark-16.04.2.tar.xz New: ---- ark-16.04.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ark.spec ++++++ --- /var/tmp/diff_new_pack.mvKohz/_old 2016-07-21 07:42:04.000000000 +0200 +++ /var/tmp/diff_new_pack.mvKohz/_new 2016-07-21 07:42:04.000000000 +0200 @@ -17,7 +17,7 @@ Name: ark -Version: 16.04.2 +Version: 16.04.3 Release: 0 Summary: KDE Archiver Tool License: GPL-2.0+ ++++++ ark-16.04.2.tar.xz -> ark-16.04.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.04.2/CMakeLists.txt new/ark-16.04.3/CMakeLists.txt --- old/ark-16.04.2/CMakeLists.txt 2016-06-09 11:19:54.000000000 +0200 +++ new/ark-16.04.3/CMakeLists.txt 2016-07-07 11:36:48.000000000 +0200 @@ -7,7 +7,7 @@ # KDE Application Version, managed by release script set (KDE_APPLICATIONS_VERSION_MAJOR "16") set (KDE_APPLICATIONS_VERSION_MINOR "04") -set (KDE_APPLICATIONS_VERSION_MICRO "2") +set (KDE_APPLICATIONS_VERSION_MICRO "3") set (KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.04.2/app/org.kde.ark.desktop.cmake new/ark-16.04.3/app/org.kde.ark.desktop.cmake --- old/ark-16.04.2/app/org.kde.ark.desktop.cmake 2016-06-09 11:19:54.000000000 +0200 +++ new/ark-16.04.3/app/org.kde.ark.desktop.cmake 2016-07-07 11:36:48.000000000 +0200 @@ -154,7 +154,6 @@ Terminal=false X-DBUS-StartupType=Multi X-DBUS-ServiceName=org.kde.ark -X-KDE-HasTempFileOption=true Categories=Qt;KDE;Utility;Archiving;Compression;X-KDE-Utilities-File; InitialPreference=3 Comment=Work with file archives diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.04.2/kerfuffle/kerfufflePlugin.desktop new/ark-16.04.3/kerfuffle/kerfufflePlugin.desktop --- old/ark-16.04.2/kerfuffle/kerfufflePlugin.desktop 2016-06-09 11:19:54.000000000 +0200 +++ new/ark-16.04.3/kerfuffle/kerfufflePlugin.desktop 2016-07-07 11:36:48.000000000 +0200 @@ -20,7 +20,7 @@ Comment[fr]=Module externe de gestion des formats d'archives pour la bibliothèque « Kerfuffle » Comment[ga]=Breiseán a láimhseálann formáidí cartlainne thar ceann na leabharlainne Kerfuffle Comment[gl]=Extensión da biblioteca Kerfuffle para manexar formatos de arquivo -Comment[he]=תוסף לניהול פורמטי ארכיונים לספריית Kerfuffle +Comment[he]=תוסף לניהול פורמטי ארכיונים לספריית Kerfuffle Comment[hne]=करफुफल लाइब्रेरी बर अभिलेख फारमेट हेंडल करे बर प्लगइन Comment[hr]=Priključak za upravljanje arhivnim formatima za biblioteku Kerfuffle Comment[hu]=Archívumkezelő modul a Kerfuffle programkönyvtárhoz diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.04.2/part/archivemodel.cpp new/ark-16.04.3/part/archivemodel.cpp --- old/ark-16.04.2/part/archivemodel.cpp 2016-06-09 11:19:54.000000000 +0200 +++ new/ark-16.04.3/part/archivemodel.cpp 2016-07-07 11:36:48.000000000 +0200 @@ -842,16 +842,18 @@ void ArchiveModel::slotLoadingFinished(KJob *job) { - int i = 0; - foreach(const ArchiveEntry &entry, m_newArchiveEntries) { - newEntry(entry, DoNotNotifyViews); - i++; - } - beginResetModel(); - endResetModel(); - m_newArchiveEntries.clear(); + if (!job->error()) { + int i = 0; + foreach(const ArchiveEntry &entry, m_newArchiveEntries) { + newEntry(entry, DoNotNotifyViews); + i++; + } + beginResetModel(); + endResetModel(); + m_newArchiveEntries.clear(); - qCDebug(ARK) << "Added" << i << "entries to model"; + qCDebug(ARK) << "Added" << i << "entries to model"; + } emit loadingFinished(job); }
