1.10.0
This commit is contained in:
parent
0cc19093a5
commit
05fe60f3a9
@ -1,3 +1,11 @@
|
||||
recoll (1.10.0-0ubuntu1) gutsy; urgency=low
|
||||
* Updated package to recoll version 1.10.0
|
||||
-- Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> Wed, 11 Nov 2007 15:34:51 +0200
|
||||
|
||||
recoll (1.9.0-0ubuntu1) gutsy; urgency=low
|
||||
* Updated package to recoll version 1.9.0
|
||||
-- Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> Fri, 7 Sep 2007 15:34:51 +0200
|
||||
|
||||
recoll (1.8.1-0ubuntu1) gutsy; urgency=low
|
||||
* Updated package to recoll version 1.8.1
|
||||
-- Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> Wed, 7 Mar 2007 09:08:05 +0100
|
||||
|
||||
@ -2,12 +2,13 @@ Source: recoll
|
||||
Section: x11
|
||||
Priority: optional
|
||||
Maintainer: Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr>
|
||||
Build-Depends: debhelper (>= 5), libqt3-mt-dev, qt3-dev-tools, libqt3-headers, libxapian-dev
|
||||
Build-Depends: debhelper (>= 5), autotools-dev, libqt3-headers, libqt3-mt-dev, libxapian-dev, qt3-dev-tools
|
||||
Standards-Version: 3.7.2
|
||||
|
||||
Package: recoll
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Recommends: aspell
|
||||
Description: a personal full text search package with a QT GUI
|
||||
The Recoll personal full text search package is based on a very strong
|
||||
backend (Xapian), for which it provides an easy to use and feature-rich
|
||||
@ -30,4 +31,5 @@ Description: a personal full text search package with a QT GUI
|
||||
necessary.
|
||||
* An indexer which runs either as a thread inside the GUI or as an
|
||||
external, cron'able program.
|
||||
|
||||
.
|
||||
Homepage: <http://www.lesbonscomptes.com/recoll>
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
?package(recoll):needs="X11" section="Apps/Databases"\
|
||||
title="recoll" command="/usr/bin/recoll"
|
||||
title="Personal Search Tool" command="/usr/bin/recoll"
|
||||
|
||||
@ -1,14 +1,4 @@
|
||||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
# Sample debian/rules that uses debhelper.
|
||||
#
|
||||
# This file was originally written by Joey Hess and Craig Small.
|
||||
# As a special exception, when this file is copied by dh-make into a
|
||||
# dh-make output file, you may use that output file without restriction.
|
||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||
#
|
||||
# Modified to make a template file for a multi-binary package with separated
|
||||
# build-arch and build-indep targets by Bill Allombert 2001
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
@ -21,7 +11,6 @@ export DH_OPTIONS
|
||||
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
||||
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
||||
|
||||
|
||||
CFLAGS = -Wall -g
|
||||
|
||||
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
||||
@ -32,50 +21,41 @@ endif
|
||||
|
||||
config.status: configure
|
||||
dh_testdir
|
||||
# Add here commands to configure the package.
|
||||
./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
|
||||
./configure CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" \
|
||||
--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
|
||||
--prefix=/usr --mandir=\$${prefix}/share/man
|
||||
|
||||
|
||||
#Architecture
|
||||
build: build-arch
|
||||
|
||||
build-arch: build-arch-stamp
|
||||
build-arch-stamp: config.status
|
||||
build: build-stamp
|
||||
build-stamp: config.status
|
||||
dh_testdir
|
||||
$(MAKE)
|
||||
touch $@
|
||||
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
rm -f build-arch-stamp #CONFIGURE-STAMP#
|
||||
# Add here commands to clean up after the build process.
|
||||
rm -f build-stamp
|
||||
-$(MAKE) distclean
|
||||
dh_clean
|
||||
|
||||
install: install-arch
|
||||
|
||||
install-arch:
|
||||
install:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_clean -k -s
|
||||
dh_installdirs -s
|
||||
$(MAKE) install prefix=$(CURDIR)/debian/recoll/usr
|
||||
dh_clean -k
|
||||
dh_installdirs
|
||||
|
||||
dh_install -s
|
||||
# Must not depend on anything. This is to be called by
|
||||
# binary-arch/binary-indep
|
||||
# in another 'make' thread.
|
||||
binary-common:
|
||||
$(MAKE) prefix=$(CURDIR)/debian/recoll/usr install
|
||||
|
||||
binary-arch: build install
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installchangelogs ChangeLog
|
||||
dh_installdocs
|
||||
dh_installexamples
|
||||
dh_installmenu
|
||||
dh_installman
|
||||
dh_link
|
||||
dh_strip
|
||||
dh_compress
|
||||
dh_compress
|
||||
dh_fixperms
|
||||
dh_installdeb
|
||||
dh_shlibdeps
|
||||
@ -83,9 +63,7 @@ binary-common:
|
||||
dh_md5sums
|
||||
dh_builddeb
|
||||
|
||||
# Build architecture dependant packages using the common target.
|
||||
binary-arch: build-arch install-arch
|
||||
$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
|
||||
binary-indep: build install
|
||||
|
||||
binary: binary-arch
|
||||
.PHONY: build clean binary-arch binary install install-arch
|
||||
binary: binary-indep binary-arch
|
||||
.PHONY: build clean binary-indep binary-arch binary install
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
%define name recoll
|
||||
%define version 1.8.1
|
||||
%define version 1.10.0
|
||||
%define release 0
|
||||
|
||||
Name: %{name}
|
||||
@ -54,13 +54,17 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_bindir}/*
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/recoll-searchgui.desktop
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll-searchgui.png
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll.png
|
||||
%{_mandir}/man1/recoll*
|
||||
%{_mandir}/man5/recoll*
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
%changelog
|
||||
* Wed Nov 21 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.10.0-1
|
||||
- Update to release 1.10.0
|
||||
* Tue Sep 11 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.9.0-1
|
||||
- Update to release 1.9.0
|
||||
* Tue Mar 6 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.8.1-1
|
||||
- Update to release 1.8.1
|
||||
* Mon Jan 15 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.7.5-1
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
Name: recoll
|
||||
Version: 1.8.1
|
||||
Version: 1.10.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Desktop full text search tool with a qt gui
|
||||
|
||||
Group: Applications/Databases
|
||||
License: GPL
|
||||
URL: http://www.recoll.org/
|
||||
Source0: http://www.recoll.org/recoll-1.8.1.tar.gz
|
||||
Source0: http://www.recoll.org/recoll-1.10.0.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
# Not sure how easy it is to find a xapian-core rpm. Will be easier to
|
||||
@ -41,13 +41,17 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_bindir}/*
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/recoll-searchgui.desktop
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll-searchgui.png
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll.png
|
||||
%{_mandir}/man1/recoll*
|
||||
%{_mandir}/man5/recoll*
|
||||
%doc
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Nov 21 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.10.0-1
|
||||
- Update to release 1.10.0
|
||||
* Tue Sep 11 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.9.0-1
|
||||
- Update to release 1.9.0
|
||||
* Tue Mar 6 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.8.1-1
|
||||
- Update to release 1.8.1
|
||||
* Mon Jan 15 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.7.5-1
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
%define name recoll
|
||||
%define version 1.8.1
|
||||
%define version 1.10.0
|
||||
%define release %mkrel 1
|
||||
|
||||
Name: %{name}
|
||||
@ -51,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/*
|
||||
%{_datadir}/applications/recoll-searchgui.desktop
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll-searchgui.png
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll.png
|
||||
%{_datadir}/%{name}
|
||||
%{_mandir}/man1/recoll*
|
||||
%{_mandir}/man5/recoll*
|
||||
@ -59,6 +59,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
%changelog
|
||||
* Wed Nov 21 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.10.0-1
|
||||
- Update to release 1.10.0
|
||||
* Tue Sep 11 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.9.0-1
|
||||
- Update to release 1.9.0
|
||||
* Tue Mar 6 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.8.1-1
|
||||
- Update to release 1.8.1
|
||||
* Mon Jan 15 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.7.5-1
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
# @(#$Id: shared.sh,v 1.2 2007-02-14 11:52:28 dockes Exp $ (C) 2006 J.F.Dockes
|
||||
# @(#$Id: shared.sh,v 1.3 2007-11-21 16:34:16 dockes Exp $ (C) 2006 J.F.Dockes
|
||||
|
||||
# shared code and variables for all tests
|
||||
|
||||
RECOLL_CONFDIR=/home/dockes/projets/fulltext/testrecoll/config
|
||||
RECOLL_CONFDIR=/Users/dockes/projets/fulltext/testrecoll/config
|
||||
export RECOLL_CONFDIR
|
||||
|
||||
# Call this with the script's $0 as argument
|
||||
|
||||
@ -1,5 +1,59 @@
|
||||
CHANGES
|
||||
|
||||
1.10.0
|
||||
|
||||
- Added a GUI dialog to configure the indexing parameters.
|
||||
|
||||
- Added better support for indexing CJK text (Chinese, Japanese, Korean).
|
||||
Please note that:
|
||||
- You will need a full reindex to take good advantage of this. (You
|
||||
*don't* need to reindex if you don't need to search CJK, even if there
|
||||
is some in your index).
|
||||
- When entering CJK search terms, words (single or multiple characters)
|
||||
should be separated with white space.
|
||||
- The specific CJK processing can be turned off by setting the nocjk
|
||||
variable to true in the configuration file (this may make sense if you
|
||||
have a mixed cjk/other document base and don't want to index the cjk
|
||||
part, as it will save some disk space and a minuscule amount of cpu).
|
||||
|
||||
- Changed the way Recoll handles searches including composite words (like
|
||||
an email address). The new approach looks saner, but could have
|
||||
side-effects, please report any problems in this area.
|
||||
|
||||
- The query language got a new "dir:" specifier to filter results on location.
|
||||
|
||||
- New rclimg perl filter for better indexing of picture tags, thanks to
|
||||
Cedric Scott. This depends on Exiftool.
|
||||
- New rcltex filter.
|
||||
|
||||
- Changed and improved how the preview window local search finds the
|
||||
query terms, this does not involve weird characters any more. The
|
||||
display is cleaner and cut and paste works better.
|
||||
|
||||
- Fixed the fact that a newline-separated word list in simple search would
|
||||
wrongly trigger a phrase search.
|
||||
|
||||
- Fixed the way we input text to the preview textedit (the old way would
|
||||
sometimes confuse the window into displaying tags instead of acting on
|
||||
them).
|
||||
|
||||
- Fixed transcoding to utf-8 for text/plain email attachments
|
||||
|
||||
- Improved mbox From_ line detection
|
||||
|
||||
- Added indexedmimetypes variables to allow restricting the list of indexed
|
||||
mime types.
|
||||
|
||||
- KDE kicker applet: start a recoll search from the panel and get a
|
||||
Recoll window. This is a clone from the find_applet, originally meant to
|
||||
start a Tracker search. Not so useful presently because it will start a
|
||||
new Recoll instance for every search. Not part of the main source (the
|
||||
configure script is a whopping 1MB...), linked from the download page.
|
||||
- Added recoll command line options to define a query and execute it
|
||||
immediately when the program starts. This is used in practice from the
|
||||
applet and could be used from other programs. There is a also a new
|
||||
option to not start the GUI and print the results to stdout.
|
||||
|
||||
1.9.0
|
||||
- Incompatible change: the icon image reference is now part of the result
|
||||
list paragraph format string:
|
||||
@ -63,6 +117,10 @@ CHANGES
|
||||
|
||||
- Fixed a number of qt4 glitches: selection and keyboard shortcuts.
|
||||
|
||||
- New query configuration parameter to set the maximum text size beyond
|
||||
which text won't be hilighted before preview (takes too much time). This
|
||||
was a fixed value in 1.8.
|
||||
|
||||
1.8.2 2007-05-19
|
||||
- Fixed method name for compatibility with xapian 1.0.0
|
||||
- Add .beagle to default list of skipped names (avoids indexing beagle
|
||||
|
||||
@ -29,31 +29,43 @@
|
||||
|
||||
<div class="content">
|
||||
|
||||
<h1>Development</h1>
|
||||
|
||||
<p>If you wish to become involved in the development of <span
|
||||
class="application">Recoll</span>, you are very much welcome,
|
||||
please send me an <a
|
||||
href="mailto:jean-francois.dockes@wanadoo.fr">email</a>.</p>
|
||||
|
||||
<h1>Translation</h1>
|
||||
|
||||
<p>More translations is good ! If you are a non-english speaker
|
||||
(and understand english, which can probably be assumed, you
|
||||
being reading this), you can take a little time to translate
|
||||
the GUI messages file.</p>
|
||||
<p>The message files for the upcoming 1.10 release follow. There
|
||||
is an empty one (the xx thing), the others are partially
|
||||
translated, just needing an update for the new messages.<p>
|
||||
<p>Updating the files can easily be done with
|
||||
the <span class="application">Qt Linguist</span>. Contact me
|
||||
for more directions if needed.</p>
|
||||
<ul>
|
||||
<li>Blank: <a href="msg-1.10/recoll_xx.ts">recoll_xx.ts</a></li>
|
||||
<li>German: <a href="msg-1.10/recoll_de.ts">recoll_de.ts</a></li>
|
||||
<li>Italian: <a href="msg-1.10/recoll_it.ts">recoll_it.ts</a></li>
|
||||
<li>Russian: <a href="msg-1.10/recoll_ru.ts">recoll_ru.ts</a></li>
|
||||
<li>Turkish: <a href="msg-1.10/recoll_tr.ts">recoll_tr.ts</a></li>
|
||||
<li>Ukrainian: <a href="msg-1.10/recoll_uk.ts">recoll_uk.ts</a></li>
|
||||
</ul>
|
||||
|
||||
<h1>Development</h1>
|
||||
|
||||
<p>Apart from general development for additional functionality
|
||||
or bug fixes, the following tasks are waiting for you:</p>
|
||||
<ul>
|
||||
<li>A better GUI design (both the ergonomy and the appearance).</li>
|
||||
|
||||
<li>More translations for the GUI messages (there are
|
||||
relatively few messages, and it's easy to do with the Qt
|
||||
tools). English, French, Russian and Ukrainian versions currently
|
||||
exist. Contact me for directions if needed (or just use
|
||||
<span class="application">Qt Linguist</span> if you know it
|
||||
already). </li>
|
||||
|
||||
<li>More support for the more advanced <span class=
|
||||
"application">Xapian</span> concepts like relevance
|
||||
feedback.</li>
|
||||
|
||||
<li>An interactive indexing configuration tool.</li>
|
||||
|
||||
<li>More filters for less common or less obviously
|
||||
useful file types.</li>
|
||||
|
||||
|
||||
@ -56,19 +56,19 @@
|
||||
<p><i>For building from source</i>, you will need a xapian-core
|
||||
installation. You will find source and binary packages on the
|
||||
<a href="http://www.xapian.org/download.php">Xapian download
|
||||
page</a>. Recoll 1.8.2 should build with any 0.9.x or 1.0.x
|
||||
Xapian version (the current one is 1.0.2).</p>
|
||||
page</a>. Recoll 1.10.0 should build with any 0.9.x or 1.0.x
|
||||
Xapian version (the current one is 1.0.4).</p>
|
||||
|
||||
<p>You need Qt 3.3 (or qt 4) in all cases (configure Recoll with
|
||||
<em>configure --enable-qt4</em> to build with qt4, this needs
|
||||
the qt3 support library to be present).</p>
|
||||
<p>You need Qt 3.3 (or qt 4) in all cases. Recoll will
|
||||
automatically be configured to build with qt4 if the version
|
||||
of qmake found in $QTDIR/bin:$PATH is for qt4.</p>
|
||||
|
||||
<p>Recoll relies on external packages for some
|
||||
of its functionality (ie: for many of the non-text file
|
||||
types). These are not listed as strict dependencies, because
|
||||
the base application can be sufficient in some cases, but you
|
||||
should have a look at the
|
||||
<a href="usermanual/index.html#RCL.INSTALL.EXTERNAL">list</a> to
|
||||
<a href="usermanual/usermanual.html#RCL.INSTALL.EXTERNAL">list</a> to
|
||||
decide what you may want to install.</p>
|
||||
|
||||
<p>In addition, optional functionality in Recoll (the term explorer
|
||||
@ -76,11 +76,14 @@
|
||||
installed version should be at least 0.60 (utf-8 support) for
|
||||
this to run smoothly. This function is far from essential.</p>
|
||||
|
||||
<p>If you find problems with the package or its
|
||||
<p>If you find problems with this page, the package or its
|
||||
installation, <em>please</em>
|
||||
<a href="mailto:jean-francois.dockes@wanadoo.fr">
|
||||
report them</a>.</p>
|
||||
|
||||
<p>The download page for the previous 1.9 version is still
|
||||
<a href="download-1.9.html">here</a></p>
|
||||
|
||||
<h3>What do the release numbers mean?</h3>
|
||||
|
||||
<p>The Recoll releases are numbered X.Y.Z. </p>
|
||||
@ -92,7 +95,7 @@
|
||||
modifications. These may bring bugs, so if you're satisfied
|
||||
with the previous version, and don't need the new features,
|
||||
you may want to wait a little, and especially skip the first
|
||||
release (X.Y.0).</p>
|
||||
release (X.Y.0), at least for a few weeks.</p>
|
||||
<p>The third number (Z) changes for bug fixes. A maintenance
|
||||
branch is kept for each X.Y version, and we try to make
|
||||
minimal changes on this. So, moving from X.Y.Z to X.Y.Z+u
|
||||
@ -104,95 +107,109 @@
|
||||
|
||||
<h2><a name="filters">Updated filters</a></h2>
|
||||
|
||||
<p>New and updated filters are sometimes <a
|
||||
href="filters/filters.html">available</a> before the next Recoll
|
||||
release. There are currently new or updated 1.8 filters for
|
||||
Wordperfect, Abiword, KWord, and OpenOffice.</p>
|
||||
<p>New and updated filters are sometimes
|
||||
<a href="filters/filters.html">available</a> before the next
|
||||
Recoll release. All filters are currently up to date in
|
||||
1.10.0. You can check the page if you are running an older
|
||||
release.</p>
|
||||
|
||||
|
||||
<h2><a name="source">Source</a></h2>
|
||||
|
||||
<p><b>Current version:</b>
|
||||
|
||||
<p>1.8.2: <a href="recoll-1.8.2.tar.gz">recoll-1.8.2.tar.gz</a>
|
||||
See the <a href="BUGS.txt">known bugs and issues</a> and
|
||||
<a href="CHANGES.txt">changes</a>.
|
||||
1.8.2 was released purely for fixing a small issue of
|
||||
compatibility with xapian 1.0.0 and small config/install
|
||||
glitches. There is no functional reason to upgrade from
|
||||
1.8.1, (or update packages).</p>
|
||||
<p>1.10.0: <a href="recoll-1.10.0.tar.gz">recoll-1.10.0.tar.gz</a>
|
||||
See the <a href="BUGS.txt">known bugs and issues</a> and
|
||||
<a href="CHANGES.txt">changes</a>.</p>
|
||||
|
||||
<p>Recoll 1.8.2 is the first release that will let you take
|
||||
advantage of the new Xapian 1.0, the main user-visible change
|
||||
of which is the new default index format. In order to take
|
||||
advantage of the new format (which is not mandatory) Recoll
|
||||
users updating from an older release need to delete their old
|
||||
index. <a href="xapUpg100.html">More details</a>.</p>
|
||||
<p>Recoll 1.10.0 will work with Xapian versions 0.9.x or 1.0.x but
|
||||
1.0 is preferred. In order to take advantage of the new index
|
||||
format in Xapian 1.0, Recoll users updating from 1.8 or older,
|
||||
or who have skipped this step for 1.9 need to delete their old index.
|
||||
<a href="xapUpg100.html">More details</a>.
|
||||
This is not mandatory, and the old index format will continue
|
||||
working just as before (but it is slower, and has a few bugs
|
||||
fixed in 1.0).<em>You don't need to do this if you did it
|
||||
for Recoll 1.9</em></p>
|
||||
|
||||
<p>If updating from 1.8 or older, and you had turned off the
|
||||
mime type icons inside the result lists in your current Recoll
|
||||
version, you need to do a small manual adjustment in 1.9/1.10
|
||||
to achieve the same effect. See the first entry in
|
||||
the <a href="CHANGES.txt">changes</a> list.</p>
|
||||
|
||||
<p>Older recoll releases:
|
||||
<a href="recoll-1.8.1.tar.gz">1.8.1</a>
|
||||
<a href="recoll-1.7.6.tar.gz">1.7.6</a>
|
||||
<a href=""recoll-1.7.5.tar.gz">1.7.5</a>
|
||||
<a href=""recoll-1.6.3.tar.gz">1.6.3</a>
|
||||
<a href=""recoll-1.5.11.tar.gz">1.5.11</a>.
|
||||
<a href=""recoll-1.4.3.tar.gz">1.4.3</a>.
|
||||
<a href=""recoll-1.3.3.tar.gz">1.3.3</a>.
|
||||
<a href=""recoll-1.2.3.tar.gz">1.2.3</a>.
|
||||
<a href=""recoll-1.1.0.tar.gz">1.1.0</a>.
|
||||
<a href=""recoll-1.0.16.tar.gz">1.0.16</a>.
|
||||
</p>
|
||||
<a href="recoll-1.9.0.tar.gz">1.9.0</a>.
|
||||
<a href="recoll-1.8.2.tar.gz">1.8.2</a>.
|
||||
<a href="recoll-1.7.6.tar.gz">1.7.6</a>.
|
||||
<a href="recoll-1.6.3.tar.gz">1.6.3</a>.
|
||||
<a href="recoll-1.5.11.tar.gz">1.5.11</a>.
|
||||
<a href="recoll-1.4.3.tar.gz">1.4.3</a>.
|
||||
<a href="recoll-1.3.3.tar.gz">1.3.3</a>.
|
||||
<a href="recoll-1.2.3.tar.gz">1.2.3</a>.
|
||||
<a href="recoll-1.1.0.tar.gz">1.1.0</a>.
|
||||
<a href="recoll-1.0.16.tar.gz">1.0.16</a>.
|
||||
</p>
|
||||
|
||||
<h2><a name="rpms">Packages</a></h2>
|
||||
|
||||
<p>The executables inside the binary rpms have a static link to
|
||||
xapian 0.9.x, there is no dependency except Qt 3.3. Of course
|
||||
you need xapian-core installed to use the source rpm. </p>
|
||||
xapian 1.0.4, there is no real dependency except Qt 3.3.
|
||||
The Fedora and Mandriva packages unfortunately think that they
|
||||
depend on exiftool (which is needed by the little
|
||||
used jpeg info filter), due to excessive rpmbuild
|
||||
cleverness.
|
||||
<br>
|
||||
Of course you need xapian-core installed to use the source
|
||||
rpms. </p>
|
||||
|
||||
<p><b>Fedora Core</b>
|
||||
FC6 RPM:
|
||||
<a href="fc6/recoll-1.8.1-1.i386.rpm">
|
||||
fc6/recoll-1.8.1-1.i386.rpm</a>.
|
||||
FC5:<a href="fc5/recoll-1.8.1-1.i386.rpm">
|
||||
fc5/recoll-1.8.1-1.i386.rpm</a>.
|
||||
<a href="fc6/recoll-1.10.0-1.i386.rpm">
|
||||
fc6/recoll-1.10.0-1.i386.rpm</a>.
|
||||
Source:
|
||||
<a href="fc6/recoll-1.8.1-1.src.rpm">
|
||||
recoll-1.8.1-1.src.rpm</a>
|
||||
<a href="fc6/recoll-1.10.0-1.src.rpm">
|
||||
recoll-1.10.0-1.src.rpm</a>
|
||||
</p>
|
||||
|
||||
<p><b>Mandriva 2006</b> (also works on 2005 and 2007)
|
||||
<p><b>Mandriva 2006</b> (also works on 2005 and 2007).
|
||||
RPM:
|
||||
<a href="mandriva2006/recoll-1.8.1-0.1.20060mdk.i586.rpm">
|
||||
recoll-1.8.1-0.1.20060mdk.i586.rpm</a>.
|
||||
<a href="mandriva2006/recoll-1.10.0-0.1.20060mdk.i586.rpm">
|
||||
recoll-1.10.0-0.1.20060mdk.i586.rpm</a>.
|
||||
Source:
|
||||
<a href="mandriva2006/recoll-1.8.1-0.1.20060mdk.src.rpm">
|
||||
recoll-1.8.1-0.1.20060mdk.src.rpm</a>
|
||||
<a href="mandriva2006/recoll-1.10.0-0.1.20060mdk.src.rpm">
|
||||
recoll-1.10.0-0.1.20060mdk.src.rpm</a>
|
||||
</p>
|
||||
|
||||
<p><b>Suse 10.1</b>
|
||||
<p><b>Suse 10.2</b>
|
||||
RPM:
|
||||
<a href="suse10.1/recoll-1.8.1-0.i586.rpm">
|
||||
recoll-1.8.1-0.i586.rpm</a>.
|
||||
<a href="suse10.2/recoll-1.10.0-0.i586.rpm">
|
||||
recoll-1.10.0-0.i586.rpm</a>.
|
||||
Source:
|
||||
<a href="suse10.1/recoll-1.8.1-0.src.rpm">
|
||||
recoll-1.8.1-0.src.rpm</a>
|
||||
<a href="suse10.2/recoll-1.10.0-0.src.rpm">
|
||||
recoll-1.10.0-0.src.rpm</a>
|
||||
</p>
|
||||
|
||||
<p><b>Ubuntu 6.10 edgy</b>
|
||||
<p><b>Ubuntu 6.06 dapper</b>
|
||||
This has a static link on xapian 1.0.4:
|
||||
<a href="debian/dapper/recoll_1.10.0-0ubuntu1_i386.deb">
|
||||
recoll_1.10.0-0ubuntu1_i386.deb</a>
|
||||
<a href="debian/edgy/">debian/dapper</a>. This package
|
||||
appears to also work correctly on later Ubuntu releases, so I
|
||||
skipped building specific packages for edgy or gutsy this
|
||||
time. Please contact me if this is a problem.</p>
|
||||
|
||||
<!-- <p><b>Ubuntu 6.10 edgy</b>
|
||||
binary package (also works fine on <b>Ubuntu 7.04 feisty</b>):
|
||||
<a href="debian/edgy/recoll_1.8.1-0ubuntu1_i386.deb">
|
||||
recoll_1.8.1-0ubuntu1_i386.deb</a>.
|
||||
<a href="debian/edgy/recoll_1.9.0-0ubuntu1_i386.deb">
|
||||
recoll_1.9.0-0ubuntu1_i386.deb</a>.
|
||||
Source package directory:
|
||||
<a href="debian/edgy/">debian/edgy</a>
|
||||
</p>
|
||||
|
||||
<p><b>Ubuntu 6.06 dapper</b> (the feisty version does not work
|
||||
on dapper). This has a static link on xapian 0.9.10:
|
||||
<a href="debian/dapper/recoll_1.8.2-0ubuntu1_i386.deb">
|
||||
recoll_1.8.2-0ubuntu1_i386.deb</a> </p>
|
||||
</p> -->
|
||||
|
||||
<p><b>Debian unstable</b> Recoll is in the package repository,
|
||||
you can install it with the usual <em>apt-get install
|
||||
recoll</em>. <a
|
||||
href="http://packages.qa.debian.org/r/recoll.html">
|
||||
you can install it with the usual <em>apt-get install recoll</em>.
|
||||
<a href="http://packages.qa.debian.org/r/recoll.html">
|
||||
Package page</a></p>
|
||||
|
||||
<p><b>Debian 3.1</b> Thanks to Mario (<img align="top" src="mario.png">)
|
||||
@ -207,26 +224,60 @@
|
||||
<h2><a name="otherbinary">Binary bundles</a></h2>
|
||||
|
||||
<p>These are just prebuilt trees (without the source files).
|
||||
The executables were built with xapian 0.9.10 (patched for the
|
||||
NEAR bug) and libiconv
|
||||
1.9.2 (where relevant) as static libraries. They depend on qt
|
||||
3.3. For Solaris, you should be able to find a qt package <a
|
||||
href="http://www.sunfreeware.com/">here</a>.</p>
|
||||
The executables were built with xapian 1.0.4 (patched for the
|
||||
NEAR bug) and libiconv 1.9.2 (where relevant) as static
|
||||
libraries. They depend on qt 3.3. For Solaris, you should be
|
||||
able to find a qt package
|
||||
<a href="http://www.sunfreeware.com/">here</a>.</p>
|
||||
|
||||
<p>The installation instructions are <a
|
||||
href="usermanual/rcl.install.binary.html"> there</a>.</p>
|
||||
|
||||
<p><span class="application">FreeBSD</span> 5.5 i386:
|
||||
<a href="recoll-1.8.1-FreeBSD-5.5-RELEASE.tgz">
|
||||
recoll-1.8.1-FreeBSD-5.5-RELEASE.tgz</a>
|
||||
<p><span class="application">FreeBSD</span> 6.2 i386:
|
||||
<a href="recoll-1.10.0-FreeBSD-6.2-STABLE.tgz">
|
||||
recoll-1.10.0-FreeBSD-6.2-STABLE.tgz</a>
|
||||
</p>
|
||||
|
||||
<p><span class="application">Solaris 8</span> sparc.
|
||||
Note to Solaris users: you need to perform the initial
|
||||
indexing pass with "recollindex", not the recoll GUI indexing
|
||||
thread. See <a href="BUGS.txt">errata</a>.
|
||||
<a href="recoll-1.8.1-SunOS-5.8.tgz">
|
||||
recoll-1.8.1-SunOS-5.8.tgz</a>.</p>
|
||||
<a href="recoll-1.10.0-SunOS-5.8.tgz">
|
||||
recoll-1.10.0-SunOS-5.8.tgz</a>.
|
||||
|
||||
<p>Recoll also builds and runs on Solaris 10, but, given the
|
||||
situation of open source packages for Solaris (very old qt on
|
||||
the Companion CD, inconsistent versions of the compiler and
|
||||
non-threaded version of qt on sunfreeware), I've come to the
|
||||
temporary conclusion that you are better off building than
|
||||
trying to install packages. The approach I recently tried and
|
||||
which worked was to:
|
||||
<ul>
|
||||
<li>Install gcc 3.4.6 and gnu make from the sunfreeware
|
||||
packages (go to /usr/local). I guess that the gcc in
|
||||
/usr/sfw should be ok too here.</li>
|
||||
<li>Compile xapian-core and install it (with prefix
|
||||
/usr/local).</li>
|
||||
<li>Configure and install qt. The following config worked for me,
|
||||
with qt 3.3.8:
|
||||
<pre>
|
||||
./configure -platform solaris-g++ -prefix /usr/local/Trolltech/Qt-3.3.8/ -thread
|
||||
</pre>
|
||||
Then make. Weirdly, I had to add the qt build lib/
|
||||
directory to LD_LIBRARY_PATH at some point during the
|
||||
build).
|
||||
</li>
|
||||
<li>Set QTDIR=/usr/local/Trolltech/Qt-3.3.8 and
|
||||
QMAKESPEC=/usr/local/Trolltech/Qt-3.3.8/mkspecs/solaris-g++
|
||||
and add $QTDIR/bin to the PATH then configure, make and
|
||||
install Recoll</li>
|
||||
<li>Don't forget to use recollindex for the first index
|
||||
build, recoll does not work for this (exception handling
|
||||
mystery probably).</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>Obviously, there are other ways to do it (use CC, install
|
||||
some place else ... ), but I tried this one.</p>
|
||||
|
||||
|
||||
<h2><a name="ports">FreeBSD ports</a></h2>
|
||||
@ -241,41 +292,48 @@
|
||||
<a href="http://cvsweb.freebsd.org/ports/deskutils/recoll">
|
||||
recoll port</a>.</p>
|
||||
|
||||
<p>Local copies of ports for <a href="port-recoll.tgz">recoll-1.8</a> and
|
||||
<a href="port-xapian-core.tgz">xapian-0.9.10</a> (without the
|
||||
NEAR patch).</p>
|
||||
|
||||
<p>Local copies of ports
|
||||
for <a href="port-recoll-1.10.0.tgz">recoll 1.10 port directory</a>.</p>
|
||||
|
||||
<h2><a name="translations">Translations</a></h2>
|
||||
|
||||
<p>Some of the translations for 1.8 are incomplete. The source
|
||||
translation files are included in the source release. If your
|
||||
language has some english messages left and you want to take a
|
||||
shot at fixing the problem, you can send the results to
|
||||
<p>Some of the translations for 1.10 are incomplete. The source
|
||||
translation files are included in the source release. If your
|
||||
language has some english messages left and you want to take a
|
||||
shot at fixing the problem, you can send the results to
|
||||
<a href="mailto:jean-francois.dockes@wanadoo.fr">me</a> and
|
||||
earn my gratefulness (and your less multilingual
|
||||
compatriot's)...</p>
|
||||
|
||||
<p>Update tranlations that became available (thanks to Mario and
|
||||
Olaf!) after the release follow. The <literal>.qm</literal> file
|
||||
should be copied to
|
||||
<span class="filename">/usr/[local/]share/recoll/translations</span>.
|
||||
</p>
|
||||
<p>You can use the <em>.ts</em> file to alter the translations if you
|
||||
wish (use QT's <em>linguist</em> tool to edit the source file, then
|
||||
<em>lrelease</em> to produce the <em>.qm</em> file.).</p>
|
||||
wish (use QT's <em>linguist</em> tool to edit the source file,
|
||||
then <em>lrelease</em> to produce the <em>.qm</em> file.).
|
||||
The <literal>.qm</literal> file should be copied to
|
||||
<span class="filename">/usr/[local/]share/recoll/translations</span>
|
||||
</p>
|
||||
<p>Blank.
|
||||
<a href="translations/recoll_xx.ts">recoll_xx.ts</a> is a blank
|
||||
message file, handy to work on a new translation.</a>
|
||||
<p>Italian.
|
||||
|
||||
<p><a href="translations/recoll_xx.ts">recoll_xx.ts</a> is a blank
|
||||
Recoll 1.10 message file, handy to work on a new translation.</p>
|
||||
|
||||
<h3>Updated 1.10 translations that became available after the
|
||||
release:</h3>
|
||||
|
||||
<p>None for now.</p>
|
||||
<!--
|
||||
<p><b>Italian</b>. Thanks to Mario, Christian and Giovanni for this.
|
||||
<a href="translations/recoll_it.ts">recoll_it.ts</a>
|
||||
<a href="translations/recoll_it.qm">recoll_it.qm</a>
|
||||
</p>
|
||||
<p><b>Turkish</b>. Thanks Serdar.
|
||||
<a href="translations/recoll_tr.ts">recoll_tr.ts</a>
|
||||
<a href="translations/recoll_tr.qm">recoll_tr.qm</a>
|
||||
</p>
|
||||
|
||||
<p>German.
|
||||
<a href="translations/recoll_de.ts">recoll_de.ts</a>
|
||||
<a href="translations/recoll_de.qm">recoll_de.qm</a>
|
||||
</p>
|
||||
-->
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@ -53,31 +53,31 @@
|
||||
|
||||
<dd>
|
||||
<ul>
|
||||
<li><var class="literal">text</var>.</li>
|
||||
<li><span class="literal">text</span>.</li>
|
||||
|
||||
<li><var class="literal">html</var>.</li>
|
||||
<li><span class="literal">html</span>.</li>
|
||||
|
||||
<li><span class="application">OpenOffice</span>
|
||||
files (needs <b>unzip</b> command).</li>
|
||||
<li><span class="literal">OpenOffice</span>
|
||||
files (needs <span class="command">unzip</span> command).</li>
|
||||
|
||||
<li><span class="application">Abiword</span>
|
||||
<li><span class="literal">Abiword</span>
|
||||
files.</li>
|
||||
|
||||
<li><span class="application">Kword</span>
|
||||
<li><span class="literal">Kword</span>
|
||||
files.</li>
|
||||
|
||||
<li><var class="literal">maildir</var> and <var
|
||||
class="literal">mailbox</var> (<span class=
|
||||
"application">Mozilla</span>, <span class=
|
||||
"application">Thunderbird</span> and <span class=
|
||||
"application">Evolution</span> mail ok).</li>
|
||||
<li><span class="literal">maildir</span> and <span
|
||||
class="literal">mailbox</span> (<span class=
|
||||
"literal">Mozilla</span>, <span class=
|
||||
"literal">Thunderbird</span> and <span class=
|
||||
"literal">Evolution</span> mail ok).</li>
|
||||
|
||||
<li><span class="application">gaim</span> log files.</li>
|
||||
<li><span class="literal">gaim</span> log files.</li>
|
||||
|
||||
<li><span class="application">Lyx</span> files (needs
|
||||
<span class="application">Lyx</span> to be installed).</li>
|
||||
<li><span class="literal">Lyx</span> files (needs
|
||||
<span class="literal">Lyx</span> to be installed).</li>
|
||||
|
||||
<li><span class="application">Scribus</span> files.</li>
|
||||
<li><span class="literal">Scribus</span> files.</li>
|
||||
|
||||
</ul>
|
||||
</dd>
|
||||
@ -86,38 +86,57 @@
|
||||
|
||||
<dd>
|
||||
<ul>
|
||||
<li><var class="literal">pdf</var> with <a href=
|
||||
<li><span class="literal">pdf</span> with <a href=
|
||||
"http://www.foolabs.com/xpdf/">xpdf</a>.</li>
|
||||
|
||||
<li><var class="literal">Wordperfect</var> with <a href=
|
||||
<li><span class="literal">Wordperfect</span> with <a href=
|
||||
"http://libwpd.sourceforge.net">libwpd</a>.</li>
|
||||
|
||||
<li><var class="literal">postscript</var> with <a
|
||||
<li><span class="literal">postscript</span> with <a
|
||||
href=
|
||||
"http://www.gnu.org/software/ghostscript/ghostscript.html">
|
||||
ghostscript</a> and <a href=
|
||||
"http://www.cs.wisc.edu/~ghost/doc/pstotext.htm">pstotext</a>.</li>
|
||||
|
||||
<li><span class="application">msword</span> with <a href=
|
||||
<li><span class="literal">msword</span> with <a href=
|
||||
"http://www.winfield.demon.nl/">antiword</a>.</li>
|
||||
<li><span class="application">Powerpoint</span> and
|
||||
<span class="application">Excel</span> with the
|
||||
<li><span class="literal">Powerpoint</span> and
|
||||
<span class="literal">Excel</span> with the
|
||||
<a href="http://www.45.free.net/~vitus/software/catdoc/">
|
||||
catdoc</a> utilities.</li>
|
||||
|
||||
<li><var class="literal">rtf</var> with <a href=
|
||||
<li><span class="literal">rtf</span> with <a href=
|
||||
"http://www.gnu.org/software/unrtf/unrtf.html">unrtf</a>.</li>
|
||||
|
||||
<li><var class="literal">dvi</var> with
|
||||
<li><span class="literal">TeX</span> with
|
||||
<span class="command">untex</span>. If there is no untex
|
||||
package for your distribution,
|
||||
<a href="untex/untex-1.3.jf.tar.gz">a source package is
|
||||
stored on this site</a> (as untex has no obvious
|
||||
home).
|
||||
Will also work
|
||||
with <a
|
||||
href="http://www.cs.purdue.edu/homes/trinkle/detex/">detex</a>
|
||||
if this is installed.
|
||||
</li>
|
||||
|
||||
<li><span class="literal">dvi</span> with
|
||||
<a href="http://www.radicaleye.com/dvips.html">dvips</a>.
|
||||
</li>
|
||||
|
||||
<li><var class="literal">djvu</var> with
|
||||
<a href="http://djvulibre.djvuzone.org/doc/index.html">DjVuLibre</a>.
|
||||
<li><span class="literal">djvu</span> with
|
||||
<a href="http://djvu.sourceforge.net">DjVuLibre</a>.
|
||||
</li>
|
||||
<li><var class="literal">mp3</var> tags support with
|
||||
<li><span class="literal">mp3</span> tags support with
|
||||
<a href="http://id3lib.sourceforge.net/">id3info (id3lib)</a>.
|
||||
</li>
|
||||
<li>Image file tags support with
|
||||
<a href="http://www.sno.phy.queensu.ca/~phil/exiftool/">
|
||||
exiftool</a>. This is a perl program, so you also
|
||||
need perl on the system. This works with about any
|
||||
possible image file and tag format (jpg, png, tiff,
|
||||
gif etc.).
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</dd>
|
||||
@ -146,7 +165,6 @@
|
||||
<li>An indexer which runs either as a thread inside the GUI,
|
||||
as an external, batch, cron'able program, or as a
|
||||
real-time indexing daemon.</li>
|
||||
|
||||
</ul>
|
||||
</dd>
|
||||
</ul>
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
<dt><a name="systems">Systèmes</a></dt>
|
||||
<dd><span class="application">Recoll</span> a été compilé et
|
||||
testé sur FreeBSD, Linux, Darwin, Solaris (versions
|
||||
FreeBSD 5.5, Fedora Core 5, Suse 10.1, Gentoo,
|
||||
FreeBSD 5/6, Fedora Core 5/6, Suse 10.1, Gentoo,
|
||||
Debian 3.1, Ubuntu Edgy, Solaris 8/9, mais d'autres versions
|
||||
récentes conviennent sans doute également).</dd>
|
||||
|
||||
@ -60,6 +60,10 @@
|
||||
<li><span class="application">OpenOffice</span>
|
||||
(avec l'aide de la commande <b>unzip</b>).</li>
|
||||
|
||||
<li><span class="application">Abiword</span>.</li>
|
||||
|
||||
<li><span class="application">Kword</span>.</li>
|
||||
|
||||
<li><var class="literal">maildir</var> et <var
|
||||
class="literal">mailbox</var> (<span class=
|
||||
"application">Mozilla</span>, <span class=
|
||||
@ -69,29 +73,30 @@
|
||||
|
||||
<li>Fichiers de conversation <span class="application">
|
||||
gaim</span>.</li>
|
||||
<li><span class="application">Lyx</span> (qui doit
|
||||
être présent).</li>
|
||||
|
||||
<li><span class="application">Scribus</span>.</li>
|
||||
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
<dt>With external helpers</dt>
|
||||
<dt>Avec des paquets externes</dt>
|
||||
|
||||
<dd>
|
||||
<ul>
|
||||
<li><var class="literal">pdf</var> avec <a href=
|
||||
"http://www.foolabs.com/xpdf/">xpdf</a>.</li>
|
||||
|
||||
<li><var class="application">Wordperfect</var> avec <a href=
|
||||
"http://libwpd.sourceforge.net">libwpd</a>.</li>
|
||||
|
||||
<li><var class="literal">postscript</var> avec
|
||||
<a href="http://www.gnu.org/software/ghostscript/ghostscript.html">
|
||||
ghostscript</a> et
|
||||
<a href="http://www.cs.wisc.edu/~ghost/doc/pstotext.htm">
|
||||
pstotext</a>.</li>
|
||||
|
||||
<li>Fichiers <span class="application">Lyx</span>
|
||||
(nécessite l'application
|
||||
<span class="application">Lyx</span>).</li>
|
||||
|
||||
<li><span class="application">msword</span> avec <a href=
|
||||
"http://www.winfield.demon.nl/">antiword</a>.</li>
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
<li><a href="pics/index.html">Screenshots</a></li>
|
||||
<li><a href="download.html">Downloads</a></li>
|
||||
<li><a href="doc.html">Documentation</a></li>
|
||||
<li><a href="devel.html">Development</a></li>
|
||||
<li><a href="devel.html">Helping out</a></li>
|
||||
</ul>
|
||||
<p class="indexthumb">
|
||||
<a href="pics/index.html"><img width="100" alt=
|
||||
@ -47,7 +47,7 @@
|
||||
|
||||
<p><span class="application">Recoll</span> is free, open source,
|
||||
and licensed under the GPL. The current version is
|
||||
<a class="important" href="download.html">1.8.2</a></p>
|
||||
<a class="important" href="download.html">1.10.0</a></p>
|
||||
<p>We borrow a lot of code
|
||||
from other packages, and welcome code and ideas from
|
||||
contributors, see the <a class="important"
|
||||
@ -60,7 +60,7 @@
|
||||
tips</a> might prove useful !</p>
|
||||
</blockquote>
|
||||
|
||||
<h2>Features: </h1>
|
||||
<h2>Features: </h2>
|
||||
|
||||
<ul>
|
||||
<li>Easy installation, few dependancies. No database daemon,
|
||||
@ -82,22 +82,20 @@
|
||||
</ul>
|
||||
|
||||
|
||||
<h2>News: </h1>
|
||||
<p>There are new filters for
|
||||
<span class="application">kword</span> and
|
||||
<span class="application">abiword</span> files in the
|
||||
<a href="filters/filters.html">new filters section</a>. These
|
||||
are usable with an existing <span
|
||||
class="application">Recoll</span> 1.8 installation.</p>
|
||||
|
||||
<h2>News: </h2>
|
||||
<ul>
|
||||
<li>2007-11-21 Recoll 1.10.0 is out :) </li>
|
||||
|
||||
<h2><a name="support">Support</a></h3>
|
||||
|
||||
<p>If you have any problem with Recoll, its
|
||||
installation, or an idea for improvement, <em>please</em> <a href=
|
||||
"mailto:jean-francois.dockes@wanadoo.fr">provide
|
||||
feedback</a>. Also see the <a href="devel.html">development</a>
|
||||
page.</p>
|
||||
feedback</a>. You can also have a look at
|
||||
the <a href="devel.html">development</a> page for things you
|
||||
could do.</p>
|
||||
|
||||
<p>The list of known bugs is <a href="BUGS.txt">here</a></p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<!DDOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
@ -47,8 +47,8 @@
|
||||
|
||||
<p><span class="application">Recoll</span> est un logiciel libre
|
||||
gratuit, dont le code source est disponible sous licence GPL.
|
||||
La version à jour est
|
||||
<a class="important" href="download.html">1.8.2</a></p>
|
||||
La dernière version est
|
||||
<a class="important" href="download.html">1.10.0</a></p>
|
||||
|
||||
<p><span class="application">Recoll</span> emprunte beaucoup de code
|
||||
d'autres logiciels libres, et accueille volontiers les
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
<blockquote>
|
||||
<p><b><i>Déjà utilisateur ?</i></b> Il est possible qu'il
|
||||
y ait encore quelques astuces qui vous aient echappé. Un coup
|
||||
y ait encore quelques astuces qui vous aient échappées. Un coup
|
||||
d'oeil rapide sur la page des
|
||||
<a href="usermanual/rcl.search.tips.html">petites recettes
|
||||
de recherche</a> pourrait s'avérer fructueux !</p>
|
||||
@ -98,13 +98,7 @@
|
||||
</ul>
|
||||
|
||||
<h2>Nouvelles: </h1>
|
||||
<p>Il y a de nouveaux filtres d'indexation pour les fichiers
|
||||
<span class="application">kword</span> et
|
||||
<span class="application">abiword</span>. Ils sont téléchargeables
|
||||
dans la <a href="filters/filters.html">zone des nouveaux
|
||||
filtres</a>, et sont utilisable avec une installation existante de
|
||||
<span class="application">Recoll</span> 1.8.</p>
|
||||
|
||||
<p>2007-11-21 Recoll 1.10.0 est sorti.</p>
|
||||
|
||||
<h2><a name="support">Support</a></h3>
|
||||
|
||||
@ -113,7 +107,10 @@
|
||||
<a href=
|
||||
"mailto:jean-francois.dockes@wanadoo.fr">contacter</a>.</p>
|
||||
|
||||
<p>Voir aussi la <a href="devel.html">page sur le développement</a>.</p>
|
||||
<p>Voir aussi la <a href="devel.html">page sur le
|
||||
développement</a>.</p>
|
||||
<p><a href="BUGS.txt">Liste des problèmes connus</a> (en
|
||||
anglais). </p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@ -1,27 +1,18 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Recoll Screenshots</title>
|
||||
<link type="text/css" rel="stylesheet" href="../styles/style.css">
|
||||
<title>Photos</title>
|
||||
</head>
|
||||
<body>
|
||||
<body>
|
||||
<div class="rightlinks">
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="../download.html">Downloads</a></li>
|
||||
<li><a href="../usermanual/index.html">User manual</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h1>Screenshots</h1>
|
||||
<a href="recoll0.html"><img src="recoll0-thumb.png"></a>
|
||||
<a href="recoll1.html"><img src="recoll1-thumb.png"></a>
|
||||
<a href="recoll2.html"><img src="recoll2-thumb.png"></a>
|
||||
<a href="recoll3.html"><img src="recoll3-thumb.png"></a>
|
||||
<a href="recoll4.html"><img src="recoll4-thumb.png"></a>
|
||||
<a href="recoll5.html"><img src="recoll5-thumb.png"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center"><a href="recoll0.html"><img src="recoll0-thumb.png"></a></td>
|
||||
<td align="center"><a href="recoll1.html"><img src="recoll1-thumb.png"></a></td>
|
||||
<td align="center"><a href="recoll2.html"><img src="recoll2-thumb.png"></a></td>
|
||||
<td align="center"><a href="recoll3.html"><img src="recoll3-thumb.png"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="recoll4.html"><img src="recoll4-thumb.png"></a></td>
|
||||
<td align="center"><a href="recoll5.html"><img src="recoll5-thumb.png"></a></td>
|
||||
<td align="center"><a href="recoll_chinese.html"><img src="recoll_chinese-thumb.png"></a></td>
|
||||
</tr></table></body></html>
|
||||
|
||||
@ -77,6 +77,9 @@ p.indexthumb {
|
||||
.application {
|
||||
font-weight: bold;
|
||||
}
|
||||
.literal {
|
||||
font-family: monospace;
|
||||
}
|
||||
.command {
|
||||
font-family: monospace;
|
||||
}
|
||||
@ -85,7 +88,7 @@ p.indexthumb {
|
||||
color: #007a00;
|
||||
}
|
||||
|
||||
a.important {
|
||||
.important {
|
||||
background: yellow;
|
||||
}
|
||||
a.weak {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user