diff --git a/kbibtex-0.8.1.tar.xz b/kbibtex-0.8.1.tar.xz deleted file mode 100644 index 1d54839..0000000 --- a/kbibtex-0.8.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6511a912925c628b7d175b0ef98ba98b1b8eb61e457d621ea0963d29b1fd21d2 -size 4060484 diff --git a/kbibtex-0.8.2.tar.xz b/kbibtex-0.8.2.tar.xz new file mode 100644 index 0000000..5bf2c8a --- /dev/null +++ b/kbibtex-0.8.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081c61c4bb55cf3c88d59877684956df7a235fe80a40a37af92224cdf5d677d6 +size 4065904 diff --git a/kbibtex.changes b/kbibtex.changes index 9ab090b..1f64f16 100644 --- a/kbibtex.changes +++ b/kbibtex.changes @@ -1,3 +1,28 @@ +------------------------------------------------------------------- +Sat Jan 5 08:19:43 UTC 2019 - Cor Blom + +- Update to version 0.8.2: + * kde#388892: Formatting error when saving file ( switching " and + } ) + * kde#394659: Crash after compilation + * kde#396343: When saving the file, I am always warned that file + has changed in disk + * kde#396598: Bibliography system options contains duplicates + * kde#397027: ScienceDirect search broken + * kde#397604: Untranslated strings from bibtexfields.cpp and + bibtexentries.cpp + * kde#398136: KBibTeX crashes when editing element + * kde#401470: Don't remove leading whitespace in macros + * Using official APIs for IEEE Xplore and ScienceDirect + * Fixing resource leakage as identified by Coverity Scan: + CID 287670, 287669 + * Fixing issues as identified by clazy + * Migrating from HTTP to HTTPS protocol in various places + * In encoder classes, migrating away from raw char and char* to Qt + classes + * Various smaller fixes +- Removed now included kde398136.patch + ------------------------------------------------------------------- Sun Nov 18 16:45:13 UTC 2018 - Fabian Vogt diff --git a/kbibtex.spec b/kbibtex.spec index 140a102..29b9360 100644 --- a/kbibtex.spec +++ b/kbibtex.spec @@ -1,7 +1,7 @@ # # spec file for package kbibtex # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 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 @@ -19,15 +19,13 @@ %bcond_without lang Name: kbibtex -Version: 0.8.1 +Version: 0.8.2 Release: 0 Summary: The BibTeX (Latex) bibliography manager by KDE License: GPL-2.0-only Group: Productivity/Publishing/TeX/Utilities URL: https://userbase.kde.org/KBibTeX/ Source: http://download.kde.org/stable/KBibTeX/%{version}/%{name}-%{version}.tar.xz -# PATCH-FIX-UPSTREAM: backported fix for kde#398136 -Patch1: kde398136.patch BuildRequires: extra-cmake-modules BuildRequires: kcompletion-devel BuildRequires: kcoreaddons-devel @@ -83,7 +81,7 @@ This package contains the devel files for %{name}. %lang_package %prep -%autosetup -p1 -n %{name}-%{version} +%autosetup -n %{name}-%{version} %build %cmake_kf5 -d build diff --git a/kde398136.patch b/kde398136.patch deleted file mode 100644 index 5cc045f..0000000 --- a/kde398136.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -ur a/src/data/entry.cpp b/src/data/entry.cpp ---- a/src/data/entry.cpp 2018-06-21 22:00:30.000000000 +0200 -+++ b/src/data/entry.cpp 2018-09-12 00:17:36.471388501 +0200 -@@ -169,9 +169,11 @@ - int Entry::remove(const QString &key) - { - const QString lcKey = key.toLower(); -- for (Entry::ConstIterator it = constBegin(); it != constEnd(); ++it) -- if (it.key().toLower() == lcKey) -- return QMap::remove(it.key()); -+ for (Entry::Iterator it = begin(); it != end(); ++it) -+ if (it.key().toLower() == lcKey) { -+ QMap::erase(it); -+ return 1; -+ } - - return QMap::remove(key); - }