bumped version

This commit is contained in:
Jean-Francois Dockes 2020-12-27 10:21:54 +01:00
parent 1d6b5c2dbc
commit 9a4af697ee
7 changed files with 31 additions and 9 deletions

View File

@ -1,11 +1,18 @@
recoll (1.28.0pre4-1~ppaPPAVERS~SERIES1) SERIES; urgency=low recoll (1.28.0-1~ppaPPAVERS~SERIES1) SERIES; urgency=low
* Add preferences options to hide most GUI elements except the result * GUI: add preferences options to hide most GUI elements except the result
area and the simple search entry. area and the simple search entry.
* GUI: reorganized menus.
* GUI: add preference for separate indexing log file.
* Fix CJK indexing in specific case of encountering numeric after CJK * Fix CJK indexing in specific case of encountering numeric after CJK
punctuation. punctuation.
* Use py7zr in preference to pylzma for 7z archive indexing
-- Jean-Francois Dockes <jf@dockes.org> Wed, 25 Nov 2020 17:57:00 +0100 * Increase query slice size from 50 to 100 for better performance.
* Process emacs org-mode files.
* Fix bug in mail header processing.
* Python extension: improve the Python Doc object.
-- Jean-Francois Dockes <jf@dockes.org> Sun, 27 Dec 2020 09:59:00 +0100
recoll (1.27.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low recoll (1.27.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low

View File

@ -1,3 +1,17 @@
kio-recoll (1.28.0-1~ppaPPAVERS~SERIES1) SERIES; urgency=low
* GUI: add preferences options to hide most GUI elements except the result
area and the simple search entry.
* GUI: reorganized menus.
* GUI: add preference for separate indexing log file.
* Fix CJK indexing in specific case of encountering numeric after CJK
punctuation.
* Use py7zr in preference to pylzma for 7z archive indexing
* Increase query slice size from 50 to 100 for better performance.
* Process emacs org-mode files.
* Fix bug in mail header processing.
* Python extension: improve the Python Doc object.
kio-recoll (1.27.10-1~ppaPPAVERS~SERIES1) SERIES; urgency=low kio-recoll (1.27.10-1~ppaPPAVERS~SERIES1) SERIES; urgency=low
* Fix real-time indexer not working when topdirs was / * Fix real-time indexer not working when topdirs was /

View File

@ -8,7 +8,7 @@
Summary: Desktop full text search tool with Qt GUI Summary: Desktop full text search tool with Qt GUI
Name: recoll Name: recoll
Version: 1.27.8 Version: 1.28.0
Release: 2%{?dist} Release: 2%{?dist}
Group: Applications/Databases Group: Applications/Databases
License: GPLv2+ License: GPLv2+

View File

@ -3,7 +3,7 @@
Summary: Desktop full text search tool with Qt GUI Summary: Desktop full text search tool with Qt GUI
Name: recoll Name: recoll
Version: 1.27.8 Version: 1.28.0
Release: 2%{?dist} Release: 2%{?dist}
Group: Applications/Databases Group: Applications/Databases
License: GPLv2+ License: GPLv2+

View File

@ -543,6 +543,7 @@ python/pychm/setup.py.in \
python/recoll/pyrclextract.cpp \ python/recoll/pyrclextract.cpp \
python/recoll/pyrecoll.cpp \ python/recoll/pyrecoll.cpp \
python/recoll/pyrecoll.h \ python/recoll/pyrecoll.h \
python/recoll/pyresultstore.cpp \
python/recoll/recoll/__init__.py \ python/recoll/recoll/__init__.py \
python/recoll/recoll/conftree.py \ python/recoll/recoll/conftree.py \
python/recoll/recoll/rclconfig.py \ python/recoll/recoll/rclconfig.py \

View File

@ -1 +1 @@
1.28.0pre4 1.28.0

View File

@ -121,7 +121,7 @@
#define PACKAGE_NAME "Recoll" #define PACKAGE_NAME "Recoll"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "Recoll 1.27.9" #define PACKAGE_STRING "Recoll 1.28.0"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "recoll" #define PACKAGE_TARNAME "recoll"
@ -130,7 +130,7 @@
#define PACKAGE_URL "" #define PACKAGE_URL ""
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "1.27.9" #define PACKAGE_VERSION "1.28.0"
/* putenv parameter is const */ /* putenv parameter is const */
/* #undef PUTENV_ARG_CONST */ /* #undef PUTENV_ARG_CONST */