Commit message (Collapse) | Author | ||
---|---|---|---|
2024-05-22 | Clean up the INTERFACE section | June McEnroe | |
2024-05-22 | Clean up the CertFP and self-signed sections | June McEnroe | |
2024-05-22 | Rewrite much of the options section of the manual | June McEnroe | |
2024-05-22 | Make the = between options and values optional | June McEnroe | |
Documentation upcoming with wider improvements to the manual, hopefully. | |||
2024-05-22 | Remove use of sysexits.h | June McEnroe | |
Preserve exit status 69 (EX_UNAVAILABLE) for getting disconnected. Use 127 for failing to exec, like the shell. | |||
2024-05-22 | Pronouns | June McEnroe | |
This software is woke!! | |||
2024-05-22 | Remove donation link, fix FILES width on terminal | June McEnroe | |
2024-05-22 | Add example reconnect script | June McEnroe | |
2024-05-22 | Remove scripts related to chroot for ssh | June McEnroe | |
Kiosk mode is removed already, and that set up used it. | |||
2024-03-21 | Fix style character handling bug 2.2a | para | |
In some ncurses implementations[1], waddnstr returns ERR when len is 0. This happens in styleAdd() whenever there is a sequence of more than 1 style character in a row. This may result in visual bugs, the most notable of which is being unable to see the messages that mention you (due to the "\26\3" sequence). In order to properly handle multiple style characters in a row, waddnstr should only be called when len is greater than 0. Tested on Alpine Linux, using the official ncurses package. [1]https://invisible-island.net/ncurses | |||
2024-01-29 | Be specific about which file is at an unexpected end | June McEnroe | |
Reported-by: d4 <d4@unpx.net> | |||
2023-10-11 | Document /o as alias of /open | June McEnroe | |
2023-10-11 | Remove kiosk mode | June McEnroe | |
I'm fairly certain I was the only one to ever use it, and I don't anymore. | |||
2023-07-09 | Move sandman to top-level, add --enable-sandman 2.2 | June McEnroe | |
2023-07-07 | Fix README files list | June McEnroe | |
2023-07-07 | Revert "Work-in-progress showing prefixes" | June McEnroe | |
This reverts commit dc132b4350d207d147bb79d997c3f8b511c4ac30. | |||
2023-07-07 | Work-in-progress showing prefixes | June McEnroe | |
2023-02-05 | Fix what went wrong, part 3 | June McEnroe | |
2023-02-05 | Fix what went wrong, part 2 | June McEnroe | |
2023-02-05 | Fix what went wrong, part 1 | June McEnroe | |
2023-02-03 | Flatten cache structs | June McEnroe | |
2022-09-23 | Handle missing LIST reply topic parameter | June McEnroe | |
2022-09-18 | Make IRC Suite author consistent | June McEnroe | |
2022-09-11 | Remove WHO reply handlers | June McEnroe | |
2022-09-11 | Generate /ops from cache | June McEnroe | |
2022-09-11 | Set pointer to Entry in Cursor | June McEnroe | |
This feels a little redundant but the API makes sense, I think? | |||
2022-08-17 | Use tparm, not tiparm | June McEnroe | |
tiparm is either really new or just doesn't exist everywhere? | |||
2022-08-06 | Don't use cached color to route away reply | June McEnroe | |
Doesn't work when colors are disabled. | |||
2022-08-02 | Track prefix bits | June McEnroe | |
2022-07-31 | Move cache color to an Entry struct | June McEnroe | |
So that more values can be added sensibly. | |||
2022-07-30 | Only set cache color if not Default | June McEnroe | |
2022-07-30 | Rename cache{Prefix,Substr} to cache{Complete,Search} | June McEnroe | |
2022-07-30 | Switch to cache interfaces | June McEnroe | |
2022-07-30 | "Rename" complete to cache, refactor interfaces | June McEnroe | |
2022-07-30 | Show STATUSMSG prefix | June McEnroe | |
2022-07-30 | Refactor colorMentions to be seprintf-like | June McEnroe | |
2022-07-30 | Update copyrights, authors | June McEnroe | |
2022-07-30 | Remove EditMode | June McEnroe | |
Pretty sure this isn't going to be how vi mode works if I ever manage to implement it anyway. | |||
2022-07-28 | Use tiparm on to_status_line | June McEnroe | |
According to terminfo(5), tsl takes a single parameter! Never seen it happen, but this is technically more correct, I guess. | |||
2022-06-26 | Only show old topic if something was removed | June McEnroe | |
2022-06-24 | Use two lines to show topic diffs | June McEnroe | |
2022-05-29 | Allow setting fallback nicks and highlight on any | June McEnroe | |
As a side-effect, even with only one nick set you'll still be highlighted by it even if your current nick is different. | |||
2022-05-29 | Document visibility of unknown replies | June McEnroe | |
2022-05-29 | Put unknown numerics in parentheses | June McEnroe | |
For some reason this makes it look so much better to me. | |||
2022-05-08 | Route unknown channel replies to channels | June McEnroe | |
Also prefix with the numeric. I don't really want to show numerics to the user, but I'm not sure these really make sense without. | |||
2022-05-08 | Show "You arrive" message only once | June McEnroe | |
2022-05-08 | Write unknown replies to Network with Ice heat | June McEnroe | |
2022-04-20 | Sanitize leading dots from log path components | June McEnroe | |
Prevent directory traversal by sanitizing leading dots as well as slashes from log path components, which can be controlled by the server. Side effect of preventing hidden dotfiles is a bonus, I think. Also check that the full path actually fits in the buffer. Reported-by: Samanta Navarro <ferivoz@riseup.net> | |||
2022-03-31 | Add screenshot to README | June McEnroe | |
2022-03-16 | Skip non-spacing when moving and deleting by "character" | June McEnroe | |
I uh... don't think I can write tests for this, since macOS's wcwidth is notoriously useless. |