Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kraft for openSUSE:Factory checked in at 2021-03-03 18:35:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kraft (Old) and /work/SRC/openSUSE:Factory/.kraft.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kraft" Wed Mar 3 18:35:58 2021 rev:14 rq:876553 version:0.96 Changes: -------- --- /work/SRC/openSUSE:Factory/kraft/kraft.changes 2020-09-22 21:07:39.687744596 +0200 +++ /work/SRC/openSUSE:Factory/.kraft.new.2378/kraft.changes 2021-03-03 18:36:09.415426304 +0100 @@ -1,0 +2,21 @@ +Sun Feb 28 10:01:42 UTC 2021 - Klaas Freitag <[email protected]> + +- Add patch keepemptyparts.patch to fix build with older qt versions. + +------------------------------------------------------------------- +Sat Feb 27 20:59:13 UTC 2021 - Klaas Freitag <[email protected]> + +- Update to upstream version 0.96 + * Found new MIT licensed icons to avoid uncertainess with CC license. + * Allow to use the "add new" button in the doc editor to add new + catalog templates. It presets the correct chapter. + + * Fix: Use the xmlArchivePath correctly (#80) + * Fix: Handling of Cancel button in template to doc dialog. + * Fix: Convert newlines in the items to <br> for the weasyprint doc + generation. + * Fix: In Followup document: If the standard text for pre and post + text of the target document type is empty, the one from the + source document is copied over instead. (#91) + +------------------------------------------------------------------- Old: ---- kraft-0.95.tar.xz New: ---- keepemptyparts.patch kraft-0.96.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kraft.spec ++++++ --- /var/tmp/diff_new_pack.QRR4VB/_old 2021-03-03 18:36:09.971426702 +0100 +++ /var/tmp/diff_new_pack.QRR4VB/_new 2021-03-03 18:36:09.975426705 +0100 @@ -1,7 +1,7 @@ # # spec file for package kraft # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2007-2011 Klaas Freitag <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -20,7 +20,7 @@ %bcond_without akonadi %bcond_with qpdfview Name: kraft -Version: 0.95 +Version: 0.96 Release: 0 Summary: KDE software to manage office documents in the office License: GPL-2.0-or-later AND LGPL-2.1-or-later @@ -53,6 +53,8 @@ # PATCH-FEATURE-UPSTREAM use_qpdfview.path Open PDFs in qpdfview in appimages Patch0: use_qpdfview.patch %endif +# PATCH-FIX-UPSTREAM keepemptyparts.patch to use deprecated type in Qt +Patch1: keepemptyparts.patch %if %{with akonadi} BuildRequires: cmake(KF5AkonadiContact) %endif @@ -71,6 +73,7 @@ %if %{with qpdfview} %patch0 -p1 %endif +%patch1 -p1 %build ++++++ keepemptyparts.patch ++++++ From: Klaas Freitag <[email protected]> Subject: Use the correct namespace that is accepted with older Qt versions. diff --git a/src/archdocposition.cpp b/src/archdocposition.cpp index 9fc9ff2..ed7e1fb 100644 --- a/src/archdocposition.cpp +++ b/src/archdocposition.cpp @@ -98,7 +98,7 @@ QString ArchDocPosition::htmlText(const QString& paraStyle) const if ( style.isEmpty() ) style = QStringLiteral("text"); // Keep empty parts allows multiple newlines here - const QStringList li = mText.toHtmlEscaped().split( "\n", Qt::KeepEmptyParts ); + const QStringList li = mText.toHtmlEscaped().split( "\n", QString::KeepEmptyParts ); re = li.join("<br/>"); ++++++ kraft-0.95.tar.xz -> kraft-0.96.tar.xz ++++++ ++++ 2706 lines of diff (skipped)
