Hello community,
here is the log from the commit of package ktp-filetransfer-handler for
openSUSE:Factory checked in at 2016-08-29 14:46:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktp-filetransfer-handler (Old)
and /work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ktp-filetransfer-handler"
Changes:
--------
---
/work/SRC/openSUSE:Factory/ktp-filetransfer-handler/ktp-filetransfer-handler.changes
2016-07-15 12:44:00.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new/ktp-filetransfer-handler.changes
2016-08-29 14:46:40.000000000 +0200
@@ -1,0 +2,16 @@
+Fri Aug 12 10:26:46 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.08.0
+ * KDE Applications 16.08.0
+ * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+
+-------------------------------------------------------------------
+Mon Aug 8 15:29:25 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.07.90
+ * KDE Applications 16.07.90 (16.08-RC)
+ * https://www.kde.org/announcements/announce-applications-16.07.90.php
+
+
+-------------------------------------------------------------------
Old:
----
ktp-filetransfer-handler-16.04.3.tar.xz
New:
----
ktp-filetransfer-handler-16.08.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ktp-filetransfer-handler.spec ++++++
--- /var/tmp/diff_new_pack.q6uInR/_old 2016-08-29 14:46:43.000000000 +0200
+++ /var/tmp/diff_new_pack.q6uInR/_new 2016-08-29 14:46:43.000000000 +0200
@@ -17,7 +17,7 @@
Name: ktp-filetransfer-handler
-Version: 16.04.3
+Version: 16.08.0
Release: 0
Summary: Telepathy filetransfer handler
License: GPL-2.0+
++++++ ktp-filetransfer-handler-16.04.3.tar.xz ->
ktp-filetransfer-handler-16.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ktp-filetransfer-handler-16.04.3/CMakeLists.txt
new/ktp-filetransfer-handler-16.08.0/CMakeLists.txt
--- old/ktp-filetransfer-handler-16.04.3/CMakeLists.txt 2016-07-02
18:12:41.000000000 +0200
+++ new/ktp-filetransfer-handler-16.08.0/CMakeLists.txt 2016-08-10
01:26:03.000000000 +0200
@@ -4,8 +4,8 @@
# KDE Application Version, managed by release script
set(KDE_APPLICATIONS_VERSION_MAJOR "16")
-set(KDE_APPLICATIONS_VERSION_MINOR "04")
-set(KDE_APPLICATIONS_VERSION_MICRO "3")
+set(KDE_APPLICATIONS_VERSION_MINOR "08")
+set(KDE_APPLICATIONS_VERSION_MICRO "0")
set(KTP_FILETRANSFER_HANDLER_VERSION
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
find_package(ECM 1.3.0 REQUIRED NO_MODULE)
@@ -21,6 +21,8 @@
include(ECMSetupVersion)
include(FeatureSummary)
+add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
+
add_subdirectory(src)
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/ktp-filetransfer-handler-16.04.3/src/handle-incoming-file-transfer-channel-job.cpp
new/ktp-filetransfer-handler-16.08.0/src/handle-incoming-file-transfer-channel-job.cpp
---
old/ktp-filetransfer-handler-16.04.3/src/handle-incoming-file-transfer-channel-job.cpp
2016-07-02 18:12:41.000000000 +0200
+++
new/ktp-filetransfer-handler-16.08.0/src/handle-incoming-file-transfer-channel-job.cpp
2016-08-10 01:26:03.000000000 +0200
@@ -188,8 +188,8 @@
KRecentDirs::add(recentDirClass, url.toLocalFile());
}
+ partUrl = url;
partUrl.setPath(url.path() + QLatin1String(".part"));
- partUrl.setScheme(QLatin1String("file"));
checkPartFile();
return;
@@ -202,11 +202,10 @@
{
Q_Q(HandleIncomingFileTransferChannelJob);
- url = downloadDirectory + QLatin1Char('/') + channel->fileName();
- url.setScheme(QLatin1String("file"));
+ url = QUrl::fromLocalFile(downloadDirectory + QLatin1Char('/') +
channel->fileName());
- partUrl = url.path() + QLatin1String(".part");
- partUrl.setScheme(QLatin1String("file"));
+ partUrl = url;
+ partUrl.setPath(url.path() + QLatin1String(".part"));
QFileInfo fileInfo(url.toLocalFile()); // TODO check if it is a dir?
if (fileInfo.exists()) {