diff --git a/website/BUGS.html b/website/BUGS.html
index 3caf3b8d..56bb3e6d 100644
--- a/website/BUGS.html
+++ b/website/BUGS.html
@@ -49,11 +49,21 @@
use the standalone recollindex program instead of the GUI
thread.
+
Real time indexer: uncontrolled concurrent access to
+ the global configuration can cause a startup crash (mostly of
+ big file trees because of timing issues).
+ Sorting by document and file size in the result table does
+ not work.
+
+ Email messages for which there would be an error indexing
+ an attachment would not be indexed at all.
+ Text files bigger than 2 GB can not be indexed.
After an upgrade, the recoll GUI sometimes crashes on
startup. This is fixed by removing (back it up just in case)
~/.config/Recoll.org/recoll.conf, the QSettings storage for
recoll.
+ Compressed man pages could not be previewed.
Performing a full index with release 1.11 or newer, over a
version created with a much older recoll release may
diff --git a/website/CHANGES.html b/website/CHANGES.html
index c3979428..f79ae6f8 100644
--- a/website/CHANGES.html
+++ b/website/CHANGES.html
@@ -32,7 +32,9 @@
Recoll journal of user-visible changes
Newer releases are described in their release notes document:
- 1.15
+
+ (future)1.16
+ 1.15
1.14.4
diff --git a/website/release-1.16.html b/website/release-1.16.html
index 7fcd466b..f308641a 100644
--- a/website/release-1.16.html
+++ b/website/release-1.16.html
@@ -40,14 +40,14 @@
Caveats
- Installing over an older version: 1.16 snapshots are
- fully compatible with 1.15 indexes for now. Perform a full index
- pass if installing over an older version. The simplest way to do
- this is to quit all recoll programs and just delete the index
- directory
- (rm -rf ~/.recoll/xapiandb).
- recollindex -z
- will do the same in most cases.
+ Installing over an older version: 1.16 is
+ mostly compatible with 1.15 indexes (except for a few
+ differences for really weird terms). Perform a full index pass
+ if installing over an older version. The simplest way to do
+ this is to quit all recoll programs and just delete the index
+ directory
+ (rm -rf ~/.recoll/xapiandb). recollindex -z
+ will do the same in most cases.
Changes
@@ -56,20 +56,55 @@
- - Searches now allow negative directory filtering (all
- results except from the specified directory). Other attempts
- at still impossible negative searches
- (ie: -mime: now cause
- explicit errors messages instead of lame results. The
- inverted directory filtering is accessible from the query
- language and by checking a checkbox in the advanced search panel.
+ - We can now perform negative directory filtering (-dir:/some/dir),
+ to return all results except those from the
+ specified directory (recursive). Other attempts at still
+ impossible negative searches
+ (ie: -mime:) now cause explicit
+ errors messages instead of lame results. The inverted
+ directory filtering is accessible from the query language
+ and by checking a checkbox in the advanced search
+ panel.
- - The GUI advanced search panel now allows specifying a
+
- It is now possible to set an increased weight for indexing
+ some fields. The title fields gets a boost by default. See
+ the fields default file for details.
+
+ - The query language allows setting weights on terms, ie,
+ as in: "important"2.5 .
+
+ - The GUI advanced search panel allows specifying a
field for each entry (ie: author/recipient, etc).
+ - It is possible to configure the result list snippet
+ separator, given as an html fragment. This is an ellipsis by
+ default (…).
+
+ - The preview window popup menu has a "save to file" entry
+ to write a subdocument (ie: mail attachement) to a file.
+
+ - Images are displayed in preview. You can get at the fields
+ and complete extracted text using the popup menu.
+
+ - Improved preservation of indentation for text files
+ displayed in the preview window.
+
+ - Show hidden (dot) files in the indexing configuration
+ GUI dialogs.
+
- Added filters for .war (Konqueror web archive) and .mhtm (other web
archive format).
+ - Improved handling for native cjk punctuation signs.
+
+ - Updated the list of native apps in the
+ default mimeview (ie: xv->gwenview, rox->dolphin,
+ etc.)
+
+ - Added -f option to recollindex to ignore
+ skippedPaths/Names when used with -i. Allows the use of a
+ purely external file selection mechanism.
+
- Result table:
- The detail area now has a popup menu similar
@@ -80,6 +115,23 @@
adjust row height and vertical text position in
cells.
+
+
+ - Real time indexer: several configuration
+ parameters allow adjusting the timing of indexing actions:
+
+ - monauxinterval: the interval between auxiliary
+ databases rebuilds (stemdb, aspell).
+ - monixinterval: The waiting period
+ during which indexing events are accumulated prior to actual
+ indexing (saves work on duplicate events).
+ - mondelaypatterns: a list of file patterns for
+ which indexing should be delayed longer (quick changing
+ files like logs that should be reindexed much slower than
+ they change).
+
+ See the default configuration file for more detail.
+
- Fixed bugs:
@@ -91,6 +143,15 @@
- Fixed case where indexing could hang or crash after an
error occured while indexing an archive member (which
should have affected only the relevant document).
+ - Real time indexer: uncontrolled concurrent access to
+ the global configuration could cause a startup crash (mostly of
+ big file trees because of timing issues).
+ - Fixed sorting by document and file size in the result
+ table.
+ - Email messages for which there would be an error indexing
+ an attachment would not be indexed at all.
+ - Text files bigger than 2 GB could not be indexed.
+ - Fixed the handling of compressed man pages.