diff --git a/packaging/debian/buildppa.sh b/packaging/debian/buildppa.sh index 98527bfd..2f4facef 100644 --- a/packaging/debian/buildppa.sh +++ b/packaging/debian/buildppa.sh @@ -6,10 +6,10 @@ PPA_KEYID=D38B9201 -RCLVERS=1.25.16~pre3 +RCLVERS=1.25.16 SCOPEVERS=1.20.2.4 GSSPVERS=1.0.0 -PPAVERS=5 +PPAVERS=1 # RCLSRC=/y/home/dockes/projets/fulltext/recoll/src @@ -22,7 +22,7 @@ case $RCLVERS in 1.14*) PPANAME=recoll-ppa;; *) PPANAME=recoll15-ppa;; esac -PPANAME=recollexp-ppa +#PPANAME=recollexp-ppa echo "PPA: $PPANAME. Type CR if Ok, else ^C" read rep diff --git a/packaging/debian/debian/changelog b/packaging/debian/debian/changelog index 4e41194c..9c7983a3 100644 --- a/packaging/debian/debian/changelog +++ b/packaging/debian/debian/changelog @@ -1,7 +1,18 @@ -recoll (1.25.16~pre3-1~ppaPPAVERS~SERIES1) SERIES; urgency=low +recoll (1.25.16-1~ppaPPAVERS~SERIES1) SERIES; urgency=low - * Small improvements in synonyms handling - + * Small improvements in synonyms handling, significant for big synonym + files. + * Raw indexes: fix test for capitals in user input in a few marginal + cases. + * ppt-dump: catch exceptions to avoid system reports. + * djvu: fix output from non-ASCII files + * GUI: fix highlighting in table mode + * GUI: add "Open" button to preview window + * GUI: fix crash when reusing a result list after changing preferences + (and in other cases too maybe). + * Python: fix memory leak in Python module. + * Python: properly manage querying multiple separate indexes. + -- Jean-Francois Dockes Wed, 22 May 2019 09:13:00 +0200 recoll (1.25.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low diff --git a/packaging/debian/debiankio/changelog b/packaging/debian/debiankio/changelog index e68aba72..6ec7fc7b 100644 --- a/packaging/debian/debiankio/changelog +++ b/packaging/debian/debiankio/changelog @@ -1,3 +1,10 @@ +kio-recoll (1.25.16-1~ppaPPAVERS~SERIES1) SERIES; urgency=low + + * New release 1.25.16 + * Keep kio in sync + + -- Jean-Francois Dockes Wed, 22 May 2019 14:52:00 +0200 + kio-recoll (1.25.12-1~ppaPPAVERS~SERIES1) SERIES; urgency=low * New release 1.25.12 diff --git a/src/VERSION b/src/VERSION index caf7ccea..33f0e23c 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -1.25.16~pre3 +1.25.16 diff --git a/src/common/syngroups.cpp b/src/common/syngroups.cpp index 97635b43..226ceaf1 100644 --- a/src/common/syngroups.cpp +++ b/src/common/syngroups.cpp @@ -184,7 +184,7 @@ bool SynGroups::setfile(const string& fn) for (const auto& word : words) { m->terms[word] = m->groups.size()-1; } - LOGDEB0("SynGroups::setfile: group: [" << + LOGDEB1("SynGroups::setfile: group: [" << stringsToString(m->groups.back()) << "]\n"); } LOGDEB("SynGroups::setfile: got " << m->groups.size() <<