Hello community, here is the log from the commit of package akonadi-notes for openSUSE:Factory checked in at 2020-06-14 18:17:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/akonadi-notes (Old) and /work/SRC/openSUSE:Factory/.akonadi-notes.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "akonadi-notes" Sun Jun 14 18:17:31 2020 rev:47 rq:813571 version:20.04.2 Changes: -------- --- /work/SRC/openSUSE:Factory/akonadi-notes/akonadi-notes.changes 2020-05-20 18:38:53.792411041 +0200 +++ /work/SRC/openSUSE:Factory/.akonadi-notes.new.3606/akonadi-notes.changes 2020-06-14 18:17:34.019206763 +0200 @@ -1,0 +2,10 @@ +Tue Jun 9 12:13:53 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 20.04.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/releases/2020-06-apps-update +- Changes since 20.04.1: + * [NoteMessageWrapper] Use unicode also for main body + +------------------------------------------------------------------- Old: ---- akonadi-notes-20.04.1.tar.xz akonadi-notes-20.04.1.tar.xz.sig New: ---- akonadi-notes-20.04.2.tar.xz akonadi-notes-20.04.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ akonadi-notes.spec ++++++ --- /var/tmp/diff_new_pack.kB0qfx/_old 2020-06-14 18:17:34.699208508 +0200 +++ /var/tmp/diff_new_pack.kB0qfx/_new 2020-06-14 18:17:34.699208508 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: akonadi-notes -Version: 20.04.1 +Version: 20.04.2 Release: 0 Summary: Library to implement management of notes in Akonadi License: LGPL-2.1-or-later ++++++ akonadi-notes-20.04.1.tar.xz -> akonadi-notes-20.04.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/akonadi-notes-20.04.1/CMakeLists.txt new/akonadi-notes-20.04.2/CMakeLists.txt --- old/akonadi-notes-20.04.1/CMakeLists.txt 2020-05-12 03:25:00.000000000 +0200 +++ new/akonadi-notes-20.04.2/CMakeLists.txt 2020-06-09 02:44:51.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -set(PIM_VERSION "5.14.1") +set(PIM_VERSION "5.14.2") project(Akonadi-Notes VERSION ${PIM_VERSION}) @@ -24,8 +24,8 @@ set(QT_REQUIRED_VERSION "5.12.0") set(AKONADI_NOTES_VERSION ${PIM_VERSION}) -set(KMIMELIB_VERSION "5.14.1") -set(AKONADI_VERSION "5.14.1") +set(KMIMELIB_VERSION "5.14.2") +set(AKONADI_VERSION "5.14.2") ecm_setup_version(PROJECT VARIABLE_PREFIX AKONADINOTES VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/akonadi-notes_version.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/akonadi-notes-20.04.1/src/noteutils.cpp new/akonadi-notes-20.04.2/src/noteutils.cpp --- old/akonadi-notes-20.04.1/src/noteutils.cpp 2020-04-30 07:09:54.000000000 +0200 +++ new/akonadi-notes-20.04.2/src/noteutils.cpp 2020-05-20 21:03:36.000000000 +0200 @@ -425,6 +425,7 @@ msg->addContent(d->createCustomPart()); } + msg->mainBodyPart()->contentType(true)->setCharset(ENCODING); msg->mainBodyPart()->fromUnicodeString(text); msg->mainBodyPart()->contentType(true)->setMimeType(d->textFormat == Qt::RichText ? "text/html" : "text/plain");