Hello community, here is the log from the commit of package filelight for openSUSE:Factory checked in at 2016-02-23 16:55:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/filelight (Old) and /work/SRC/openSUSE:Factory/.filelight.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "filelight" Changes: -------- --- /work/SRC/openSUSE:Factory/filelight/filelight.changes 2016-01-28 17:20:30.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.filelight.new/filelight.changes 2016-02-23 16:55:14.000000000 +0100 @@ -1,0 +2,9 @@ +Sat Feb 13 08:01:36 UTC 2016 - tittiatc...@gmail.com + +- Update to KDE Applications 15.12.2 + * KDE Applications 15.12.2 + * https://www.kde.org/announcements/announce-applications-15.12.2.php + * boo#966605 + + +------------------------------------------------------------------- Old: ---- filelight-15.12.1.tar.xz New: ---- filelight-15.12.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ filelight.spec ++++++ --- /var/tmp/diff_new_pack.qzXqLz/_old 2016-02-23 16:55:15.000000000 +0100 +++ /var/tmp/diff_new_pack.qzXqLz/_new 2016-02-23 16:55:15.000000000 +0100 @@ -17,7 +17,7 @@ Name: filelight -Version: 15.12.1 +Version: 15.12.2 Release: 0 Summary: Graphical disk usage viewer License: GPL-2.0 or GPL-3.0 ++++++ filelight-15.12.1.tar.xz -> filelight-15.12.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-15.12.1/src/app/main.cpp new/filelight-15.12.2/src/app/main.cpp --- old/filelight-15.12.1/src/app/main.cpp 2015-08-19 12:03:11.000000000 +0200 +++ new/filelight-15.12.2/src/app/main.cpp 2016-02-04 10:19:49.000000000 +0100 @@ -48,6 +48,8 @@ { QApplication app(argc, argv); + KLocalizedString::setApplicationDomain("filelight"); + Kdelibs4ConfigMigrator migrate(QLatin1String("filelight")); migrate.setConfigFiles(QStringList() << QLatin1String("filelightrc")); migrate.setUiFiles(QStringList() << QLatin1String("filelightui.rc")); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-15.12.1/src/part/part.cpp new/filelight-15.12.2/src/part/part.cpp --- old/filelight-15.12.1/src/part/part.cpp 2015-08-19 12:03:11.000000000 +0200 +++ new/filelight-15.12.2/src/part/part.cpp 2016-02-04 10:19:49.000000000 +0100 @@ -172,7 +172,7 @@ } else if (isLocal && access(path8bit, F_OK) != 0) //stat(path, &statbuf) == 0 { - KMSG(i18n("Folder not found: %1").arg(path)); + KMSG(i18n("Folder not found: %1", path)); } else if (isLocal && !QDir(path).isReadable()) //access(path8bit, R_OK | X_OK) != 0 doesn't work on win32 { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-15.12.1/src/part/radialMap/widgetEvents.cpp new/filelight-15.12.2/src/part/radialMap/widgetEvents.cpp --- old/filelight-15.12.1/src/part/radialMap/widgetEvents.cpp 2015-08-19 12:03:11.000000000 +0200 +++ new/filelight-15.12.2/src/part/radialMap/widgetEvents.cpp 2016-02-04 10:19:49.000000000 +0100 @@ -257,8 +257,8 @@ m_toBeDeleted = m_focus; const QUrl url = Widget::url(m_toBeDeleted->file()); const QString message = m_toBeDeleted->file()->isFolder() - ? i18n("<qt>The folder at <i>'%1'</i> will be <b>recursively</b> and <b>permanently</b> deleted.</qt>").arg(url.toString()) - : i18n("<qt><i>'%1'</i> will be <b>permanently</b> deleted.</qt>").arg(url.toString()); + ? i18n("<qt>The folder at <i>'%1'</i> will be <b>recursively</b> and <b>permanently</b> deleted.</qt>", url.toString()) + : i18n("<qt><i>'%1'</i> will be <b>permanently</b> deleted.</qt>", url.toString()); const int userIntention = KMessageBox::warningContinueCancel( this, message, QString(), KGuiItem(i18n("&Delete"), QLatin1String("edit-delete"))); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-15.12.1/src/part/settingsDialog.cpp new/filelight-15.12.2/src/part/settingsDialog.cpp --- old/filelight-15.12.1/src/part/settingsDialog.cpp 2015-08-19 12:03:11.000000000 +0200 +++ new/filelight-15.12.2/src/part/settingsDialog.cpp 2016-02-04 10:19:49.000000000 +0100 @@ -169,7 +169,8 @@ void SettingsDialog::addFolder() { - const QUrl url = QFileDialog::getExistingDirectory(this, i18n("Select path to ignore"), QDir::rootPath()); + const QString urlString = QFileDialog::getExistingDirectory(this, i18n("Select path to ignore"), QDir::rootPath()); + const QUrl url = QUrl::fromLocalFile(urlString); //TODO error handling! //TODO wrong protocol handling!