comments and doc
This commit is contained in:
parent
08ec157e1a
commit
84ce6aa0b8
@ -300,7 +300,11 @@ other = application/vnd.sun.xml.draw \
|
|||||||
# By default this filters by document category (see above), but any
|
# By default this filters by document category (see above), but any
|
||||||
# language fragment should be ok. Be aware though that the "document
|
# language fragment should be ok. Be aware though that the "document
|
||||||
# history" queries only know about simple "rclcat" filtering.
|
# history" queries only know about simple "rclcat" filtering.
|
||||||
|
#
|
||||||
|
# If you don't want the filter names to be displayed in alphabetic order,
|
||||||
|
# you can define them with a colon. The part before the colon is not
|
||||||
|
# displayed but used for ordering, ie: a:zzbutshouldbefirst b:aacomeslast
|
||||||
|
#
|
||||||
text = rclcat:text
|
text = rclcat:text
|
||||||
spreadsheet = rclcat:spreadsheet
|
spreadsheet = rclcat:spreadsheet
|
||||||
presentation = rclcat:presentation
|
presentation = rclcat:presentation
|
||||||
|
|||||||
@ -55,22 +55,62 @@
|
|||||||
major function was introduced or modified.</p>
|
major function was introduced or modified.</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>Recoll now supports filtering on file sizes. This is accessible
|
||||||
|
from the advanced search panel, or from the query langage
|
||||||
|
(ie: "size>10k size<1m"). For documents stored
|
||||||
|
inside archives, the file size stored in the index is now
|
||||||
|
the actual one not the archive's as was previously the
|
||||||
|
case.</li>
|
||||||
|
|
||||||
<li>When a search fails to retrieve results, the spelling
|
<li>Query language: Tilde is now expanded inside a "dir:"
|
||||||
|
clause.</li>
|
||||||
|
|
||||||
|
<li>Query language: the "dir:" directive now accepts
|
||||||
|
non-absolute paths. For example dir:dir1/dir2 will accept any
|
||||||
|
file the ancestors of which include "dir1/dir2".</li>
|
||||||
|
|
||||||
|
<li>GUI: When a search fails to retrieve results, the spelling
|
||||||
suggestions are now presented as links inside the result list
|
suggestions are now presented as links inside the result list
|
||||||
area. Clicking a link will replace the appropriate word inside
|
area. Clicking a link will replace the appropriate word inside
|
||||||
the search entry.</li>
|
the search entry.</li>
|
||||||
<li>Thumbnails will be displayed in the result list if an
|
|
||||||
|
<li>GUI: Thumbnails will be displayed in the result list if an
|
||||||
appropriate one is found in the standard freedesktop
|
appropriate one is found in the standard freedesktop
|
||||||
thumbnails directory (ie: created by gimp or some file
|
thumbnails directory (ie: created by gimp or some file
|
||||||
manager). Recoll will not create thumbnails (this would slow
|
manager). Recoll will not create thumbnails (this would slow
|
||||||
result display too much).</li>
|
result display too much).</li>
|
||||||
|
|
||||||
|
<li>GUI: It is now possible to control the date format used to
|
||||||
|
display result (go to query preferences).</li>
|
||||||
|
|
||||||
|
<li>GUI: It is now possible to Copy/Paste from the term explorer
|
||||||
|
result list.</li>
|
||||||
|
|
||||||
|
<li>GUI: it is now possible to use a Qt style sheet to modify
|
||||||
|
many aspects of Recoll appearance. A style sheet file can be
|
||||||
|
selected from the GUI query configuration dialog. A sample
|
||||||
|
skeleton style sheet is to be found in the
|
||||||
|
share/recoll/examples directory.</li>
|
||||||
|
|
||||||
|
<li>GUI: Added menu entry to show all the mime types actually
|
||||||
|
indexed.</li>
|
||||||
|
|
||||||
|
<li>GUI: the result list is now based on the WebKit widget
|
||||||
|
instead of QTextBrowser. This means better html/css support,
|
||||||
|
and even Javascript ... You can force the use the old
|
||||||
|
QTextBrowser instead by using configure --disable-webkit.</li>
|
||||||
|
|
||||||
|
<li>GUI: Use Shift+PageUp instead of Shift+Home to rewind the
|
||||||
|
result list to the first page. Shift+Home is useful in the
|
||||||
|
search entry.</li>
|
||||||
|
|
||||||
<li>The GUI now has a set of dialogs to set up the indexing
|
<li>The GUI now has a set of dialogs to set up the indexing
|
||||||
schedule, either as automatic real time indexing started
|
schedule, either as automatic real time indexing started
|
||||||
with the user session or as discrete cron entries. This
|
with the user session or as discrete cron entries. This
|
||||||
will take care of the details of autostart files or crontab
|
will take care of the details of autostart files or crontab
|
||||||
editing.</li>
|
editing.</li>
|
||||||
|
|
||||||
<li>The GUI indexing thread has been removed. All indexing is
|
<li>The GUI indexing thread has been removed. All indexing is
|
||||||
now performed by a separate recollindex process. This has
|
now performed by a separate recollindex process. This has
|
||||||
multiple advantages, the thread was just a very bad
|
multiple advantages, the thread was just a very bad
|
||||||
@ -83,23 +123,34 @@
|
|||||||
standard directories was more often confusing than
|
standard directories was more often confusing than
|
||||||
useful.</li>
|
useful.</li>
|
||||||
|
|
||||||
<li>It is now possible to control the date format used to
|
<li>The GUI now has a menu entry to force a full reindex.</li>
|
||||||
display result (go to query preferences).</li>
|
|
||||||
<li>It is now possible to Copy/Paste from the term explorer
|
<li>GUI: the default reslist paragraph now displays the ipath:
|
||||||
result list.</li>
|
this is very useful for archive members and not too
|
||||||
|
disturbing for other kinds.</li>
|
||||||
|
|
||||||
|
<li>GUI: it is now possible to cancel a query that takes too
|
||||||
|
long. Because of limitations in Xapian, this forces a program
|
||||||
|
exit, but it's probably better than staring at a hung
|
||||||
|
Recoll.</li>
|
||||||
|
|
||||||
|
<li>What used to be the document category filters
|
||||||
|
(media/text/etc.) are now defined as query language
|
||||||
|
fragments inside mimeconf. This means that you can redefine
|
||||||
|
them freely (see the comments for the [guifilters] section
|
||||||
|
in the default mimeconf).</li>
|
||||||
|
|
||||||
|
<li>Command line query: can now select a result slice
|
||||||
|
(first result rank and count of results).</li>
|
||||||
|
|
||||||
<li>Indexer: handle the html5 <tt>charset</tt> meta tag.</li>
|
<li>Indexer: handle the html5 <tt>charset</tt> meta tag.</li>
|
||||||
|
|
||||||
<li>Added okular notes and gnumeric filters.</li>
|
<li>Real time indexer: restart automatically when the
|
||||||
|
configuration changes.</li>
|
||||||
|
|
||||||
<li>GUI: it is now possible to use a Qt style sheet to modify
|
<li>Indexer: Added okular notes and gnumeric filters.</li>
|
||||||
many aspects of Recoll appearance. A style sheet file can be
|
|
||||||
selected from the GUI query configuration dialog. A sample
|
|
||||||
skeleton style sheet is to be found in the
|
|
||||||
share/recoll/examples directory.</li>
|
|
||||||
|
|
||||||
<li>GUI: Added menu entry to show all the mime types actually
|
|
||||||
indexed.</li>
|
|
||||||
|
|
||||||
|
|
||||||
<li>Fixed bugs:
|
<li>Fixed bugs:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Indexing configuration: deleting one customized
|
<li>Indexing configuration: deleting one customized
|
||||||
@ -119,7 +170,10 @@
|
|||||||
was sometimes used for GUI preview.</li>
|
was sometimes used for GUI preview.</li>
|
||||||
<li>The chm filter can now process files lacking a Topics
|
<li>The chm filter can now process files lacking a Topics
|
||||||
node.</li>
|
node.</li>
|
||||||
|
<li>The default slack for proximity searches from the query
|
||||||
|
language (ie: "word1 word2"p) had become 0. It was restored to
|
||||||
|
10.</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user