Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add /whowas | June McEnroe | 2020-12-30 |
| | |||
* | Show setnames like nick changes | June McEnroe | 2020-12-30 |
| | |||
* | Add /setname command | June McEnroe | 2020-12-29 |
| | | | | | | I'm not sure about that replies check in handleStandardReply. If more of those are added the reply counter system will definitely need refactoring. | ||
* | Avoid eating C-c while connecting | June McEnroe | 2020-10-12 |
| | | | | | Split UI initialization into two steps either side of the call to connect, so that C-c works as interrupt while it's blocked. | ||
* | Factor out styleStrip | June McEnroe | 2020-10-09 |
| | |||
* | Double up /help for server help | June McEnroe | 2020-10-02 |
| | | | | | | 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. | ||
* | Use WHO for /ops | June McEnroe | 2020-09-30 |
| | | | | Accumulate names in a buffer and show away status. | ||
* | Add /ops command | June McEnroe | 2020-09-30 |
| | | | | | | 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. | ||
* | Recalculate unreadHard on reflow | June McEnroe | 2020-09-02 |
| | |||
* | Hide ignored messages at the soft -> hard buffer layer | June McEnroe | 2020-09-02 |
| | | | | This restores normal scrolling behaviour. | ||
* | Actually insert blank lines in the soft buffer | June McEnroe | 2020-09-02 |
| | | | | So they can be preserved forever! | ||
* | Render one main window from buffers | June McEnroe | 2020-09-02 |
| | | | | | | | | 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. | ||
* | Implement buffer line wrapping | June McEnroe | 2020-09-01 |
| | | | | Not yet rendered in the UI! Just done in parallel. | ||
* | Factor buffer out of ui | June McEnroe | 2020-09-01 |
| | | | | In preparation for doing line wrapping outside of ncurses. | ||
* | Move styleParse out of ui | June McEnroe | 2020-09-01 |
| | |||
* | Use a static buffer for base directory paths | June McEnroe | 2020-08-21 |
| | |||
* | Use configPath to load TLS cert/priv | June McEnroe | 2020-08-20 |
| | |||
* | Refactor base dir functions to iterate over paths | June McEnroe | 2020-08-20 |
| | |||
* | Say "OpenSSL" in additional permission notices | June McEnroe | 2020-08-04 |
| | | | | LibreSSL is "a modified version of that library". | ||
* | Replace catf with something that tracks len | June McEnroe | 2020-07-30 |
| | | | | Also the old catf would be broken with -DNDEBUG oops! | ||
* | Define explicit_bzero using memset_s on macOS | June McEnroe | 2020-07-30 |
| | |||
* | Remove use of strlcat | June McEnroe | 2020-07-30 |
| | | | | catf is not better though and should really be replaced. | ||
* | Bump ParamCap to 254 | June McEnroe | 2020-06-24 |
| | | | | | | | | | | | | 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. | ||
* | Add additional permission for linking with LibreSSL | June McEnroe | 2020-06-08 |
| | | | | https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs | ||
* | Mark global variables in chat.h as extern | Michael Forney | 2020-05-07 |
| | | | | | This fixes the build with gcc 10, which enables -fno-common by default. | ||
* | Check ignores against id | June McEnroe | 2020-04-07 |
| | | | | | 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. | ||
* | Add M-q to collapse whitespace | June McEnroe | 2020-04-07 |
| | |||
* | Add /ignore message filtering patterns | June McEnroe | 2020-03-31 |
| | |||
* | Add text macros | June McEnroe | 2020-03-30 |
| | |||
* | Add logging functions | June McEnroe | 2020-03-25 |
| | | | | The mkdir dance is a bit awkward... | ||
* | Track MODE in replies | June McEnroe | 2020-03-23 |
| | |||
* | Assume worst case for unknown user and host in splitMessage | June McEnroe | 2020-03-23 |
| | | | | | | 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. | ||
* | Track own host, handle CHGHOST | June McEnroe | 2020-03-22 |
| | |||
* | Implement the causal.agency/consumer capability | June McEnroe | 2020-02-29 |
| | |||
* | Add /mode, /except, /invex and handle lists replies | June McEnroe | 2020-02-25 |
| | |||
* | Add /ban, /unban and handle ban list replies | June McEnroe | 2020-02-19 |
| | |||
* | Various small cleanups | June McEnroe | 2020-02-16 |
| | | | | Haven't really gone through ui.c yet. | ||
* | Replace a lot of snprintf with a catf implementation | June McEnroe | 2020-02-16 |
| | |||
* | Track EXCEPTS and INVEX modes | June McEnroe | 2020-02-16 |
| | |||
* | Replace small integers in size_t with uint | June McEnroe | 2020-02-15 |
| | |||
* | Track PREFIX modes and CHANMODES | June McEnroe | 2020-02-15 |
| | |||
* | Enable multi-prefix | June McEnroe | 2020-02-15 |
| | |||
* | Separate network info from self | June McEnroe | 2020-02-15 |
| | |||
* | Add /invite | June McEnroe | 2020-02-14 |
| | |||
* | Add /away | June McEnroe | 2020-02-14 |
| | |||
* | Add /exec | June McEnroe | 2020-02-13 |
| | |||
* | Rename procPipe to utilPipe | June McEnroe | 2020-02-13 |
| | |||
* | Refactor windows into array and add /move | June McEnroe | 2020-02-13 |
| | | | | Oof. | ||
* | Explicitly close the TLS connection | June McEnroe | 2020-02-13 |
| | | | | Just to be nice. | ||
* | Add -N flag for notifications | June McEnroe | 2020-02-12 |
| |