Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-11 | Save and load the URL ring in the save file 1.4 | C. McEnroe | |
2021-01-10 | Print chain to stdout with -o | C. McEnroe | |
2021-01-09 | Add -o and -t options to trust self-signed certificates | C. McEnroe | |
2021-01-09 | Allow configuring the upper bound of the hash function | C. McEnroe | |
This allows limiting the nick colors used to the 16-color terminal set without modifying the TERM environment variable. Produces different results from just using the default configuration in a 16-color terminal, but what can you do? | |||
2021-01-01 | Split ignore fields to avoid over-eager * matching | C. McEnroe | |
Split ignore fields and match each separately to avoid an early * eagerly matching across several fields. For example, "* JOIN * *" should not match messages which happen to contain the word "JOIN" followed by two other words. Ignore capacity is reduced to 64 to keep the size of the array the same. I don't think it's an issue. | |||
2020-12-30 | Factor out reply count checking and decrementing | C. McEnroe | |
2020-12-30 | Add /whowas | C. McEnroe | |
2020-12-30 | Show setnames like nick changes | C. McEnroe | |
2020-12-29 | Add /setname command | C. McEnroe | |
I'm not sure about that replies check in handleStandardReply. If more of those are added the reply counter system will definitely need refactoring. | |||
2020-10-12 | Avoid eating C-c while connecting | C. McEnroe | |
Split UI initialization into two steps either side of the call to connect, so that C-c works as interrupt while it's blocked. | |||
2020-10-09 | Factor out styleStrip | C. McEnroe | |
2020-10-02 | Double up /help for server help | C. McEnroe | |
While the automatic search via LESS is neat, I don't think it's very useful. Just always open the manual to the COMMANDS section, and fix it to append to LESS rather than replace it. | |||
2020-09-30 | Use WHO for /ops | C. McEnroe | |
Accumulate names in a buffer and show away status. | |||
2020-09-30 | Add /ops command | C. McEnroe | |
It's pretty awkward with large channels since NAMES isn't sorted by prefixes or anything... But having it accumulate names across many replies would require more reworking. | |||
2020-09-02 | Recalculate unreadHard on reflow | C. McEnroe | |
2020-09-02 | Hide ignored messages at the soft -> hard buffer layer | C. McEnroe | |
This restores normal scrolling behaviour. | |||
2020-09-02 | Actually insert blank lines in the soft buffer | C. McEnroe | |
So they can be preserved forever! | |||
2020-09-02 | Render one main window from buffers | C. McEnroe | |
Still missing: split scrolling and preserving a blank on reflow either from resize or ignore toggling. Anecdata: on one of my instances of catgirl, RAM usage of the previous release was ~30M, RAM usage of this commit was ~12M. | |||
2020-09-01 | Implement buffer line wrapping | C. McEnroe | |
Not yet rendered in the UI! Just done in parallel. | |||
2020-09-01 | Factor buffer out of ui | C. McEnroe | |
In preparation for doing line wrapping outside of ncurses. | |||
2020-09-01 | Move styleParse out of ui | C. McEnroe | |
2020-08-21 | Use a static buffer for base directory paths | C. McEnroe | |
2020-08-20 | Use configPath to load TLS cert/priv | C. McEnroe | |
2020-08-20 | Refactor base dir functions to iterate over paths | C. McEnroe | |
2020-08-04 | Say "OpenSSL" in additional permission notices | C. McEnroe | |
LibreSSL is "a modified version of that library". | |||
2020-07-30 | Replace catf with something that tracks len | C. McEnroe | |
Also the old catf would be broken with -DNDEBUG oops! | |||
2020-07-30 | Define explicit_bzero using memset_s on macOS | C. McEnroe | |
2020-07-30 | Remove use of strlcat | C. McEnroe | |
catf is not better though and should really be replaced. | |||
2020-06-24 | Bump ParamCap to 254 | C. 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 or two of them around at once. Avoid passing it by value to handle. | |||
2020-06-08 | Add additional permission for linking with LibreSSL | C. McEnroe | |
https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs | |||
2020-05-07 | Mark global variables in chat.h as extern | Michael Forney | |
This fixes the build with gcc 10, which enables -fno-common by default. | |||
2020-04-07 | Check ignores against id | C. McEnroe | |
Otherwise they do not work correctly for QUIT and NICK. This also lets you ignore private messages only by putting the nick in the third field. | |||
2020-04-07 | Add M-q to collapse whitespace | C. McEnroe | |
2020-03-31 | Add /ignore message filtering patterns | C. McEnroe | |
2020-03-30 | Add text macros | C. McEnroe | |
2020-03-25 | Add logging functions | C. McEnroe | |
The mkdir dance is a bit awkward... | |||
2020-03-23 | Track MODE in replies | C. McEnroe | |
2020-03-23 | Assume worst case for unknown user and host in splitMessage | C. McEnroe | |
The default USERLEN of 9 doesn't have a great source, the RFC only says that nicks are length 9, so my assumption is that usernames are not longer. | |||
2020-03-22 | Track own host, handle CHGHOST | C. McEnroe | |
2020-02-29 | Implement the causal.agency/consumer capability | C. McEnroe | |
2020-02-25 | Add /mode, /except, /invex and handle lists replies | C. McEnroe | |
2020-02-19 | Add /ban, /unban and handle ban list replies | C. McEnroe | |
2020-02-16 | Various small cleanups | C. McEnroe | |
Haven't really gone through ui.c yet. | |||
2020-02-16 | Replace a lot of snprintf with a catf implementation | C. McEnroe | |
2020-02-16 | Track EXCEPTS and INVEX modes | C. McEnroe | |
2020-02-15 | Replace small integers in size_t with uint | C. McEnroe | |
2020-02-15 | Track PREFIX modes and CHANMODES | C. McEnroe | |
2020-02-15 | Enable multi-prefix | C. McEnroe | |
2020-02-15 | Separate network info from self | C. McEnroe | |
2020-02-14 | Add /invite | C. McEnroe | |