about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Recommend kitd to run litterbox on OpenBSD HEAD masterJune McEnroe2023-10-21
|
* Strip CR LF from input lines in unscoopJune McEnroe2023-06-12
|
* Make copyrights and AUTHORS consistent 1.9June McEnroe2022-09-18
|
* Open database readonly from scoopJune McEnroe2022-05-21
| | | | | | | I originally changed it to RW so that PRAGMA optimize could run, but since that relies on usage pattern information for that database connection, I don't think it makes sense to run it in scoop anyway, where only one query is run. Move it to litterbox only.
* Close database before calling tls_close(3)June McEnroe2021-12-28
| | | | | Calling tls_close(3) after an error potentially results in a SIGPIPE, preventing dbClose() from being called.
* Import refactored xdg.c from pounceJune McEnroe2021-10-16
|
* Don't set "compat" ciphersJune McEnroe2021-10-05
| | | | | This hasn't been necessary to connect to anything reasonable in a long time.
* Define unscoop formats separatelyJune McEnroe2021-10-04
| | | | So they get tagged properly.
* Use | between equivalent optionsJune McEnroe2021-10-04
| | | | So that both get tagged.
* Tighten action handlingJune McEnroe2021-06-20
| | | | | Don't match actions in notices. Match empty "\1ACTION\1" actions. Don't truncate at the first '\1'.
* Fix MOTD buffer reallocation 1.8June McEnroe2021-05-19
| | | | Woops. Not how that should be done.
* Replace freenode with tilde.chatJune McEnroe2021-05-19
|
* Match weechat query noticesJune McEnroe2021-05-18
|
* Interpret weechat and znc timestamps as local timeJune McEnroe2021-05-18
|
* Add weechat format to unscoopJune McEnroe2021-05-18
|
* Mention unscoop, Liberapay in READMEJune McEnroe2021-05-18
|
* Add scoop -i flag for case-insensitive regexpJune McEnroe2021-05-18
|
* Add znc format to unscoopJune McEnroe2021-05-17
|
* Clean up manualsJune McEnroe2021-05-17
|
* Print paths to stdout and progress to stderrJune McEnroe2021-05-17
|
* Allocate 1 + ParamCap matches in unscoopJune McEnroe2021-05-17
| | | | | The IRC KICK matcher uses all 8 params, but there is always an extra match for the whole thing.
* Avoid VLAsJune McEnroe2021-05-17
| | | | | People don't like them. I'm still not sold on their dangers or whatever, but they're easy enough to avoid anyway.
* Add scoop -r reverse flagJune McEnroe2021-05-17
|
* Order by rowids for scoop -lJune McEnroe2021-05-07
| | | | | This vastly improves the speed of the query, with the same effect as the change to litterbox's query interface.
* Format litterbox query interface results like scoopJune McEnroe2021-05-07
| | | | With the colored context too.
* Limit query interface results using search.rowid DESCJune McEnroe2021-05-07
| | | | | | | | This vastly increases the speed of the query for any search with a decent number of matches. It can be slightly less accurate since it depends on the insert order of events, but that usually won't be a problem for a query limited to a single network. The litterbox query interface isn't meant to exhaustively list results either.
* Get list of formats to test from unscoop itselfJune McEnroe2021-05-02
|
* Default to MANDIR=${PREFIX}/man, support BINDIRJune McEnroe2021-05-02
| | | | | | | | I originally avoided defaulting MANDIR to /usr/local/man because I thought that might not work on GNU/Linux, but I checked and it turns out man-db not only defaults to including /usr/local/man (if /usr/local/bin is in PATH), it also includes /usr/man. So more reason to default to ${PREFIX}/man.
* Only link litterbox with -ltlsJune McEnroe2021-05-02
|
* Match multiple types with -tJune McEnroe2021-04-28
|
* Interpret -D, -a, -b as local time with -LJune McEnroe2021-04-27
|
* Use QueryCap for selectJune McEnroe2021-04-27
| | | | No idea why it was like this.
* Add missing comma in manualJune McEnroe2021-04-21
|
* Add -t option to trust self-signed certificatesJune McEnroe2021-04-03
| | | | | Not adding a corresponding -o option like in pounce and catgirl, since litterbox is likely connecting to pounce anyway.
* Clarify configuration path interpretationsJune McEnroe2021-04-03
|
* Tighten up XDG base directory path handlingJune McEnroe2021-04-03
| | | | | | | Don't search base directories if path starts with "/", "./" or "../", but still do if the path simply starts with ".". Bail early if HOME is needed but unset. Don't attempt to open the original path in configOpen and dataOpen.
* Skip STATUSMSG prefixesJune McEnroe2021-04-02
| | | | | This feature is rarely used, so just skip STATUSMSG prefixes in the target so events use the right context.
* Allow interspersing flags and config files 1.7June McEnroe2021-01-15
| | | | | | Don't wait for getopt_long to move all the arguments to the end. This allows overriding options set by config files by placing flags after them on the command line.
* Color contexts like catgirlJune McEnroe2020-12-13
| | | | Well, except for query contexts where the username is lost.
* Emulate catgirl in 16-color modeJune McEnroe2020-12-13
|
* Refactor scoop formattersJune McEnroe2020-12-13
|
* Use nick for color if user is "*"June McEnroe2020-12-13
| | | | | Not accurate but better than every message being the same color in imported logs.
* Directly output IRC-to-ANSI conversionJune McEnroe2020-10-24
|
* Rename unscoop test flag to -!June McEnroe2020-09-30
|
* Undocument unscoop -nJune McEnroe2020-09-30
| | | | It's only useful internally for running tests.
* Remove rc script 1.6June McEnroe2020-08-27
| | | | | The rc script kinda just sucks for running this, and catsit exists now. Probably no one but me was ever using it anyway.
* Move rc script docs to rc script commentJune McEnroe2020-08-26
|
* Recommend catsit first in READMEJune McEnroe2020-08-25
| | | | Honestly running it with the rc script just sucks.
* Mention catsit in READMEJune McEnroe2020-08-24
|
* Document how cert/priv are searched forJune McEnroe2020-08-22
|