FTS desktop file search with previews
Go to file
Albert S b0dbd88293 shared: qssquery: Fix sqlerror if sort condition comes last
If we had something like c:(test) sort:(mtime, desc), then
we would run into an sql error eventually, since we
would have added an implicit AND token before the sort
condition. This is wrong, as a sort is not a filter.

So, as a quick hack to fix this, just remove a preceeding
boolean (as dirty as it may be, but it does the job for now).
2021-03-07 22:54:24 +01:00
cli CommandDelete: Rework deletion logic 2020-08-30 18:16:08 +02:00
gui gui: pdfworker: Explicitly unlock mutex, don't wait for destructor 2021-03-07 22:27:27 +01:00
shared shared: qssquery: Fix sqlerror if sort condition comes last 2021-03-07 22:54:24 +01:00
qss.pro move more files to shared project ; searchresultt.h: use filedata.h 2019-04-22 21:07:41 +02:00
README.md Update README.md: Minor improvements 2020-08-24 22:52:52 +02:00
TODO updated TODO 2019-08-25 16:56:31 +02:00

qss

quite simple search (qss) creates a poor-man full-text search for your files using a sqlite database.

A simple gui renders the pages of the documents where your search keywords have been found. Currently, this allows you search all indexed pdfs and take a look at the pages side by side in an instant.

The name of the project will probably be changed.

Screenshots

Coming soon™

Goals

  • Find & Preview. Instead of merely telling you where your search phrase has been found, it should also render the corresponding portion/pages of the documents and highlight the searched words.
  • No daemons. As other solutions are prone to have annoying daemons running that eat system resources away, this solution should make do without daemons if possible.
  • Easy setup. Similiarly, there should be no need for heavy-weight databases. Instead, this solution tries to squeeze out the most from simple approaches. In particular, it relies on sqlite.
  • GUI & CLI. Provide CLI interfaces and GUI interfaces

Build

Ubuntu 20.04

sudo apt install build-essential qt5-default libpoppler-qt5-dev libuchardet-dev libquazip5-dev
qmake
make

Documentation

Coming soon™

Packages

Coming soon™