Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2020-02-14 | Add /away | C. McEnroe | |
2020-02-13 | Add /exec | C. McEnroe | |
2020-02-13 | Rename procPipe to utilPipe | C. McEnroe | |
2020-02-13 | Refactor windows into array and add /move | C. McEnroe | |
Oof. | |||
2020-02-13 | Explicitly close the TLS connection | C. McEnroe | |
Just to be nice. | |||
2020-02-12 | Add -N flag for notifications | C. McEnroe | |
2020-02-13 | Implement source address selection | multiplexd | |
This commit adds a '-S' command line option and a "bind" configuration file option to specify the source address to bind to when connecting to the IRC server. | |||
2020-02-12 | Add /list | C. McEnroe | |
2020-02-12 | Add C-t transpose | C. McEnroe | |
Also in emacs, weechat. | |||
2020-02-12 | Allow for arguments to open/copy utilities | C. McEnroe | |
2020-02-11 | Add -R restricted flag | C. McEnroe | |
2020-02-11 | Define ColorCap instead of hardcoding 100 | C. McEnroe | |
2020-02-11 | Move hash to top of chat.h | C. McEnroe | |
2020-02-11 | Move base64 out of chat.h | C. McEnroe | |
2020-02-11 | Move XDG_SUBDIR out of chat.h | C. McEnroe | |
2020-02-11 | Declare strlcat | C. McEnroe | |