diff --git a/packaging/debian/debian/changelog b/packaging/debian/debian/changelog index 7e2f1e89..a35dc276 100644 --- a/packaging/debian/debian/changelog +++ b/packaging/debian/debian/changelog @@ -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. + * GUI: reorganized menus. + * GUI: add preference for separate indexing log file. * Fix CJK indexing in specific case of encountering numeric after CJK punctuation. - - -- Jean-Francois Dockes Wed, 25 Nov 2020 17:57:00 +0100 + * 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. + + -- Jean-Francois Dockes Sun, 27 Dec 2020 09:59:00 +0100 recoll (1.27.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low diff --git a/packaging/debian/debiankio/changelog b/packaging/debian/debiankio/changelog index 13d96460..8b3d0156 100644 --- a/packaging/debian/debiankio/changelog +++ b/packaging/debian/debiankio/changelog @@ -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 * Fix real-time indexer not working when topdirs was / diff --git a/packaging/rpm/recoll-centos8.spec b/packaging/rpm/recoll-centos8.spec index 02870ba0..0ce34d65 100644 --- a/packaging/rpm/recoll-centos8.spec +++ b/packaging/rpm/recoll-centos8.spec @@ -8,7 +8,7 @@ Summary: Desktop full text search tool with Qt GUI Name: recoll -Version: 1.27.8 +Version: 1.28.0 Release: 2%{?dist} Group: Applications/Databases License: GPLv2+ diff --git a/packaging/rpm/recoll.spec b/packaging/rpm/recoll.spec index 072f44d0..4541655d 100644 --- a/packaging/rpm/recoll.spec +++ b/packaging/rpm/recoll.spec @@ -3,7 +3,7 @@ Summary: Desktop full text search tool with Qt GUI Name: recoll -Version: 1.27.8 +Version: 1.28.0 Release: 2%{?dist} Group: Applications/Databases License: GPLv2+ diff --git a/src/Makefile.am b/src/Makefile.am index e0a6cf86..e851dfa4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -543,6 +543,7 @@ python/pychm/setup.py.in \ python/recoll/pyrclextract.cpp \ python/recoll/pyrecoll.cpp \ python/recoll/pyrecoll.h \ +python/recoll/pyresultstore.cpp \ python/recoll/recoll/__init__.py \ python/recoll/recoll/conftree.py \ python/recoll/recoll/rclconfig.py \ diff --git a/src/VERSION b/src/VERSION index f57df735..cfc73071 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -1.28.0pre4 +1.28.0 diff --git a/src/common/autoconfig-win.h b/src/common/autoconfig-win.h index 40a5339f..d7cf6102 100644 --- a/src/common/autoconfig-win.h +++ b/src/common/autoconfig-win.h @@ -121,7 +121,7 @@ #define PACKAGE_NAME "Recoll" /* 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 PACKAGE_TARNAME "recoll" @@ -130,7 +130,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.27.9" +#define PACKAGE_VERSION "1.28.0" /* putenv parameter is const */ /* #undef PUTENV_ARG_CONST */