Hello community, here is the log from the commit of package ksmtp for openSUSE:Factory checked in at 2019-04-26 22:50:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ksmtp (Old) and /work/SRC/openSUSE:Factory/.ksmtp.new.5536 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ksmtp" Fri Apr 26 22:50:19 2019 rev:19 rq:696315 version:19.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ksmtp/ksmtp.changes 2019-03-11 11:12:06.553400679 +0100 +++ /work/SRC/openSUSE:Factory/.ksmtp.new.5536/ksmtp.changes 2019-04-26 22:50:21.017462438 +0200 @@ -1,0 +2,32 @@ +Sat Apr 20 06:51:57 UTC 2019 - [email protected] + +- Update to 19.04.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.04.0.php +- Changes since 19.03.90: + * Fix the kcoreAddons detection with older CMake versions. + +------------------------------------------------------------------- +Tue Apr 09 20:54:43 UTC 2019 - [email protected] + +- Update to 19.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-rc.php +- Changes since 19.03.80: + * Workaround qt5.13 bug + +------------------------------------------------------------------- +Wed Mar 27 06:41:07 UTC 2019 - [email protected] + +- Update to 19.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-beta.php +- Changes since 18.12.3: + * it compiles fine without foreach + * Fix some clazy warning + * Remove QT_CHECK + +------------------------------------------------------------------- Old: ---- ksmtp-18.12.3.tar.xz New: ---- ksmtp-19.04.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ksmtp.spec ++++++ --- /var/tmp/diff_new_pack.NwMDuq/_old 2019-04-26 22:50:21.637462121 +0200 +++ /var/tmp/diff_new_pack.NwMDuq/_new 2019-04-26 22:50:21.641462118 +0200 @@ -18,7 +18,7 @@ %bcond_without lang Name: ksmtp -Version: 18.12.3 +Version: 19.04.0 Release: 0 Summary: Job-based library to send email through an SMTP server License: LGPL-2.1-or-later @@ -87,7 +87,7 @@ %files %license COPYING.LIB -%config %{_kf5_configdir}/ksmtp.categories +%{_kf5_debugdir}/ksmtp.categories %files devel %license COPYING.LIB ++++++ ksmtp-18.12.3.tar.xz -> ksmtp-19.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/.gitignore new/ksmtp-19.04.0/.gitignore --- old/ksmtp-18.12.3/.gitignore 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/.gitignore 2019-04-06 22:50:41.000000000 +0200 @@ -16,6 +16,6 @@ Makefile avail random_seed -/build/ +/build*/ CMakeLists.txt.user* *.unc-backup* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/CMakeLists.txt new/ksmtp-19.04.0/CMakeLists.txt --- old/ksmtp-18.12.3/CMakeLists.txt 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/CMakeLists.txt 2019-04-12 02:17:16.000000000 +0200 @@ -1,12 +1,12 @@ -cmake_minimum_required(VERSION 3.0) -set(PIM_VERSION "5.10.3") +cmake_minimum_required(VERSION 3.5) +set(PIM_VERSION "5.11.0") project(KSMTP VERSION ${PIM_VERSION}) # ECM setup -set(KF5_VERSION "5.51.0") +set(KF5_MIN_VERSION "5.56.0") -find_package(ECM ${KF5_VERSION} CONFIG REQUIRED) +find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) include(GenerateExportHeader) @@ -23,7 +23,7 @@ set(KSMTP_LIB_VERSION ${PIM_VERSION}) -set(QT_REQUIRED_VERSION "5.9.0") +set(QT_REQUIRED_VERSION "5.10.0") ecm_setup_version(PROJECT VARIABLE_PREFIX KSMTP VERSION_HEADER ${KSMTP_BINARY_DIR}/ksmtp_version.h PACKAGE_VERSION_FILE ${KSMTP_BINARY_DIR}/KPimSMTPConfigVersion.cmake @@ -34,9 +34,9 @@ ############ Find packages ############ find_package(Qt5Network ${QT_REQUIRED_VERSION} REQUIRED) -find_package(KF5CoreAddons ${KF5_VERSION} CONFIG REQUIRED) -find_package(KF5I18n ${KF5_VERSION} CONFIG REQUIRED) -find_package(KF5KIO ${KF5_VERSION} CONFIG REQUIRED) +find_package(KF5CoreAddons ${KF5_MIN_VERSION} CONFIG REQUIRED) +find_package(KF5I18n ${KF5_MIN_VERSION} CONFIG REQUIRED) +find_package(KF5KIO ${KF5_MIN_VERSION} CONFIG REQUIRED) find_package(Sasl2) set_package_properties(Sasl2 PROPERTIES TYPE REQUIRED) @@ -51,7 +51,13 @@ ) add_definitions(-DTRANSLATION_DOMAIN=\"libksmtp5\") -add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 reevaluate it) +if (${Qt5Widgets_VERSION} STRGREATER "5.13") + MESSAGE(STATUS "Qt version: ${Qt5Widgets_VERSION} DISABLE compile without deprecated methods. bug QTBUG-74665") +else() + add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +endif() +add_definitions(-DQT_NO_FOREACH) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/KPimSMTPConfig.cmake.in new/ksmtp-19.04.0/KPimSMTPConfig.cmake.in --- old/ksmtp-18.12.3/KPimSMTPConfig.cmake.in 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/KPimSMTPConfig.cmake.in 2019-04-06 22:50:41.000000000 +0200 @@ -1,6 +1,6 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(KF5CoreAddons "@KF5_VERSION@") +find_dependency(KF5CoreAddons "@KF5_MIN_VERSION@") include("${CMAKE_CURRENT_LIST_DIR}/KPimSMTPTargets.cmake") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/autotests/fakeserver.cpp new/ksmtp-19.04.0/autotests/fakeserver.cpp --- old/ksmtp-18.12.3/autotests/fakeserver.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/autotests/fakeserver.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "fakeserver.h" @@ -59,11 +59,7 @@ { start(); // this will block until the event queue starts -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) QMetaObject::invokeMethod(this, &FakeServer::started, Qt::BlockingQueuedConnection); -#else - QMetaObject::invokeMethod(this, "started", Qt::BlockingQueuedConnection); -#endif } void FakeServer::dataAvailable() @@ -86,7 +82,7 @@ QMutexLocker locker(&m_mutex); m_clientSockets << m_tcpServer->nextPendingConnection(); - connect(m_clientSockets.last(), SIGNAL(readyRead()), this, SLOT(dataAvailable())); + connect(m_clientSockets.last(), &QIODevice::readyRead, this, &FakeServer::dataAvailable); //m_clientParsers << new KIMAP::ImapStreamParser( m_clientSockets.last(), true ); QVERIFY(m_clientSockets.size() <= m_scenarios.size()); @@ -102,7 +98,7 @@ return; } - connect(m_tcpServer, SIGNAL(newConnection()), this, SLOT(newConnection())); + connect(m_tcpServer, &QTcpServer::newConnection, this, &FakeServer::newConnection); exec(); @@ -166,7 +162,7 @@ { QMutexLocker locker(&m_mutex); - foreach (const QList<QByteArray> &scenario, m_scenarios) { + for (const QList<QByteArray> &scenario : qAsConst(m_scenarios)) { if (!scenario.isEmpty()) { qDebug() << scenario; return false; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/autotests/fakeserver.h new/ksmtp-19.04.0/autotests/fakeserver.h --- old/ksmtp-18.12.3/autotests/fakeserver.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/autotests/fakeserver.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_FAKESERVER_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/autotests/smtptest.cpp new/ksmtp-19.04.0/autotests/smtptest.cpp --- old/ksmtp-18.12.3/autotests/smtptest.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/autotests/smtptest.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "smtptest.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/autotests/smtptest.h new/ksmtp-19.04.0/autotests/smtptest.h --- old/ksmtp-18.12.3/autotests/smtptest.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/autotests/smtptest.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_SMTPTEST_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ar/libksmtp5.po new/ksmtp-19.04.0/po/ar/libksmtp5.po --- old/ksmtp-18.12.3/po/ar/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ar/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-01-28 15:07+0300\n" "Last-Translator: Safa Alfulaij <[email protected]>\n" "Language-Team: Arabic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/bs/libksmtp5.po new/ksmtp-19.04.0/po/bs/libksmtp5.po --- old/ksmtp-18.12.3/po/bs/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/bs/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kde 49i410\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2015-02-16 11:55+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: Bosnian\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ca/libksmtp5.po new/ksmtp-19.04.0/po/ca/libksmtp5.po --- old/ksmtp-18.12.3/po/ca/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ca/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libksmtp5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-16 10:58+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ca@valencia/libksmtp5.po new/ksmtp-19.04.0/po/ca@valencia/libksmtp5.po --- old/ksmtp-18.12.3/po/ca@valencia/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ca@valencia/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libksmtp5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-16 10:58+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -99,3 +99,9 @@ msgstr "" "No s'ha pogut enviar el missatge perquè s'ha excedit la mida màxima permesa " "de %1 bytes. (Mida del missatge: %2 bytes)." + +#~ msgid "Server time out" +#~ msgstr "Temps d'espera pel servidor" + +#~ msgid "Job" +#~ msgstr "Tasca" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/cs/libksmtp5.po new/ksmtp-19.04.0/po/cs/libksmtp5.po --- old/ksmtp-18.12.3/po/cs/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/cs/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-06-15 15:18+0100\n" "Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/de/libksmtp5.po new/ksmtp-19.04.0/po/de/libksmtp5.po --- old/ksmtp-18.12.3/po/de/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/de/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-11-20 08:34+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/en_GB/libksmtp5.po new/ksmtp-19.04.0/po/en_GB/libksmtp5.po --- old/ksmtp-18.12.3/po/en_GB/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/en_GB/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-10-27 17:55+0100\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/es/libksmtp5.po new/ksmtp-19.04.0/po/es/libksmtp5.po --- old/ksmtp-18.12.3/po/es/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/es/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-10-08 22:35+0100\n" "Last-Translator: Javier Vinal <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/et/libksmtp5.po new/ksmtp-19.04.0/po/et/libksmtp5.po --- old/ksmtp-18.12.3/po/et/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/et/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2011-06-24 05:22+0300\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/fi/libksmtp5.po new/ksmtp-19.04.0/po/fi/libksmtp5.po --- old/ksmtp-18.12.3/po/fi/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/fi/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-11-21 17:23+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/fr/libksmtp5.po new/ksmtp-19.04.0/po/fr/libksmtp5.po --- old/ksmtp-18.12.3/po/fr/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/fr/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-17 15:32+0800\n" "Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ga/libksmtp5.po new/ksmtp-19.04.0/po/ga/libksmtp5.po --- old/ksmtp-18.12.3/po/ga/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ga/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2011-12-28 12:28-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/gl/libksmtp5.po new/ksmtp-19.04.0/po/gl/libksmtp5.po --- old/ksmtp-18.12.3/po/gl/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/gl/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-10-21 18:58+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/hu/libksmtp5.po new/ksmtp-19.04.0/po/hu/libksmtp5.po --- old/ksmtp-18.12.3/po/hu/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/hu/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2013-10-27 08:23+0100\n" "Last-Translator: Balázs Úr <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/it/libksmtp5.po new/ksmtp-19.04.0/po/it/libksmtp5.po --- old/ksmtp-18.12.3/po/it/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/it/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-22 22:29+0100\n" "Last-Translator: Vincenzo Reale <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ja/libksmtp5.po new/ksmtp-19.04.0/po/ja/libksmtp5.po --- old/ksmtp-18.12.3/po/ja/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ja/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2011-06-14 23:23-0700\n" "Last-Translator: Japanese KDE translation team <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/km/libksmtp5.po new/ksmtp-19.04.0/po/km/libksmtp5.po --- old/ksmtp-18.12.3/po/km/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/km/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2011-06-28 07:53+0700\n" "Last-Translator: Khoem Sokhem <[email protected]>\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ko/libksmtp5.po new/ksmtp-19.04.0/po/ko/libksmtp5.po --- old/ksmtp-18.12.3/po/ko/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ko/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-08-15 12:31+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/lt/libksmtp5.po new/ksmtp-19.04.0/po/lt/libksmtp5.po --- old/ksmtp-18.12.3/po/lt/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/lt/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2011-10-04 23:13+0300\n" "Last-Translator: Liudas Ališauskas <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/mr/libksmtp5.po new/ksmtp-19.04.0/po/mr/libksmtp5.po --- old/ksmtp-18.12.3/po/mr/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/mr/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2013-04-02 13:56+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/nds/libksmtp5.po new/ksmtp-19.04.0/po/nds/libksmtp5.po --- old/ksmtp-18.12.3/po/nds/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/nds/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2011-06-15 06:14+0200\n" "Last-Translator: Manfred Wiese <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/nl/libksmtp5.po new/ksmtp-19.04.0/po/nl/libksmtp5.po --- old/ksmtp-18.12.3/po/nl/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/nl/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-17 10:12+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/nn/libksmtp5.po new/ksmtp-19.04.0/po/nn/libksmtp5.po --- old/ksmtp-18.12.3/po/nn/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/nn/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2016-11-28 19:47+0100\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/pl/libksmtp5.po new/ksmtp-19.04.0/po/pl/libksmtp5.po --- old/ksmtp-18.12.3/po/pl/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/pl/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-11-04 08:29+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/pt/libksmtp5.po new/ksmtp-19.04.0/po/pt/libksmtp5.po --- old/ksmtp-18.12.3/po/pt/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/pt/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-16 11:53+0100\n" "Last-Translator: José Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/pt_BR/libksmtp5.po new/ksmtp-19.04.0/po/pt_BR/libksmtp5.po --- old/ksmtp-18.12.3/po/pt_BR/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/pt_BR/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libksmtp5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2019-02-20 11:13-0300\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ru/libksmtp5.po new/ksmtp-19.04.0/po/ru/libksmtp5.po --- old/ksmtp-18.12.3/po/ru/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ru/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-07-16 22:04+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/sk/libksmtp5.po new/ksmtp-19.04.0/po/sk/libksmtp5.po --- old/ksmtp-18.12.3/po/sk/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/sk/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2017-08-02 21:43+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/sl/libksmtp5.po new/ksmtp-19.04.0/po/sl/libksmtp5.po --- old/ksmtp-18.12.3/po/sl/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/sl/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2017-07-27 20:07+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/sr/libksmtp5.po new/ksmtp-19.04.0/po/sr/libksmtp5.po --- old/ksmtp-18.12.3/po/sr/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/sr/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: libksmtp5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2017-08-05 19:10+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/sv/libksmtp5.po new/ksmtp-19.04.0/po/sv/libksmtp5.po --- old/ksmtp-18.12.3/po/sv/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/sv/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-18 20:16+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/tr/libksmtp5.po new/ksmtp-19.04.0/po/tr/libksmtp5.po --- old/ksmtp-18.12.3/po/tr/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/tr/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libksmtp5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2017-08-17 08:31+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/ug/libksmtp5.po new/ksmtp-19.04.0/po/ug/libksmtp5.po --- old/ksmtp-18.12.3/po/ug/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/ug/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/uk/libksmtp5.po new/ksmtp-19.04.0/po/uk/libksmtp5.po --- old/ksmtp-18.12.3/po/uk/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/uk/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -1,5 +1,5 @@ # Translation of libksmtp5.po to Ukrainian -# Copyright (C) 2018 This_file_is_part_of_KDE +# Copyright (C) 2014-2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libksmtp5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: 2018-09-17 08:53+0300\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/zh_CN/libksmtp5.po new/ksmtp-19.04.0/po/zh_CN/libksmtp5.po --- old/ksmtp-18.12.3/po/zh_CN/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/zh_CN/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" -"PO-Revision-Date: 2019-02-20 23:29\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" +"PO-Revision-Date: 2019-04-09 18:52\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/po/zh_TW/libksmtp5.po new/ksmtp-19.04.0/po/zh_TW/libksmtp5.po --- old/ksmtp-18.12.3/po/zh_TW/libksmtp5.po 2019-03-05 01:27:13.000000000 +0100 +++ new/ksmtp-19.04.0/po/zh_TW/libksmtp5.po 2019-04-12 02:17:16.000000000 +0200 @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the ksmtp package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # msgid "" msgstr "" -"Project-Id-Version: libksmtp5\n" +"Project-Id-Version: ksmtp\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:58+0100\n" +"POT-Creation-Date: 2018-09-16 03:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/job.cpp new/ksmtp-19.04.0/src/job.cpp --- old/ksmtp-18.12.3/src/job.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/job.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "job.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/job.h new/ksmtp-19.04.0/src/job.h --- old/ksmtp-18.12.3/src/job.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/job.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_JOB_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/job_p.h new/ksmtp-19.04.0/src/job_p.h --- old/ksmtp-18.12.3/src/job_p.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/job_p.h 2019-04-06 22:50:41.000000000 +0200 @@ -13,7 +13,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_JOB_P_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/loginjob.cpp new/ksmtp-19.04.0/src/loginjob.cpp --- old/ksmtp-18.12.3/src/loginjob.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/loginjob.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "loginjob.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/loginjob.h new/ksmtp-19.04.0/src/loginjob.h --- old/ksmtp-18.12.3/src/loginjob.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/loginjob.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_LOGINJOB_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/sendjob.cpp new/ksmtp-19.04.0/src/sendjob.cpp --- old/ksmtp-18.12.3/src/sendjob.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/sendjob.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "sendjob.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/sendjob.h new/ksmtp-19.04.0/src/sendjob.h --- old/ksmtp-18.12.3/src/sendjob.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/sendjob.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_SENDJOB_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/serverresponse_p.h new/ksmtp-19.04.0/src/serverresponse_p.h --- old/ksmtp-18.12.3/src/serverresponse_p.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/serverresponse_p.h 2019-04-06 22:50:41.000000000 +0200 @@ -13,7 +13,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_SERVERRESPONSE_P_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/session.cpp new/ksmtp-19.04.0/src/session.cpp --- old/ksmtp-18.12.3/src/session.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/session.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "session.h" @@ -263,14 +263,9 @@ void SessionPrivate::sendData(const QByteArray &data) { -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) QMetaObject::invokeMethod(m_thread, [this, data] { m_thread->sendData(data); }, Qt::QueuedConnection); -#else - QMetaObject::invokeMethod(m_thread, "sendData", - Qt::QueuedConnection, Q_ARG(QByteArray, data)); -#endif } void SessionPrivate::responseReceived(const ServerResponse &r) @@ -357,14 +352,9 @@ void SessionPrivate::startSsl(KTcpSocket::SslVersion version) { -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) QMetaObject::invokeMethod(m_thread, [this, version] { m_thread->startSsl(version); }, Qt::QueuedConnection); -#else - QMetaObject::invokeMethod(m_thread, "startSsl", Qt::QueuedConnection, - Q_ARG(KTcpSocket::SslVersion, version)); -#endif } KTcpSocket::SslVersion SessionPrivate::negotiatedEncryption() const diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/session.h new/ksmtp-19.04.0/src/session.h --- old/ksmtp-18.12.3/src/session.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/session.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_SESSION_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/session_p.h new/ksmtp-19.04.0/src/session_p.h --- old/ksmtp-18.12.3/src/session_p.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/session_p.h 2019-04-06 22:50:41.000000000 +0200 @@ -13,7 +13,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_SESSION_P_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/sessionthread.cpp new/ksmtp-19.04.0/src/sessionthread.cpp --- old/ksmtp-18.12.3/src/sessionthread.cpp 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/sessionthread.cpp 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #include "sessionthread_p.h" @@ -245,14 +245,9 @@ void SessionThread::handleSslErrorResponse(bool ignoreError) { -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) QMetaObject::invokeMethod(this, [this, ignoreError] { doHandleSslErrorResponse(ignoreError); }, Qt::QueuedConnection); -#else - QMetaObject::invokeMethod(this, "doHandleSslErrorResponse", Qt::QueuedConnection, - Q_ARG(bool, ignoreError)); -#endif } void SessionThread::doHandleSslErrorResponse(bool ignoreError) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ksmtp-18.12.3/src/sessionthread_p.h new/ksmtp-19.04.0/src/sessionthread_p.h --- old/ksmtp-18.12.3/src/sessionthread_p.h 2019-02-08 07:54:17.000000000 +0100 +++ new/ksmtp-19.04.0/src/sessionthread_p.h 2019-04-06 22:50:41.000000000 +0200 @@ -14,7 +14,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see <http://www.gnu.org/licenses/>. + License along with this library. If not, see <https://www.gnu.org/licenses/>. */ #ifndef KSMTP_SESSIONTHREAD_P_H
