summary refs log tree commit diff
path: root/README.7 (unfollow)
Commit message (Collapse)Author
2020-12-13Color contexts like catgirlJune McEnroe
Well, except for query contexts where the username is lost.
2020-12-13Emulate catgirl in 16-color modeJune McEnroe
2020-12-13Refactor scoop formattersJune McEnroe
2020-12-13Use nick for color if user is "*"June McEnroe
Not accurate but better than every message being the same color in imported logs.
2020-10-24Directly output IRC-to-ANSI conversionJune McEnroe
2020-09-30Rename unscoop test flag to -!June McEnroe
2020-09-30Undocument unscoop -nJune McEnroe
It's only useful internally for running tests.
2020-08-27Remove rc script 1.6June McEnroe
The rc script kinda just sucks for running this, and catsit exists now. Probably no one but me was ever using it anyway.
2020-08-26Move rc script docs to rc script commentJune McEnroe
2020-08-25Recommend catsit first in READMEJune McEnroe
Honestly running it with the rc script just sucks.
2020-08-24Mention catsit in READMEJune McEnroe
2020-08-22Document how cert/priv are searched forJune McEnroe
2020-08-21Use a static buffer for base directory pathsJune McEnroe
2020-08-20Use configPath to load cert/privJune McEnroe
2020-08-20Use dataPath for dbFindJune McEnroe
2020-08-20Import xdg.c from catgirlJune McEnroe
2020-08-10Say "OpenSSL" in additional permission noticesJune McEnroe
LibreSSL is "a modified version of that library". Oops, should've done this before tagging, but I don't think it matters much. They're both versions of the same library, right?
2020-08-10Mention LibreTLS in README 1.5June McEnroe
2020-08-01Check return value of asprintfJune McEnroe
On GNU, asprintf leaves the destination pointer undefined on failure. Clowns.
2020-07-24Don't bother with --sysconfdirJune McEnroe
It's only used on FreeBSD anyway.
2020-07-24Use asprintf to concatenate queryJune McEnroe
Newer gcc will point out that concatenating 3 buffers of 4096 bytes into a buffer of 4096 might truncate, which I don't care about because the query should never be 4K anyway, but it's simple to use asprintf here.
2020-07-24Fix select #defineJune McEnroe
2020-07-24Rewrite configure script for all platforms, add OpenBSDJune McEnroe
2020-07-21Add scooper to READMEJune McEnroe
2020-07-19Add -U scooper-url option to make scooper linksJune McEnroe
2020-07-11Replace time index with (context, time) index 1.4p1June McEnroe
This is what it should have been...
2020-07-08Delay creating eventsTime index when migration from v2 1.4June McEnroe
2020-07-08Add link to "IRC Suite" post in READMEJune McEnroe
2020-07-08Fix -D nowJune McEnroe
2020-07-08Convert timestamps to unix epoch timeJune McEnroe
This saves 125 MB on my own database after VACUUM.
2020-07-07Allocate enough bind space for :open and :closeJune McEnroe
Big oops!
2020-07-07Create index on events.timeJune McEnroe
This vastly improves the speed of scoop -a, -b and -D.
2020-07-07Use >= and < on events.time for -DJune McEnroe
This will enable the use of an index on events.time.
2020-07-07Only join FTS table when FTS query is presentJune McEnroe
This makes query construction more complex, but should allow for performance gains, since it seems that as soon as the FTS table is involved, SQLite will use no other indexes. (The query planner always uses a VFilter.)
2020-06-24Bump ParamCap to 254June McEnroe
Apparently IRCds have decided that the 15-parameter limit doesn't matter anymore. 254 is the maximum number of single-byte parameters (following a single-byte command) which fit in a 512-byte CR-LF-terminated line. When everyone decides that the 512-byte line length limit doesn't matter either, I will delete my software and people can use some JavaScript garbage instead. This makes struct Message 2080 bytes, but there's only ever one of it around at once. Avoid passing it by value to handle.
2020-06-12Remove RPL_MOTDSTART handlerJune McEnroe
Relying on the MOTDSTART handler to set motd.cap and allocate the buffer is an issue if a regular RPL_MOTD is received without one. Just allocate the buffer on the first RPL_MOTD.
2020-06-08Add additional permission for linking with LibreSSLJune McEnroe
https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs
2020-05-22Perform all migrations in one transaction 1.3June McEnroe
2020-05-21Clean up unscoop manual pageJune McEnroe
2020-05-21Fix search expression appendJune McEnroe
Oops.
2020-05-21Fix dbPrepare errx callJune McEnroe
2020-05-21Add only the necessary expressions to scoop's queryJune McEnroe
This makes the queries generally faster and capable of taking advantage of any indexes that get created.
2020-05-21Explicitly set stdout line buffered when pagingJune McEnroe
2020-05-21Do not sort results in scoop by defaultJune McEnroe
The -s flag now enables sorting (-g and -l also imply it), while the -S flag now launches the sqlite3 shell. Avoiding sorting by default is much faster and less memory-intensive as it doesn't require loading the entire result set into memory at once.
2020-05-21Expand and clarify documentationJune McEnroe
2020-05-21Execute PAGER with the SHELLJune McEnroe
Same as how git executes it. Allows flags to be set in PAGER.
2020-05-21Automatically perform database migrations in litterboxJune McEnroe
To simplify upgrades, restarting litterbox should be sufficient. The database can still be explicitly migrated with -m.
2020-05-20Don't install rc scripts on other platformsJune McEnroe
Oops, meant to do this in the last commit.
2020-05-20Rewrite build and install like pounce 1.3June McEnroe
man pages are no longer compressed!
2020-05-20Update email addressesJune McEnroe