none
This commit is contained in:
parent
e2684d5379
commit
4802ec53ed
@ -48,6 +48,7 @@ src/doc/user/rcl.searchkio.searchabledocs.html
|
||||
src/doc/user/usermanual.html
|
||||
src/doc/user/usermanual.html-text
|
||||
src/doc/user/usermanual.txt
|
||||
src/filters/rclexecm.pyc
|
||||
src/index/alldeps
|
||||
src/index/recollindex
|
||||
src/lib/alldeps
|
||||
@ -69,6 +70,7 @@ src/qt4gui/spell.ui
|
||||
src/qt4gui/ssearchb.ui
|
||||
src/qt4gui/uiprefs.ui
|
||||
src/qt4gui/viewaction.ui
|
||||
src/qtgui/recoll.pro
|
||||
src/qtgui/i18n/*.qm
|
||||
src/query/alldeps
|
||||
src/recollinstall
|
||||
|
||||
12166
src/ChangeLog
12166
src/ChangeLog
File diff suppressed because it is too large
Load Diff
@ -35,8 +35,10 @@
|
||||
supposedly fixed in later versions. Bugs listed in the
|
||||
topmost section may also exist in older versions.</i></p>
|
||||
|
||||
<h2><a name="b_latest">recoll 1.13.01 + xapian 1.0.16</a></h2>
|
||||
<h2><a name="b_latest">recoll 1.13.02 + xapian 1.0.16</a></h2>
|
||||
<ul>
|
||||
<li>Mac OS X + Qt 4.6.1 : the index configuration dialog
|
||||
crashes.</li>
|
||||
<li>Performing a full index with release 1.11 or later, over a
|
||||
version created with a much older recoll release may
|
||||
sometimes end with an error saying "backend doesn't
|
||||
@ -100,7 +102,21 @@
|
||||
slower indexing for doc files.</li>
|
||||
</ul>
|
||||
|
||||
<h2><a name="b_latest">recoll 1.13.00 + xapian 1.0.16</a></h2>
|
||||
<h2><a name="b_1_13_01">recoll 1.13.01 + xapian
|
||||
1.0.16</a></h2> <li>The GUI display is completely garbled under
|
||||
Qt 4.6.1 and newer. This is a Qt bug, and a workaround was put
|
||||
in place in Recoll 1.13.02 for Qt 4.6.1. If you are using a
|
||||
newer version and the problem is still there, you can fix the
|
||||
4.6.1 fix to hopefully work with your Qt version: edit
|
||||
qtgui/rclmain_w.h, around line 37 (there is only one instance),
|
||||
change:
|
||||
<pre>
|
||||
#if QT_VERSION == 0x040601
|
||||
to
|
||||
#if QT_VERSION >= 0x040601
|
||||
</pre>
|
||||
</li>
|
||||
<h2><a name="b_1_13_00">recoll 1.13.01 + xapian 1.0.16</a></h2>
|
||||
<li>The field value was ignored in field searches for phrases or
|
||||
capitalized words (ie: author:John or title:"the title").</li>
|
||||
<li>The GUI would sometimes crash during the first execution,
|
||||
|
||||
@ -57,8 +57,15 @@
|
||||
|
||||
<h1><a name="development">Development</a></h1>
|
||||
|
||||
<p>Apart from general development for additional functionality
|
||||
or bug fixes, the following tasks are waiting for you:</p>
|
||||
<p>The Recoll source repository is
|
||||
on <a href="http://bitbucket.org/medoc/recoll">Bitbucket</a>. Using
|
||||
Mercurial, you're 2 commands away from cloning it and
|
||||
hacking away.</p>
|
||||
|
||||
<p>Apart from the many tasks inside the
|
||||
<a href="http://bitbucket.org/medoc/recoll/issues">issue
|
||||
tracking system</a>, these are the general areas where help or
|
||||
ideas are particularly welcome:</p>
|
||||
<ul>
|
||||
<li>A better GUI design (both the ergonomy and the appearance).</li>
|
||||
|
||||
|
||||
@ -44,10 +44,14 @@
|
||||
|
||||
<ul>
|
||||
<li><a href="perfs.html">Index size and indexing performance
|
||||
data.</a></li>
|
||||
<li><a href="howtos/index.html"><em>How to</em></a>
|
||||
documents. These describe in detail how to perform a number of
|
||||
specific tasks.</li>
|
||||
data.</a></li>
|
||||
|
||||
<li>Faqs and Howtos are now kept in the
|
||||
<a href="http://bitbucket.org/medoc/recoll/wiki/FaqsAndHowTos">
|
||||
Recoll Wiki</a> on
|
||||
<a href="http://bitbucket.org/medoc/recoll">bitbucket.org</a>.</li>
|
||||
|
||||
<li>The old copies are still <a href="howtos/index.html">here</a>.</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
@ -125,8 +125,11 @@
|
||||
<a href="recoll-1.13.02.tar.gz">recoll-1.13.02.tar.gz</a>.
|
||||
Recoll 1.13.02 was issued only to work around a problem in Qt
|
||||
4.6.1 (it will manifest itself as a completely garbled main
|
||||
window). If you are using another Qt version, you have no reason
|
||||
to upgrade from 1.13.01.
|
||||
window). If you are using an older Qt version, you have no reason
|
||||
to upgrade from 1.13.01. If you are using a Qt development
|
||||
version, more recent than 4.6.1, please check the
|
||||
<a href="BUGS.html#b_1_13_01">BUGS</a> file for how to fix the
|
||||
workaround.
|
||||
<a href="CHANGES.html">Changes</a>. <a href="BUGS.html">Bugs</a>.
|
||||
</p>
|
||||
|
||||
|
||||
@ -81,10 +81,19 @@
|
||||
<h2>News: </h2>
|
||||
<ul>
|
||||
|
||||
<li>2010-01-05 : a <a href="download.html#source">1.13.01</a> is
|
||||
out. It brings some nice <a
|
||||
href="CHANGES.html#1.13.01">improvements and new functions</a>.
|
||||
Please try it and report any problems.</li>
|
||||
<li>2010-01-29 : the full Recoll source repository is now
|
||||
hosted on
|
||||
<a href="http://bitbucket.org/medoc/recoll">Bitbucket</a>, along
|
||||
with a Wiki and an
|
||||
<a href="http://bitbucket.org/medoc/recoll/issues">issues tracking
|
||||
system</a>. Hopefully, this
|
||||
new channel for reporting bugs and make suggestions will
|
||||
increase the feedback rate...</li>
|
||||
|
||||
<li>2010-01-05 : a <a href="download.html#source">1.13.02</a> is
|
||||
out. It brings some nice <a href="CHANGES.html">
|
||||
improvements and new functions</a>.
|
||||
Please try it and report any problems.</li>
|
||||
|
||||
<li>2009-12-10 : <a href="download.html#source">1.12.4</a> is
|
||||
out. It fixes a <a href="CHANGES.html#1.12.4">problem in the preview
|
||||
@ -103,9 +112,16 @@
|
||||
<h2><a name="support">Support</a></h3>
|
||||
|
||||
<p>If you have any problem with Recoll, or a suggestion for
|
||||
improvement, <em>please</em> provide feedback, preferably on the
|
||||
recoll-user mailing list, or directly to
|
||||
<a href="mailto:jfd@recoll.org">me</a>.</p>
|
||||
improvement, <em>please</em> provide feedback. There are three
|
||||
possible channels, depending on your preferences:
|
||||
<ul>
|
||||
<li>The <a href="http://bitbucket.org/medoc/recoll/issues">
|
||||
issues tracking system</a> on Bitbucket.</li>
|
||||
<li>The <a href="http://www.freelists.org/list/recoll-user">
|
||||
recoll-user</a> mailing list.<li>
|
||||
<li>Direct <a href="mailto:jfd@recoll.org">email</a>.
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<p>Mailing list information:
|
||||
<ul>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user