Commit message (Collapse) | Author | ||
---|---|---|---|
2020-12-13 | Color contexts like catgirl | June McEnroe | |
Well, except for query contexts where the username is lost. | |||
2020-12-13 | Emulate catgirl in 16-color mode | June McEnroe | |
2020-12-13 | Refactor scoop formatters | June McEnroe | |
2020-12-13 | Use nick for color if user is "*" | June McEnroe | |
Not accurate but better than every message being the same color in imported logs. | |||
2020-10-24 | Directly output IRC-to-ANSI conversion | June McEnroe | |
2020-09-30 | Rename unscoop test flag to -! | June McEnroe | |
2020-09-30 | Undocument unscoop -n | June McEnroe | |
It's only useful internally for running tests. | |||
2020-08-27 | Remove rc script 1.6 | June 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-26 | Move rc script docs to rc script comment | June McEnroe | |
2020-08-25 | Recommend catsit first in README | June McEnroe | |
Honestly running it with the rc script just sucks. | |||
2020-08-24 | Mention catsit in README | June McEnroe | |
2020-08-22 | Document how cert/priv are searched for | June McEnroe | |
2020-08-21 | Use a static buffer for base directory paths | June McEnroe | |
2020-08-20 | Use configPath to load cert/priv | June McEnroe | |
2020-08-20 | Use dataPath for dbFind | June McEnroe | |
2020-08-20 | Import xdg.c from catgirl | June McEnroe | |
2020-08-10 | Say "OpenSSL" in additional permission notices | June 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-10 | Mention LibreTLS in README 1.5 | June McEnroe | |
2020-08-01 | Check return value of asprintf | June McEnroe | |
On GNU, asprintf leaves the destination pointer undefined on failure. Clowns. | |||
2020-07-24 | Don't bother with --sysconfdir | June McEnroe | |
It's only used on FreeBSD anyway. | |||
2020-07-24 | Use asprintf to concatenate query | June 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-24 | Fix select #define | June McEnroe | |
2020-07-24 | Rewrite configure script for all platforms, add OpenBSD | June McEnroe | |
2020-07-21 | Add scooper to README | June McEnroe | |
2020-07-19 | Add -U scooper-url option to make scooper links | June McEnroe | |
2020-07-11 | Replace time index with (context, time) index 1.4p1 | June McEnroe | |
This is what it should have been... | |||
2020-07-08 | Delay creating eventsTime index when migration from v2 1.4 | June McEnroe | |
2020-07-08 | Add link to "IRC Suite" post in README | June McEnroe | |
2020-07-08 | Fix -D now | June McEnroe | |
2020-07-08 | Convert timestamps to unix epoch time | June McEnroe | |
This saves 125 MB on my own database after VACUUM. | |||
2020-07-07 | Allocate enough bind space for :open and :close | June McEnroe | |
Big oops! | |||
2020-07-07 | Create index on events.time | June McEnroe | |
This vastly improves the speed of scoop -a, -b and -D. | |||
2020-07-07 | Use >= and < on events.time for -D | June McEnroe | |
This will enable the use of an index on events.time. | |||
2020-07-07 | Only join FTS table when FTS query is present | June 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-24 | Bump ParamCap to 254 | June 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-12 | Remove RPL_MOTDSTART handler | June 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-08 | Add additional permission for linking with LibreSSL | June McEnroe | |
https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs | |||
2020-05-22 | Perform all migrations in one transaction 1.3 | June McEnroe | |
2020-05-21 | Clean up unscoop manual page | June McEnroe | |
2020-05-21 | Fix search expression append | June McEnroe | |
Oops. | |||
2020-05-21 | Fix dbPrepare errx call | June McEnroe | |
2020-05-21 | Add only the necessary expressions to scoop's query | June McEnroe | |
This makes the queries generally faster and capable of taking advantage of any indexes that get created. | |||
2020-05-21 | Explicitly set stdout line buffered when paging | June McEnroe | |
2020-05-21 | Do not sort results in scoop by default | June 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-21 | Expand and clarify documentation | June McEnroe | |
2020-05-21 | Execute PAGER with the SHELL | June McEnroe | |
Same as how git executes it. Allows flags to be set in PAGER. | |||
2020-05-21 | Automatically perform database migrations in litterbox | June McEnroe | |
To simplify upgrades, restarting litterbox should be sufficient. The database can still be explicitly migrated with -m. | |||
2020-05-20 | Don't install rc scripts on other platforms | June McEnroe | |
Oops, meant to do this in the last commit. | |||
2020-05-20 | Rewrite build and install like pounce 1.3 | June McEnroe | |
man pages are no longer compressed! | |||
2020-05-20 | Update email addresses | June McEnroe | |