commit mailcommon for openSUSE:Factory
Hello community, here is the log from the commit of package mailcommon for openSUSE:Factory checked in at 2017-01-25 23:11:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mailcommon (Old) and /work/SRC/openSUSE:Factory/.mailcommon.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "mailcommon" Changes: -------- --- /work/SRC/openSUSE:Factory/mailcommon/mailcommon.changes 2016-12-17 10:55:58.890172609 +0100 +++ /work/SRC/openSUSE:Factory/.mailcommon.new/mailcommon.changes 2017-01-25 23:11:08.453118659 +0100 @@ -1,0 +2,7 @@ +Sat Jan 14 09:06:30 UTC 2017 - lbeltrame@kde.org + +- - Update to KDE Applications 16.12.1 + * KDE Applications 16.12.1 + * https://www.kde.org/announcements/announce-applications-16.12.1.php + +------------------------------------------------------------------- Old: ---- mailcommon-16.12.0.tar.xz New: ---- mailcommon-16.12.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mailcommon.spec ++++++ --- /var/tmp/diff_new_pack.ALPJvX/_old 2017-01-25 23:11:08.925047455 +0100 +++ /var/tmp/diff_new_pack.ALPJvX/_new 2017-01-25 23:11:08.925047455 +0100 @@ -1,7 +1,7 @@ # # spec file for package mailcommon # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,10 +17,10 @@ Name: mailcommon -Version: 16.12.0 +Version: 16.12.1 Release: 0 %define kf5_version 5.26.0 -# Latest stable Applications (e.g. 16.08 in KA, but 16.12.0 in KUA) +# Latest stable Applications (e.g. 16.08 in KA, but 16.12.1 in KUA) %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} Summary: Base KDE PIM library for mail-handling applications License: GPL-2.0 and LGPL-2.1+ ++++++ mailcommon-16.12.0.tar.xz -> mailcommon-16.12.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailcommon-16.12.0/CMakeLists.txt new/mailcommon-16.12.1/CMakeLists.txt --- old/mailcommon-16.12.0/CMakeLists.txt 2016-12-08 07:01:50.000000000 +0100 +++ new/mailcommon-16.12.1/CMakeLists.txt 2016-12-27 08:19:11.000000000 +0100 @@ -18,19 +18,19 @@ include(ECMQtDeclareLoggingCategory) include(ECMAddTests) -set(PIM_VERSION "5.4.0") +set(PIM_VERSION "5.4.1") set(MAILCOMMON_LIB_VERSION ${PIM_VERSION}) -set(AKONADIMIME_LIB_VERSION "5.4.0") -set(MESSAGELIB_LIB_VERSION "5.4.0") +set(AKONADIMIME_LIB_VERSION "5.4.1") +set(MESSAGELIB_LIB_VERSION "5.4.1") set(QT_REQUIRED_VERSION "5.6.0") -set(KMIME_LIB_VERSION "5.4.0") -set(KMAILTRANSPORT_LIB_VERSION "5.4.0") -set(KLDAP_LIB_VERSION "5.4.0") -set(MAILIMPORTER_LIB_VERSION "5.4.0") -set(LIBKDEPIM_LIB_VERSION "5.4.0") -set(PIMCOMMON_LIB_VERSION "5.4.0") +set(KMIME_LIB_VERSION "5.4.1") +set(KMAILTRANSPORT_LIB_VERSION "5.4.1") +set(KLDAP_LIB_VERSION "5.4.1") +set(MAILIMPORTER_LIB_VERSION "5.4.1") +set(LIBKDEPIM_LIB_VERSION "5.4.1") +set(PIMCOMMON_LIB_VERSION "5.4.1") -set(AKONADI_VERSION "5.4.0") +set(AKONADI_VERSION "5.4.1") find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets DBus Test Xml) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailcommon-16.12.0/src/widgets/favoritecollectionwidget.cpp new/mailcommon-16.12.1/src/widgets/favoritecollectionwidget.cpp --- old/mailcommon-16.12.0/src/widgets/favoritecollectionwidget.cpp 2016-12-08 07:01:50.000000000 +0100 +++ new/mailcommon-16.12.1/src/widgets/favoritecollectionwidget.cpp 2016-12-27 08:19:11.000000000 +0100 @@ -30,6 +30,7 @@ #include <QPainter> #include <QFontDatabase> +#include <QMouseEvent> using namespace MailCommon; @@ -68,6 +69,14 @@ delete d; } +void FavoriteCollectionWidget::mousePressEvent(QMouseEvent *e) +{ + const bool buttonPressedIsMiddle = (e->button() == Qt::MidButton); + Q_EMIT prefereCreateNewTab(buttonPressedIsMiddle); + Akonadi::EntityListView::mousePressEvent(e); +} + + void FavoriteCollectionWidget::updateMode() { switch (viewMode()) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailcommon-16.12.0/src/widgets/favoritecollectionwidget.h new/mailcommon-16.12.1/src/widgets/favoritecollectionwidget.h --- old/mailcommon-16.12.0/src/widgets/favoritecollectionwidget.h 2016-12-08 07:01:50.000000000 +0100 +++ new/mailcommon-16.12.1/src/widgets/favoritecollectionwidget.h 2016-12-27 08:19:11.000000000 +0100 @@ -50,6 +50,10 @@ protected: void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE; + void mousePressEvent(QMouseEvent *e) Q_DECL_OVERRIDE; +Q_SIGNALS: + void prefereCreateNewTab(bool); + private: void createMenu(KActionCollection *ac); class Private;
participants (1)
-
root@hilbertn.suse.de