about summary refs log tree commit diff stats
path: root/src/database.h
Commit message (Collapse)AuthorAgeFilesLines
* db: log outgoing message in one caseMichael Vetter2020-04-061-0/+1
| | | | Not all cases covered yet.
* db: add dedicated chat, muc, muc pm logging functionsMichael Vetter2020-04-061-1/+3
|
* db: insert message typeMichael Vetter2020-04-061-1/+1
|
* db: move includesMichael Vetter2020-04-061-2/+6
|
* db: Have one database per accountMichael Vetter2020-04-061-1/+1
|
* database: log stanza_id and whether it is a muc messageMichael Vetter2020-04-061-1/+1
|
* database: log incoming messagesMichael Vetter2020-04-061-0/+1
| | | | First trial. Not covering all cases yet.
* Start SQLite db moduleMichael Vetter2020-04-061-0/+43
I plan to save all messages in an SQLite db. For retrieving information it's nicer than having it in a text file. We will have more info in there and easier to parse it. This will also be good for later MAM (https://github.com/profanity-im/profanity/issues/660). Regular text files will still be an option for users so that they can easily grep them and do whatever they like. Internally Profanity will only use the SQLite db.