diff --git a/packaging/debian/buildppa.sh b/packaging/debian/buildppa.sh index 005a4b03..609f89ab 100644 --- a/packaging/debian/buildppa.sh +++ b/packaging/debian/buildppa.sh @@ -4,27 +4,39 @@ # For the kio: (and kdesdk?) # sudo apt-get install pkg-kde-tools cdbs -RCLVERS=1.14.3 +RCLVERS=1.15.0 PPAVERS=1 ########## QT3 series3="" -series3="dapper hardy" +case $RCLVERS in + 1.14*) + series3="dapper hardy";; +esac + +if test X$series3 != X; then + debdir=debianrclqt3 -debdir=debianrclqt3 - -rm -rf recoll-${RCLVERS}/debian -cp -rp $debdir recoll-${RCLVERS}/debian -for series in $series3;do - sed -e s/SERIES/$series/g < ${debdir}/changelog > \ - recoll-${RCLVERS}/debian/changelog ; - (cd recoll-${RCLVERS};debuild -S -sa) || break - dput recoll-ppa recoll_${RCLVERS}-0~ppa${PPAVERS}~${series}1_source.changes -done + rm -rf recoll-${RCLVERS}/debian + cp -rp $debdir recoll-${RCLVERS}/debian + for series in $series3;do + sed -e s/SERIES/$series/g < ${debdir}/changelog > \ + recoll-${RCLVERS}/debian/changelog ; + (cd recoll-${RCLVERS};debuild -S -sa) || break + dput recoll-ppa recoll_${RCLVERS}-0~ppa${PPAVERS}~${series}1_source.changes + done +fi ####### QT4 series4="" -series4="jaunty karmic lucid maverick" +case $RCLVERS in + 1.14*) + series4="jaunty karmic lucid maverick natty";; + *) + # jaunty had qt 4.3 1.15+ needs at least 4.4 + series4="karmic lucid maverick natty";; +esac + debdir=debianrclqt4 rm -rf recoll-${RCLVERS}/debian diff --git a/packaging/debian/debiankio/changelog b/packaging/debian/debiankio/changelog index f0918888..ab3b608e 100644 --- a/packaging/debian/debiankio/changelog +++ b/packaging/debian/debiankio/changelog @@ -1,3 +1,9 @@ +kio-recoll (1.15.0-0~ppa1~SERIES1) SERIES; urgency=low + + * Update to recoll version 1.15.0 + + -- Jean-Francois Dockes Wed, 02 Feb 2011 09:48:00 +0200 + kio-recoll (1.14.3-0~ppa1~SERIES1) SERIES; urgency=low * Update to recoll version 1.14.3 diff --git a/packaging/debian/debianrclqt4/changelog b/packaging/debian/debianrclqt4/changelog index fb9b30ce..e2fbd4ec 100644 --- a/packaging/debian/debianrclqt4/changelog +++ b/packaging/debian/debianrclqt4/changelog @@ -1,3 +1,7 @@ +recoll (1.15.0-0~ppa1~SERIES1) SERIES; urgency=low + * Updated package to recoll version 1.15.0 + -- Jean-Francois Dockes Wed, 02 Feb 2011 09:48:00 +0200 + recoll (1.14.3-0~ppa1~SERIES1) SERIES; urgency=low * Update to release 1.14.3 -- Jean-Francois Dockes Thu, 25 Nov 2010 10:25:00 +0200 diff --git a/packaging/rpm/recoll.spec b/packaging/rpm/recoll.spec index 528b5845..0300bd00 100644 --- a/packaging/rpm/recoll.spec +++ b/packaging/rpm/recoll.spec @@ -1,6 +1,6 @@ %define name recoll -%define version 1.14.3 -%define release 1 +%define version 1.15.0 +%define release 0 Name: %{name} Version: %{version} @@ -62,6 +62,8 @@ rm -rf $RPM_BUILD_ROOT # --------------------------------------------------------------------------- %changelog +* Thu Feb 2 2011 Jean-Francois Dockes 1.15.0-0 +- Update to release 1.15.0 * Thu Oct 28 2010 Jean-Francois Dockes 1.14.3-1 - Update to release 1.14.3 * Thu Oct 28 2010 Jean-Francois Dockes 1.14.2-1 diff --git a/packaging/rpm/recollfedora10+.spec b/packaging/rpm/recollfedora10+.spec index 0a6210e2..4c0253b2 100644 --- a/packaging/rpm/recollfedora10+.spec +++ b/packaging/rpm/recollfedora10+.spec @@ -1,12 +1,12 @@ Name: recoll -Version: 1.14.2 +Version: 1.15.0 Release: 1%{?dist} Summary: Desktop full text search tool with a qt gui Group: Applications/Databases License: GPLv2 URL: http://www.recoll.org/ -Source0: http://www.recoll.org/recoll-1.14.2.tar.gz +Source0: http://www.recoll.org/recoll-1.15.0.tar.gz BuildRequires: qt-devel xapian-core-devel zlib-devel desktop-file-utils @@ -50,8 +50,8 @@ rm -rf %{buildroot} %doc %changelog -* Sat Sep 24 2010 J.F. Dockes 1.14.2-1 -- updated to release 1.14.2 +* Wed Feb 02 2011 J.F. Dockes 1.15.0-1 +- updated to release 1.15.0 * Mon Sep 13 2010 J.F. Dockes 1.14.0-1 - updated to release 1.14.0 * Sun May 9 2010 J.F. Dockes 1.13.04-2 diff --git a/packaging/rpm/recollmdk.spec b/packaging/rpm/recollmdk.spec index 6df5388d..20499d80 100644 --- a/packaging/rpm/recollmdk.spec +++ b/packaging/rpm/recollmdk.spec @@ -1,5 +1,5 @@ %define name recoll -%define version 1.14.3 +%define version 1.15.0 %define release %mkrel 1 Name: %{name} @@ -13,8 +13,7 @@ Group: Applications/Databases BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot License: GPL -# We build with a static link to xapian to avoid this dependency -#Requires: xapian-core +Requires: xapian-core %description Recoll is a personal full text search package for Linux, FreeBSD and @@ -32,7 +31,7 @@ interface. %build [ -n "$QTDIR" ] || . %{_sysconfdir}/profile.d/60qt4.sh %configure -make %{?_smp_mflags} static +make %{?_smp_mflags} # --------------------------------------------------------------------------- @@ -60,6 +59,8 @@ rm -rf $RPM_BUILD_ROOT # --------------------------------------------------------------------------- %changelog +* Wed Feb 02 2011 Jean-Francois Dockes 1.15.0-1 +- Update to release 1.15.0 * Thu Nov 25 2010 Jean-Francois Dockes 1.14.3-1 - Update to release 1.14.2 * Sat Sep 24 2010 Jean-Francois Dockes 1.14.2-1 diff --git a/src/doc/user/usermanual.sgml b/src/doc/user/usermanual.sgml index 631f1d26..a9448b8a 100644 --- a/src/doc/user/usermanual.sgml +++ b/src/doc/user/usermanual.sgml @@ -2,7 +2,7 @@ Recoll"> Recoll helper applications page"> - + Xapian"> ]> diff --git a/src/excludefile b/src/excludefile index 3145abc1..ce8a688d 100644 --- a/src/excludefile +++ b/src/excludefile @@ -9,6 +9,7 @@ .obj .svn .ui +*.pyc CVS TAGS alldeps @@ -22,6 +23,8 @@ lib/librcl.a makesrcdist.sh mk/localdefs mk/manifest.txt +php/recoll/include/ +php/recoll/modules/ qtgui/Makefile qtgui/preview/Makefile qtgui/preview/preview.pro diff --git a/src/makestaticdist.sh b/src/makestaticdist.sh index bdc74e6b..d268b8da 100644 --- a/src/makestaticdist.sh +++ b/src/makestaticdist.sh @@ -51,11 +51,27 @@ make static || exit 1 ${STRIP} index/recollindex ${QTGUI}/recoll -files="COPYING README INSTALL VERSION Makefile recollinstall -filters desktop sampleconf doc/user doc/man -index/recollindex index/rclmon.sh ${QTGUI}/recoll qtgui/i18n/*.qm +files=" +COPYING +INSTALL +Makefile +README +VERSION +desktop +desktop/recoll-searchgui.desktop +desktop/recoll.png +doc/man +doc/user +filters +index/rclmon.sh +index/recollindex +qtgui/i18n/*.qm +qtgui/images qtgui/mtpics/*.png -desktop/recoll.png desktop/recoll-searchgui.desktop" +qtgui/recoll +recollinstall +sampleconf +" $TAR chf - $files | (cd $topdir; $TAR xf -) diff --git a/src/mk/manifest.txt b/src/mk/manifest.txt index b0ab7147..d3c30425 100644 --- a/src/mk/manifest.txt +++ b/src/mk/manifest.txt @@ -122,7 +122,10 @@ filters/rclics filters/rclid3 filters/rclimg filters/rclinfo +filters/rclkar filters/rclkwd +filters/rcllatinclass.py +filters/rcllatinstops.zip filters/rcllyx filters/rclman filters/rclnull @@ -244,17 +247,8 @@ python/samples/recollq.py python/samples/recollqsd.py python/xesam/ python/xesam/xesam-recoll-service -qt4gui/ -qt4gui/q3richtext_p.h -qt4gui/rclmain.ui -qt4gui/recoll.pro.in -qt4gui/recoll.qrc -qt4gui/spell.ui -qt4gui/ui_rclmain.h-4.5 -qt4gui/uifrom3 qtgui/ qtgui/advsearch.ui -qtgui/advsearch.ui.h qtgui/advsearch_w.cpp qtgui/advsearch_w.h qtgui/confgui/ @@ -290,20 +284,20 @@ qtgui/images/ qtgui/images/asearch.png qtgui/images/cancel.png qtgui/images/close.png -qtgui/images/d_firstpage.png -qtgui/images/d_nextpage.png -qtgui/images/d_prevpage.png -qtgui/images/d_spell.png +qtgui/images/down.png qtgui/images/firstpage.png qtgui/images/history.png qtgui/images/nextpage.png qtgui/images/prevpage.png qtgui/images/sortparms.png qtgui/images/spell.png +qtgui/images/table.png +qtgui/images/up.png qtgui/main.cpp qtgui/mtpics/ qtgui/mtpics/License_sidux.txt qtgui/mtpics/README +qtgui/mtpics/aptosid-book.png qtgui/mtpics/aptosid-manual-copyright.txt qtgui/mtpics/aptosid-manual.png qtgui/mtpics/document.png @@ -325,8 +319,6 @@ qtgui/mtpics/spreadsheet.png qtgui/mtpics/text-x-python.png qtgui/mtpics/txt.png qtgui/mtpics/wordprocessing.png -qtgui/preview.ui -qtgui/preview.ui.h qtgui/preview_w.cpp qtgui/preview_w.h qtgui/rclhelp.cpp @@ -336,24 +328,22 @@ qtgui/rclmain_w.cpp qtgui/rclmain_w.h qtgui/recoll.h qtgui/recoll.pro.in -qtgui/recollmain.ui.h +qtgui/recoll.qrc qtgui/reslist.cpp qtgui/reslist.h +qtgui/restable.cpp +qtgui/restable.h +qtgui/restable.ui qtgui/searchclause_w.cpp qtgui/searchclause_w.h -qtgui/sort.ui -qtgui/sort.ui.h -qtgui/sort_w.cpp -qtgui/sort_w.h qtgui/spell.ui qtgui/spell_w.cpp qtgui/spell_w.h qtgui/ssearch_w.cpp qtgui/ssearch_w.h qtgui/ssearchb.ui -qtgui/ssearchb.ui.h +qtgui/ui_rclmain.h-4.5 qtgui/uiprefs.ui -qtgui/uiprefs.ui.h qtgui/uiprefs_w.cpp qtgui/uiprefs_w.h qtgui/viewaction.ui diff --git a/src/qtgui/i18n/recoll_de.ts b/src/qtgui/i18n/recoll_de.ts index 1c64e2f0..b95c0700 100644 --- a/src/qtgui/i18n/recoll_de.ts +++ b/src/qtgui/i18n/recoll_de.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -448,6 +446,14 @@ Do you want to start the preferences dialog ? Save file + + Result count (est.) + + + + Query details + Suchdetails + RclMainBase @@ -603,6 +609,105 @@ Do you want to start the preferences dialog ? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Dateiname + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Mime Type + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + Datum + + + Date and time + + ResList @@ -640,7 +745,7 @@ Do you want to start the preferences dialog ? Query details - Suchdetails + Suchdetails (show query) @@ -650,14 +755,6 @@ Do you want to start the preferences dialog ? Copy &File Name &Dateinamen kopieren - - filtered - - - - sorted - - Document history Dokumenthistorie @@ -703,6 +800,25 @@ Do you want to start the preferences dialog ? + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -844,38 +960,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Datum + Datum Mime type - Mime Type + Mime Type SortFormBase Sort Criteria - Sortierkriterium + Sortierkriterium Sort the - Zeige die + Zeige die most relevant results by: - relevantesten Ergebnisse sortiert nach: + relevantesten Ergebnisse sortiert nach: Descending - Absteigend + Absteigend Close - Schließen + Schließen Apply - Übernehmen + Übernehmen @@ -1447,7 +1563,7 @@ für Ergebnisse Start with sort dialog open. - Nach dem Start automatisch den Sortierdialog öffnen. + Nach dem Start automatisch den Sortierdialog öffnen. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_fr.ts b/src/qtgui/i18n/recoll_fr.ts index ad7425a8..a3be8a0a 100644 --- a/src/qtgui/i18n/recoll_fr.ts +++ b/src/qtgui/i18n/recoll_fr.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -458,6 +456,14 @@ Voulez vous démarrer le dialogue de préférences ? Save file Sauvegarder le fichier + + Result count (est.) + Nombre de résultats (est.) + + + Query details + Détails de la recherche + RclMainBase @@ -617,6 +623,105 @@ Voulez vous démarrer le dialogue de préférences ? Full Screen Plein écran + + &Erase search history + &Effacer l'historique des recherches + + + sortByDateAsc + sortByDateAsc + + + Sort by dates from oldest to newest + Trier par date des plus anciennes aux plus récentes + + + sortByDateDesc + sortByDateDesc + + + Sort by dates from newest to oldest + Trier par date des plus récentes aux plus anciennes + + + Show Query Details + Afficher la requête en détails + + + Show results as table + Afficher les résultats en tableau + + + + RecollModel + + Abstract + Extrait + + + Author + Auteur + + + Document size + Taille document + + + Document date + Date document + + + File size + Taille fichier + + + File name + Nom de fichier + + + File date + Date fichier + + + Ipath + Ipath + + + Keywords + Mots clef + + + Mime type + Type Mime + + + Original character set + Jeu de caractères d'origine + + + Relevancy rating + Pertinence + + + Title + Titre + + + URL + URL + + + Mtime + Mtime + + + Date + Date + + + Date and time + Date et heure + ResList @@ -654,7 +759,7 @@ Voulez vous démarrer le dialogue de préférences ? Query details - Détail de la recherche + Détail de la recherche (show query) @@ -666,11 +771,11 @@ Voulez vous démarrer le dialogue de préférences ? filtered - filtré + filtré sorted - trié + trié Document history @@ -717,6 +822,25 @@ Voulez vous démarrer le dialogue de préférences ? pour + + ResTable + + &Reset sort + &Revenir au tri par pertinence + + + &Delete column + &Enlever la colonne + + + Add " + Ajouter " + + + " column + " colonne + + SSearch @@ -769,7 +893,19 @@ Voulez vous démarrer le dialogue de préférences ? <i>"term1 term2"p</i> : unordered proximity search with default distance.<br> Use <b>Show Query</b> link when in doubt about result and see manual (&lt;F1>) for more detail. - + Entrer une expression du langage de recherche. Antisèche:<br> +<i>term1 term2</i> : 'term1' ET 'term2' champ non spécifié.<br> +<i>field:term1</i> : 'term1' recherche dans le champ 'field'.<br> + Noms de champs standards (utiliser les mots anglais)/alias:<br> + title/subject/caption, author/from, recipient/to, filename, ext.<br> + Pseudo-champs: dir, mime/format, type/rclcat, date.<br> + Examples d'intervalles de dates: 2009-03-01/2009-05-20 2009-03-01/P2M.<br> +<i>term1 term2 OR term3</i> : term1 AND (term2 OR term3).<br> + NE PAS mettre les parenthèses.<br> +<i>"term1 term2"</i> : phrase exacte. Options::<br> +<i>"term1 term2"p</i> : proximité (pas d'ordre).<br> +Utiliser le lien <b>Afficher la requête en détail</b> en cas de doute sur les résultats et consulter le manuel (en anglais) (&lt;F1>) pour plus de détails. + Enter file name wildcard expression. @@ -858,38 +994,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Date + Date Mime type - Type Mime + Type Mime SortFormBase Sort Criteria - Critères de tri + Critères de tri Sort the - Trier les + Trier les most relevant results by: - résultats les plus pertinents en fonction de: + résultats les plus pertinents en fonction de: Descending - Décroissant + Décroissant Close - Fermer + Fermer Apply - Appliquer + Appliquer @@ -1521,7 +1657,7 @@ Ceci diminue les ressources consommées par l'indexation et aide le chargem Start with sort dialog open. - Panneau de tri ouvert au démarrage. + Panneau de tri ouvert au démarrage. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_it.ts b/src/qtgui/i18n/recoll_it.ts index 7137bdd7..5c7970f1 100644 --- a/src/qtgui/i18n/recoll_it.ts +++ b/src/qtgui/i18n/recoll_it.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -447,6 +445,14 @@ Do you want to start the preferences dialog ? Save file + + Result count (est.) + + + + Query details + Dettagli ricerca + RclMainBase @@ -602,6 +608,105 @@ Do you want to start the preferences dialog ? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Nome file + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Tipo MIME + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + Data + + + Date and time + + ResList @@ -639,7 +744,7 @@ Do you want to start the preferences dialog ? Query details - Dettagli ricerca + Dettagli ricerca (show query) @@ -649,14 +754,6 @@ Do you want to start the preferences dialog ? Copy &File Name Copia il nome del &File - - filtered - - - - sorted - - Document history Cronologia dei documenti @@ -702,6 +799,25 @@ Do you want to start the preferences dialog ? per + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -843,38 +959,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Data + Data Mime type - Tipo MIME + Tipo MIME SortFormBase Sort Criteria - Criterio di ordinamento + Criterio di ordinamento Sort the - Ordina i + Ordina i most relevant results by: - risultati piu' rilevanti per: + risultati piu' rilevanti per: Descending - Discendente + Discendente Close - Chiudi + Chiudi Apply - Applica + Applica @@ -1465,7 +1581,7 @@ This will help searching very big text files (ie: log files). Start with sort dialog open. - Inizia con la finestra di ordinamento aperta. + Inizia con la finestra di ordinamento aperta. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_lt.ts b/src/qtgui/i18n/recoll_lt.ts index 3bbfed60..8a53b99e 100644 --- a/src/qtgui/i18n/recoll_lt.ts +++ b/src/qtgui/i18n/recoll_lt.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -458,6 +456,14 @@ Ar norėtumete iššaukti nustatymų langą? Save file + + Result count (est.) + + + + Query details + Užklausos detalės + RclMainBase @@ -613,6 +619,105 @@ Ar norėtumete iššaukti nustatymų langą? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Bylos vardas + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Mime tipas + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + Data + + + Date and time + + ResList @@ -642,15 +747,15 @@ Ar norėtumete iššaukti nustatymų langą? Query details - Užklausos detalės + Užklausos detalės filtered - išfiltruota + išfiltruota sorted - surūšiuota + surūšiuota Document history @@ -713,6 +818,25 @@ Ar norėtumete iššaukti nustatymų langą? + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -854,38 +978,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Data + Data Mime type - Mime tipas + Mime tipas SortFormBase Sort Criteria - Rūšiavimo kriterijus + Rūšiavimo kriterijus Sort the - Rūšiuoti + Rūšiuoti most relevant results by: - tinkamiausi rezultatai pagal: + tinkamiausi rezultatai pagal: Descending - Mažėjimo tvarka + Mažėjimo tvarka Apply - Pritaikyti + Pritaikyti Close - Uždaryti + Uždaryti @@ -1498,7 +1622,7 @@ This will help searching very big text files (ie: log files). Start with sort dialog open. - Pradėti su atidarytu rūšiavimo langu. + Pradėti su atidarytu rūšiavimo langu. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_ru.ts b/src/qtgui/i18n/recoll_ru.ts index d857e553..134ac08e 100644 --- a/src/qtgui/i18n/recoll_ru.ts +++ b/src/qtgui/i18n/recoll_ru.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -459,6 +457,14 @@ Do you want to start the preferences dialog ? Save file + + Result count (est.) + + + + Query details + Подробности запроса + RclMainBase @@ -614,6 +620,105 @@ Do you want to start the preferences dialog ? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Имя файла + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Тип MIME + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + Дата + + + Date and time + + ResList @@ -647,7 +752,7 @@ Do you want to start the preferences dialog ? Query details - Подробности запроса + Подробности запроса (show query) @@ -663,11 +768,11 @@ Do you want to start the preferences dialog ? filtered - фильтрованное + фильтрованное sorted - сортированное + сортированное Document history @@ -714,6 +819,25 @@ Do you want to start the preferences dialog ? по + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -851,38 +975,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Дата + Дата Mime type - Тип MIME + Тип MIME SortFormBase Sort Criteria - Критерии сортировки + Критерии сортировки Sort the - Сортировать + Сортировать most relevant results by: - наиболее похожих результатов по: + наиболее похожих результатов по: Descending - убыванию + убыванию Close - Закрыть + Закрыть Apply - Применить + Применить @@ -1498,7 +1622,7 @@ This will help searching very big text files (ie: log files). Start with sort dialog open. - Открывать диалог сортировки при запуске. + Открывать диалог сортировки при запуске. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_tr.ts b/src/qtgui/i18n/recoll_tr.ts index 6680ce0c..10b75f3d 100644 --- a/src/qtgui/i18n/recoll_tr.ts +++ b/src/qtgui/i18n/recoll_tr.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -448,6 +446,14 @@ Do you want to start the preferences dialog ? Save file + + Result count (est.) + + + + Query details + Sorgu detayları + RclMainBase @@ -603,6 +609,105 @@ Do you want to start the preferences dialog ? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Dosya adı + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Mime Tipi + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + Tarih + + + Date and time + + ResList @@ -648,15 +753,7 @@ Do you want to start the preferences dialog ? Query details - Sorgu detayları - - - filtered - - - - sorted - + Sorgu detayları Document history @@ -703,6 +800,25 @@ Do you want to start the preferences dialog ? + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -844,38 +960,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Tarih + Tarih Mime type - Mime Tipi + Mime Tipi SortFormBase Sort Criteria - Sıralama Ölçütü + Sıralama Ölçütü Sort the - Sırala + Sırala most relevant results by: - en uygun sonuç veren: + en uygun sonuç veren: Descending - Azalan + Azalan Apply - Uygula + Uygula Close - Kapat + Kapat @@ -1465,7 +1581,7 @@ This will help searching very big text files (ie: log files). Start with sort dialog open. - Sıralama penceresi ile başla. + Sıralama penceresi ile başla. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_uk.ts b/src/qtgui/i18n/recoll_uk.ts index 34de6cdc..37f6543b 100644 --- a/src/qtgui/i18n/recoll_uk.ts +++ b/src/qtgui/i18n/recoll_uk.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -459,6 +457,14 @@ Do you want to start the preferences dialog ? Save file + + Result count (est.) + + + + Query details + Деталі запиту + RclMainBase @@ -614,6 +620,105 @@ Do you want to start the preferences dialog ? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Ім'я файлу + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Тип MIME + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + Дата + + + Date and time + + ResList @@ -647,7 +752,7 @@ Do you want to start the preferences dialog ? Query details - Деталі запиту + Деталі запиту (show query) @@ -663,11 +768,11 @@ Do you want to start the preferences dialog ? filtered - фільтроване + фільтроване sorted - сортоване + сортоване Document history @@ -714,6 +819,25 @@ Do you want to start the preferences dialog ? по + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -851,38 +975,38 @@ Use <b>Show Query</b> link when in doubt about result and see manual SortForm Date - Дата + Дата Mime type - Тип MIME + Тип MIME SortFormBase Sort Criteria - Критерії сортування + Критерії сортування Sort the - Сортувати + Сортувати most relevant results by: - кращих результатів за: + кращих результатів за: Descending - спаданням + спаданням Close - Закрити + Закрити Apply - Застосувати + Застосувати @@ -1492,7 +1616,7 @@ This will help searching very big text files (ie: log files). Start with sort dialog open. - Відкривати діалог сортування при старті. + Відкривати діалог сортування при старті. Remember sort activation state. diff --git a/src/qtgui/i18n/recoll_xx.ts b/src/qtgui/i18n/recoll_xx.ts index 783f3e46..92f0ffff 100644 --- a/src/qtgui/i18n/recoll_xx.ts +++ b/src/qtgui/i18n/recoll_xx.ts @@ -444,6 +444,14 @@ Do you want to start the preferences dialog ? Save file + + Result count (est.) + + + + Query details + + RclMainBase @@ -599,6 +607,105 @@ Do you want to start the preferences dialog ? Full Screen + + &Erase search history + + + + sortByDateAsc + + + + Sort by dates from oldest to newest + + + + sortByDateDesc + + + + Sort by dates from newest to oldest + + + + Show Query Details + + + + Show results as table + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + + + + Date and time + + ResList @@ -626,18 +733,6 @@ Do you want to start the preferences dialog ? Find &similar documents - - Query details - - - - filtered - - - - sorted - - Document history @@ -699,6 +794,25 @@ Do you want to start the preferences dialog ? + + ResTable + + &Reset sort + + + + &Delete column + + + + Add " + + + + " column + + + SSearch @@ -832,44 +946,6 @@ Use <b>Show Query</b> link when in doubt about result and see manual - - SortForm - - Date - - - - Mime type - - - - - SortFormBase - - Sort Criteria - - - - Sort the - - - - most relevant results by: - - - - Descending - - - - Apply - - - - Close - - - SpellBase @@ -967,9 +1043,6 @@ Use <b>Show Query</b> link when in doubt about result and see manual - - UIPrefsDialogBase - ViewAction @@ -1042,9 +1115,6 @@ Use <b>Show Query</b> link when in doubt about result and see manual - - confgui::ConfParamFNW - confgui::ConfParamSLW @@ -1271,10 +1341,6 @@ This will help searching very big text files (ie: log files). Start with advanced search dialog open. - - Start with sort dialog open. - - Remember sort activation state. diff --git a/website/BUGS.html b/website/BUGS.html index 70c9c32d..144b6fee 100644 --- a/website/BUGS.html +++ b/website/BUGS.html @@ -37,16 +37,11 @@

recoll 1.14.4 + xapian 1.2+ + qt 4.4.1+

    -
  • Some shell, awk, and perl scripts are not indexed. There is a - simple - configuration tweak workaround -
  • The new mutagen-based audio tags filter (rclaudio) only works with very recent mutagen versions. See here for a corrected version.
  • -
  • Performing a full index with release 1.11 or later, over a +
  • Performing a full index with release 1.11 or newer, over a version created with a much older recoll release may sometimes end with an error saying "backend doesn't implement metadata". If this happens, you need to delete @@ -54,11 +49,7 @@ and restart indexing. For big indexes, to avoid losing time, removing the directory preventively may be preferable .
  • -
  • If the user-chosen result list entry format results in - several paragraphs (in the qt textedit sense), right clicks - will only work inside the first one for each entry.
  • - -
  • Under Solaris, it is necessary to perform initial +
  • Under Solaris, it is necessary to perform the initial indexing with the recollindex program (the recoll index thread doesn't work for creating the database). Don't know the reason. Only idea I have is problem with exception @@ -84,6 +75,19 @@ slower indexing for all normal .doc files.
+

recoll 1.14.4

+
    +
  • rclmon.sh stop would not work.
  • +
  • Some shell, awk, and perl scripts are not indexed. There is a + simple + configuration tweak workaround +
  • The tree walk in indexing could loop on symbolic links.
  • +
  • If the user-chosen result list entry format results in + several paragraphs (in the qt textedit sense), right clicks + will only work inside the first one for each entry.
  • +
+

recoll 1.14.3

  • Email message preview is broken.
  • diff --git a/website/CHANGES.html b/website/CHANGES.html index 5207440a..4e3d81fb 100644 --- a/website/CHANGES.html +++ b/website/CHANGES.html @@ -31,6 +31,12 @@

    Recoll journal of user-visible changes

    +

    1.15.0

    +

    See the the release notes.

    + +

    1.14.4

    +

    See the the release notes.

    +

    1.14.3

    • Get rid of permanent filter subprocess at the end of a GUI diff --git a/website/download-1.14.html b/website/download-1.14.html new file mode 100644 index 00000000..3f832b67 --- /dev/null +++ b/website/download-1.14.html @@ -0,0 +1,429 @@ + + + + + Recoll download + + + + + + + + + + + + + + + + +
      + +

      Recoll downloads

      + +

      + + + + + + + + + + +
      SourceRpm/deb packagesKnown bugsOther binary packagesBsd portFilters Translations
      +

      + +

      General information

      + +

      The download page for Recoll 1.13 is + still available.

      + +

      Recoll + Installation / building manual.

      + +

      Current release notes.

      + +

      The indexing filters for some document types may need + external packages not installed on your system by default, and + not installed automatically with Recoll: + + take a look at the list and decide what you need to + install.

      + +

      The Recoll term explorer tool in phonetic mode (marginally + useful and optional) uses the aspell package, version + 0.60 (utf-8 support) or newer.

      + +

      If you find problems with this page, the package or its + installation, please + + report them.

      + +

      What do the release numbers mean?

      + +

      The Recoll releases are numbered X.Y.Z. The X + would only change for really major modifications like a big + change in the index format, and possibly won't ever reach + 2.

      + +

      Y is for functional modifications. These may bring bugs, so + if you don't need the new features, you may want to wait a little, + and especially skip the first release (X.Y.0), at least for a few + weeks.

      + +

      Z changes for bug fixes only, + and moving from X.Y.Z to X.Y.Z+u should in general involve + little risk of regression. But, any change can bring + problems, if you are not affected by the corrected bugs (check + the changes file), there is + probably no necessity to upgrade anyway.

      + +

      Updated filters

      + +

      New and updated filters are sometimes + available before the next + Recoll release.

      + +

      Source

      + +

      Current release distribution: 1.14.4:

      + +

      recoll-1.14.4.tar.gz.

      + +

      Prerequisites for building from source:

      +
        +
      • C++ compiler. Its absence sometimes manifests itself by + strange messages about iconv_open (fixed after 1.13.04).
      • + +
      • Xapian core development libraries. Most Linux distributions + carry them in their package repository. Or you will find source and + binary packages on the + + Xapian download page.
        Recoll 1.14 needs at least + xapian 1.0.12. It is compatible with all later Xapian + releases, including the 1.2.x series.

        Note on + building Xapian for older CPUs: The + build configurations for Xapian releases 1.0.21 and + 1.2.1 or newer enable the use of SSE2 floating point + instructions. These instructions are not available in CPUs + older than Intel Pentium 4 or AMD Athlon 64. When + building for such a CPU, you need to add the + --disable-sse flag to the Xapian library configure + command. If this is not done, the problem signals itself by + "Illegal instruction" crashes (SIGILL) in recollindex and recoll. +

        +
      • +
      • X11 development files.
      • +
      • zlib development files.

        +
      • Qt development files + You can build with Qt 3.3 or Qt 4. Recoll will + automatically be configured to build with Qt 4 if the version + of qmake found in $PATH:$QTDIR/bin is for Qt 4 (you can/should also + set the QMAKE variable to explicitely choose the + desired version, like QMAKE=qmake-qt4).

        +

        There seems to be a few issues in Qt 4.4.0 (2008-08-23), + resulting in problems when displaying the Recoll result + list.
        Qt 4.3, 4.4.x,4.5 and 4.6 seem to work fine.

      • +
      + +

      KDE kicker applet:

      +

      the applet can start a Recoll search + from the KDE toolbar. It is in a separate source file. + recoll_applet-1.10.0.tgz. + This is a very slightly modified version of the + + find_applet. It will work with any recoll version after 1.10.

      + +

      Source repository:

      +

      The Recoll source repository is + hosted on + bitbucket.org. + The trunk is usually a bit on the bleeding edge, but there is + always a maintenance branch for the current production version.

      + +

      Older recoll releases:

      +

      + 1.14.2. + 1.13.04. + 1.12.4. + 1.11.4. + 1.10.6. + 1.9.0. + 1.8.2. + 1.7.6. + 1.6.3. + 1.5.11. + 1.4.3. + 1.3.3. + 1.2.3. + 1.1.0. + 1.0.16. +

      + +

      Packages

      + +

      Packages or ports for Recoll are available in the standard + repositories for many distributions.

      +

      However they are often a bit older or built with older Xapian + releases. Here follow a number of updated packages and + instructions for a number of distributions.

      +

      Most binary packages on this page need a Qt 4 runtime + environment (Qt 3.x is specified for a few). To make things easier, + on systems where Xapian is not available from the standard package + repositories, the Recoll package will have a static link to Xapian + so that you do not need to build/install it separately.

      + +

      Ubuntu

      +
      +

      There are Personal Package Archives on launchpad.net for + + Xapian, + + Recoll and kio-recoll. These were built from the latest versions, + for a set of Ubuntu series. You just need to add the + PPAs to your system software sources (the instructions are on + the PPA page or + + here), and you can then use the normal package + manager to install or update Recoll and Xapian. To avoid + messages about signature errors, if not done at the previous step, + you may have to explicitely import the + Recoll and Xapian public keys:

      
      +gpg --keyserver keyserver.ubuntu.com --recv 9DA85604
      +gpg --export --armor 9DA85604 | sudo apt-key add -
      +gpg --keyserver keyserver.ubuntu.com --recv A0735AD0
      +gpg --export --armor  A0735AD0 | sudo apt-key add -
      +       
      + For Jaunty and newer releases, the procedure has been + simplified, and the 2 following commands perform the whole + procedure: +
      
      +sudo add-apt-repository ppa:xapian-backports/ppa
      +sudo add-apt-repository ppa:recoll-backports/ppa
      +
      +

      +
      + +

      RPMS

      Except if specified otherwise, the + executables inside the binary rpms which follow have a + static link to Xapian (1.0.16-21), there is no real dependency + except Qt 3 or Qt 4.
      + Some 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. +
      You'll need to install the Xapian, Qt, and zlib development + packages if you want use the source rpms.

      + +

      Fedora

      +

      Recoll is present in the standard Fedora package + repositories starting from F-12.

      +
      +

      Fedora 6 with Qt 3.3.8 and a static link to xapian 1.0.21 + built with --disable-sse + recoll-1.14.4-1.i586.rpm + Source: + recoll-1.14.4-1.src.rpm + This package usually also installs newer releases. +

      +

      Fedora 12 and newer Recoll is now included in the + regular Fedora package repositories.

      + +
      + +

      OpenSUSE

      +
      +

      OpenSUSE 11.3 with qt4 and a static link to xapian + 1.2.3 with the --disable-sse configure option: + + recoll-1.14.4-1.i586.rpm. + Source: + recoll-1.14.4-1.src.rpm

      + +

      If you build from source on OpenSUSE 11, note that the default + qt4 version on some systems is 4.4.0 which will badly + display the the result list icons. Use qt3 or install a + newer version of qt4.

      +
      + +

      Mandriva

      +
      + +

      Mandriva 2008 with Qt 4 and a static link to Xapian 1.2.3 + with the --without-sse configure option.: + + recoll-1.14.4-1mdv2008.1.i586.rpm. + Source: + + recoll-1.14.4-1mdv2008.1.src.rpm +

      +
      + +

      Binary bundles

      + +

      These are just prebuilt trees (without the source files). + Xapian is statically linked. They still depend on Qt. For + Solaris, you should be able to find a Qt package on + sunfreeware.

      + +

      Installation + instructions here.

      + +

      FreeBSD

      +
      +

      The FreeBSD ports track the Recoll releases quite + closely, so there is actually little point in using the + following (except that the port is currently (10-2010) broken).

      +

      FreeBSD 7.3 i386 Qt 4.6.1. Statically linked to + Xapian 1.2.3 with --disable-sse: + + recoll-1.14.2-FreeBSD-7.3-STABLE.tgz +

      +
      + +

      Solaris

      +
      +

      Note to Solaris users: you need to perform the initial + indexing pass with "recollindex", not the recoll GUI indexing + thread. See errata. + +

      Solaris 8 SPARC: + + recoll-1.14.2-SunOS-5.8.tgz.

      + +

      Recoll also builds and runs on Solaris 10, but, given the + situation (2008) 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 tried in 2008 and + which worked was to: +

        +
      • 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.
      • +
      • Compile xapian-core and install it (with prefix /usr/local).
      • +
      • Configure and install Qt. The following config worked for me, + with Qt 3.3.8: +
        
        +./configure -platform solaris-g++ -prefix /usr/local/Trolltech/Qt-3.3.8/ -thread
        +
        + Then make. Weirdly, I had to add the Qt build lib/ + directory to LD_LIBRARY_PATH at some point during the + build). +
      • +
      • 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
      • +
      • Don't forget to use recollindex for the first index + build, recoll does not work for this (exception handling + mystery probably).
      • +
      +

      +

      Obviously, there are other ways to do it (use CC, install + some place else ... ), but I tried this one.

      +
      + + +

      FreeBSD ports

      + +

      There are ports for both xapian-core + and recoll in the standard tree, you may just need to update + your ports (cvsup, portsnap), or you can get the ports from + the FreeBSD site. + + xapian port + + recoll port.

      + +

      Translations

      + +

      Most of the translations for 1.13 are incomplete (and I + forgot to update the message files for 1.14, ugh). 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 + me and + earn my gratefulness (and your less multilingual + compatriot's)...

      + +

      You can use the .ts file to alter the translations if you + wish (use Qt's linguist tool to edit the source file, + then lrelease to produce the .qm file.). + The .qm file should be copied to + /usr/[local/]share/recoll/translations +

      + +

      recoll_xx.ts is a blank + Recoll 1.14 message file, handy to work on a new translation.

      + +

      Updated 1.13/1.14 translations that became available after the + release:

      + + +

      Lithuanian. + recoll_lt.ts + recoll_lt.qm +

      + + +
      + + diff --git a/website/download.html b/website/download.html index 3f832b67..934c0fd4 100644 --- a/website/download.html +++ b/website/download.html @@ -50,14 +50,15 @@

      General information

      -

      The download page for Recoll 1.13 is - still available.

      +

      The current version is 1.15.0. + Release notes.

      + +

      The download page for Recoll 1.14 is + still available.

      Recoll Installation / building manual.

      -

      Current release notes.

      -

      The indexing filters for some document types may need external packages not installed on your system by default, and not installed automatically with Recoll: @@ -70,8 +71,7 @@ 0.60 (utf-8 support) or newer.

      If you find problems with this page, the package or its - installation, please - + installation, please report them.

      What do the release numbers mean?

      @@ -101,11 +101,11 @@

      Source

      -

      Current release distribution: 1.14.4:

      +

      Current release distribution: 1.15.0:

      -

      recoll-1.14.4.tar.gz.

      +

      recoll-1.15.0.tar.gz.

      Prerequisites for building from source:

        @@ -116,7 +116,7 @@ carry them in their package repository. Or you will find source and binary packages on the - Xapian download page.
        Recoll 1.14 needs at least + Xapian download page.
        Recoll 1.15 needs at least xapian 1.0.12. It is compatible with all later Xapian releases, including the 1.2.x series.

        Note on building Xapian for older CPUs: The @@ -132,15 +132,8 @@

      • X11 development files.
      • zlib development files.

        -
      • Qt development files - You can build with Qt 3.3 or Qt 4. Recoll will - automatically be configured to build with Qt 4 if the version - of qmake found in $PATH:$QTDIR/bin is for Qt 4 (you can/should also - set the QMAKE variable to explicitely choose the - desired version, like QMAKE=qmake-qt4).

        -

        There seems to be a few issues in Qt 4.4.0 (2008-08-23), - resulting in problems when displaying the Recoll result - list.
        Qt 4.3, 4.4.x,4.5 and 4.6 seem to work fine.

      • +
      • Qt development files: Qt 4.4 or newer. The Recoll GUI + will not build with Qt releases older than 4.4.

      KDE kicker applet:

      @@ -160,7 +153,7 @@

      Older recoll releases:

      - 1.14.2. + 1.14.4. 1.13.04. 1.12.4. 1.11.4. @@ -184,11 +177,11 @@

      However they are often a bit older or built with older Xapian releases. Here follow a number of updated packages and instructions for a number of distributions.

      -

      Most binary packages on this page need a Qt 4 runtime - environment (Qt 3.x is specified for a few). To make things easier, - on systems where Xapian is not available from the standard package - repositories, the Recoll package will have a static link to Xapian - so that you do not need to build/install it separately.

      +

      All binary packages on this page need a Qt 4 (4.4 at least) runtime + environment. To make things easier, on systems where Xapian is + not available from the standard package repositories, the + Recoll package will have a static link to Xapian so that you + do not need to build/install it separately.

      Ubuntu

      @@ -223,8 +216,8 @@ sudo add-apt-repository ppa:recoll-backports/ppa

      RPMS

      Except if specified otherwise, the executables inside the binary rpms which follow have a - static link to Xapian (1.0.16-21), there is no real dependency - except Qt 3 or Qt 4.
      + static link to Xapian (1.0.16-21), there is no hard dependency + except Qt 4.
      Some 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. @@ -235,66 +228,46 @@ sudo add-apt-repository ppa:recoll-backports/ppa

      Recoll is present in the standard Fedora package repositories starting from F-12.

      -

      Fedora 6 with Qt 3.3.8 and a static link to xapian 1.0.21 - built with --disable-sse - recoll-1.14.4-1.i586.rpm - Source: - recoll-1.14.4-1.src.rpm - This package usually also installs newer releases. -

      Fedora 12 and newer Recoll is now included in the regular Fedora package repositories.

      - +

      OpenSUSE

      OpenSUSE 11.3 with qt4 and a static link to xapian 1.2.3 with the --disable-sse configure option: - - recoll-1.14.4-1.i586.rpm. - Source: - recoll-1.14.4-1.src.rpm

      - -

      If you build from source on OpenSUSE 11, note that the default - qt4 version on some systems is 4.4.0 which will badly - display the the result list icons. Use qt3 or install a - newer version of qt4.

      + + recoll-1.15.0-0.i586.rpm. + Source: + recoll-1.15.0-0.src.rpm

      Mandriva

      -

      Mandriva 2008 with Qt 4 and a static link to Xapian 1.2.3 - with the --without-sse configure option.: - - recoll-1.14.4-1mdv2008.1.i586.rpm. +

      Mandriva linux one 2010 with Qt 4 and a static link to + Xapian 1.2.3 with the --without-sse configure option.: + + recoll-1.15.0-1mdv2008.1.i586.rpm. Source: - - recoll-1.14.4-1mdv2008.1.src.rpm + + recoll-1.15.0-1mdv2008.1.src.rpm

      @@ -315,53 +288,17 @@ sudo add-apt-repository ppa:recoll-backports/ppa following (except that the port is currently (10-2010) broken).

      FreeBSD 7.3 i386 Qt 4.6.1. Statically linked to Xapian 1.2.3 with --disable-sse: - - recoll-1.14.2-FreeBSD-7.3-STABLE.tgz + + recoll-1.15.0-FreeBSD-7.3-STABLE.tgz

      Solaris

      -

      Note to Solaris users: you need to perform the initial - indexing pass with "recollindex", not the recoll GUI indexing - thread. See errata. - -

      Solaris 8 SPARC: - - recoll-1.14.2-SunOS-5.8.tgz.

      - -

      Recoll also builds and runs on Solaris 10, but, given the - situation (2008) 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 tried in 2008 and - which worked was to: -

        -
      • 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.
      • -
      • Compile xapian-core and install it (with prefix /usr/local).
      • -
      • Configure and install Qt. The following config worked for me, - with Qt 3.3.8: -
        
        -./configure -platform solaris-g++ -prefix /usr/local/Trolltech/Qt-3.3.8/ -thread
        -
        - Then make. Weirdly, I had to add the Qt build lib/ - directory to LD_LIBRARY_PATH at some point during the - build). -
      • -
      • 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
      • -
      • Don't forget to use recollindex for the first index - build, recoll does not work for this (exception handling - mystery probably).
      • -
      -

      -

      Obviously, there are other ways to do it (use CC, install - some place else ... ), but I tried this one.

      +

      I did not test building on Solaris for this version. You will + need at least Qt 4.4. The old hints + in the previous page may + still be valid.

      @@ -378,13 +315,12 @@ sudo add-apt-repository ppa:recoll-backports/ppa

      Translations

      -

      Most of the translations for 1.13 are incomplete (and I - forgot to update the message files for 1.14, ugh). 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 - me and - earn my gratefulness (and your less multilingual +

      Most of the translations for 1.15 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 me and earn + my gratefulness (and your less multilingual compatriot's)...

      You can use the .ts file to alter the translations if you @@ -395,17 +331,17 @@ sudo add-apt-repository ppa:recoll-backports/ppa

      recoll_xx.ts is a blank - Recoll 1.14 message file, handy to work on a new translation.

      + Recoll 1.15 message file, handy to work on a new translation.

      -

      Updated 1.13/1.14 translations that became available after the +

      Updated 1.15 translations that became available after the release:

      - +

      None for now :(

      +