|
a/website/BUGS.txt |
|
b/website/BUGS.txt |
|
... |
|
... |
2 |
|
2 |
|
3 |
Bugs that are listed in an older version section are supposedly fixed in
|
3 |
Bugs that are listed in an older version section are supposedly fixed in
|
4 |
later versions. Bugs listed in the topmost section may also exist in older
|
4 |
later versions. Bugs listed in the topmost section may also exist in older
|
5 |
versions.
|
5 |
versions.
|
6 |
|
6 |
|
7 |
Latest (1.8.2):
|
7 |
Latest (1.9.0 + xapian 1.0.2):
|
8 |
There are a few problems in the qt4 version of recoll: some accelerators
|
|
|
9 |
(esc-spc, ctl-arrow) do not work, neither do copy/paste between the
|
|
|
10 |
result list and preview windows and x11 applications.
|
|
|
11 |
|
|
|
12 |
The q3textedit find() method is extremely slow. Positionning to first
|
|
|
13 |
search term in preview has been disabled in qt4, and the application will
|
|
|
14 |
sometimes appear to be looping when using the find feature in the
|
|
|
15 |
preview window (it's not looping, it's searching :( )
|
|
|
16 |
|
|
|
17 |
The dates shown for email attachments in a result list are the email
|
|
|
18 |
folder modification date. This should be inherited from the parent
|
|
|
19 |
message instead.
|
|
|
20 |
|
|
|
21 |
There are sometimes problems with document deletions: the index can
|
|
|
22 |
get in a state where deleted or moved documents are not purged from the
|
|
|
23 |
index (the log file says that the doc are deleted, but they aren't
|
|
|
24 |
actually). When this happens, the only solution currently is to reindex
|
|
|
25 |
from scratch (recollindex -z). This is due to a xapian bug, which will be
|
|
|
26 |
fixed in a future release. You can apply the following patch to xapian
|
|
|
27 |
1.0.1 to fix it:
|
|
|
28 |
http://www.lesbonscomptes.com/recoll/xapian/xapian-delete-document.patch
|
|
|
29 |
|
|
|
30 |
Under ubuntu (at least), the default awk interpreter (mawk) is buggy,
|
|
|
31 |
and the recoll pdf input filter does not work (removes all space
|
|
|
32 |
characters). This can be solved by installing the gawk package.
|
|
|
33 |
|
|
|
34 |
- If the user-chosen result list entry format results in several paragraphs
|
8 |
- If the user-chosen result list entry format results in several paragraphs
|
35 |
(in the qt textedit sense), right clicks will only work inside the first
|
9 |
(in the qt textedit sense), right clicks will only work inside the first
|
36 |
one for each entry.
|
10 |
one for each entry.
|
37 |
|
11 |
|
38 |
- NEAR crashes: 1.6 has added NEAR searches. Unlike what recoll did
|
12 |
- NEAR crashes: 1.6 has added NEAR searches. Unlike what recoll did
|
39 |
with PHRASES, stemming expansion is performed on terms inside NEAR
|
13 |
with PHRASES, stemming expansion is performed on terms inside NEAR
|
40 |
clauses (except if prevented by a capitalized entry of course). There is
|
14 |
clauses (except if prevented by a capitalized entry of course). There is
|
41 |
a bug in Xapian at least up to 0.9.10, where NEAR does not support
|
15 |
a bug in Xapian (all versions as far as I know), where NEAR does not support
|
42 |
multiple OR subclauses, as would result from a multiple expansion. This
|
16 |
multiple OR subclauses, as would result from a multiple expansion. This
|
43 |
manifests itself by a 'not implemented' Xapian exception. Workarounds:
|
17 |
manifests itself by a 'not implemented' Xapian exception. Workarounds:
|
44 |
|
18 |
|
45 |
- Prevent expansion of NEAR terms (possibly except one) by
|
19 |
- Prevent expansion of NEAR terms (possibly except one) by
|
46 |
capitalizing them.
|
20 |
capitalizing them.
|
47 |
|
21 |
|
48 |
- Or apply the following patch to xapian 0.9.9 or 0.9.10, inside the
|
22 |
- Or apply the following patch to xapian, inside the
|
49 |
"api/" directory:
|
23 |
"api/" directory:
|
50 |
http://www.recoll.org/xapian/xapNearDistrib.patch
|
24 |
http://www.recoll.org/xapian/xapNearDistrib.patch
|
51 |
or fetch the already patched source:
|
25 |
or fetch the already patched source:
|
52 |
http://www.recoll.org/xapian/xapian-core-0.9.10-recollNEARpatch.tar.gz
|
26 |
http://www.recoll.org/xapian/xapian-core-0.9.10-recollNEARpatch.tar.gz
|
53 |
|
27 |
|
|
... |
|
... |
79 |
|
53 |
|
80 |
- Under Solaris, it is necessary to perform initial indexing with the
|
54 |
- Under Solaris, it is necessary to perform initial indexing with the
|
81 |
recollindex program (the recoll index thread doesn't work for creating
|
55 |
recollindex program (the recoll index thread doesn't work for creating
|
82 |
the database). Don't know the reason. Only idea I have is problem with
|
56 |
the database). Don't know the reason. Only idea I have is problem with
|
83 |
exception handling (recoll catches an exception while trying the
|
57 |
exception handling (recoll catches an exception while trying the
|
84 |
yest inexistant db).
|
58 |
yet inexistant db).
|
|
|
59 |
|
|
|
60 |
1.8.2
|
|
|
61 |
- Under ubuntu (at least, maybe debian too), the default awk interpreter
|
|
|
62 |
(mawk) is ancient, and the recoll pdf input filter does not
|
|
|
63 |
work (removes all space characters). This can be solved by installing the
|
|
|
64 |
gawk package.
|
|
|
65 |
$ apt-get install gawk
|
|
|
66 |
$ update-alternatives --set awk /usr/bin/gawk
|
|
|
67 |
|
|
|
68 |
- There are sometimes problems with document deletions: the index can
|
|
|
69 |
get in a state where deleted or moved documents are not purged from the
|
|
|
70 |
index (the log file says that the doc are deleted, but they aren't
|
|
|
71 |
actually). When this happens, the only solution currently is to reindex
|
|
|
72 |
from scratch (recollindex -z). This is due to a xapian bug, which is
|
|
|
73 |
fixed in xapian 1.0.2, or you can apply the following patch to xapian
|
|
|
74 |
1.0.1 to fix it:
|
|
|
75 |
http://www.lesbonscomptes.com/recoll/xapian/xapian-delete-document.patch
|
|
|
76 |
|
|
|
77 |
- The dates shown for email attachments in a result list are the email
|
|
|
78 |
folder modification date. This should be inherited from the parent
|
|
|
79 |
message instead.
|
|
|
80 |
|
|
|
81 |
- There are a few problems in the qt4 version of recoll:
|
|
|
82 |
- Some accelerators (esc-spc, ctl-arrow) do not work, neither do
|
|
|
83 |
copy/paste between the result list and preview windows and x11
|
|
|
84 |
applications.
|
|
|
85 |
- The qt4 q3textedit::find() method is extremely slow, so that
|
|
|
86 |
positionning to first search term in Recoll preview has been disabled,
|
|
|
87 |
and the application will sometimes appear to be looping when using the
|
|
|
88 |
find feature in the preview window (it's not looping, it's searching...)
|
85 |
|
89 |
|
86 |
1.8.1
|
90 |
1.8.1
|
87 |
- This is not really a bug but .beagle really should be included in
|
91 |
- This is not really a bug but .beagle really should be included in
|
88 |
"skippedNames", or you end up indexing the beagle text cache, which is
|
92 |
"skippedNames", or you end up indexing the beagle text cache, which is
|
89 |
not really desirable.
|
93 |
not really desirable.
|