looqs/README.md

32 lines
1.1 KiB
Markdown
Raw Normal View History

2018-08-12 16:47:55 +02:00
qss
2018-01-03 09:40:13 +01:00
=========
quite simple search (qss) creates a poor-man full-text search for your files using a
2018-01-03 09:40:13 +01:00
sqlite database.
2018-08-12 16:47:55 +02:00
A simple gui (C++ with Qt5) for search is found in gui/.
It shows preview pages of documents where your search keywords have
been found. This allows you to 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.
Goals
=====
* **Find & Preview**. Instead of merely telling you where your search phrase has been found, it actually shows it too.
* **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 solutions tries to squeeze out the most from simple approaches. In particular, it relies on sqlite.
* **GUI & CLI**. Provide CLI interfaces and GUI interfaces
2018-08-12 16:47:55 +02:00
Build
-----
### Ubuntu 20.04
```
sudo apt install build-essential qt5-default libpoppler-qt5-dev libuchardet-dev libquazip5-dev
qmake
make
```
Packages
2018-01-03 09:40:13 +01:00
-----
Coming soon™