summary refs log tree commit diff
AgeCommit message (Collapse)Author
2021-01-10Check fprintf return values rather than ferrorC. McEnroe
2021-01-10Sandbox with unveil(2) on OpenBSD in restricted modeC. McEnroe
I wrote all this in vi and it was nice.
2021-01-10Print chain to stdout with -oC. McEnroe
2021-01-10Allow interspersing flags and config filesC. McEnroe
Don't wait for getopt_long to move all the arguments to the end. This allows overriding options set by config files by placing flags after them on the command line.
2021-01-10Move -o to a separate SYNOPSIS lineC. McEnroe
2021-01-10Exit immediately when using -oC. McEnroe
2021-01-09Make SYNOPSIS arguments consistent with option namesC. McEnroe
Can't keep the 4-letter pattern forever :(
2021-01-09Add -o and -t options to trust self-signed certificatesC. McEnroe
2021-01-09Allow configuring the upper bound of the hash functionC. 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-09Count width of 2 for invalid multibyte with high bitC. McEnroe
2021-01-07Use execl rather than execlp for shellC. McEnroe
SHELL is an absolute path.
2021-01-06Sandbox with pledge(2) on OpenBSDC. McEnroe
2021-01-04Collapse whitespace while wrapping and discard trailing spaceC. McEnroe
The latter avoids an extra blank line when a message ends with whitespace that hits the edge of the window.
2021-01-01Split ignore fields to avoid over-eager * matchingC. 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-30Factor out reply count checking and decrementingC. McEnroe
2020-12-30Add /whowasC. McEnroe
2020-12-30Show setnames like nick changesC. McEnroe
2020-12-29Add /setname commandC. 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-12-29Handle so-called Standard RepliesC. McEnroe
2020-12-29Alphabetize STANDARDS sectionC. McEnroe
2020-12-08Document commands which can be filteredC. McEnroe
2020-12-08Clarify the optional portions of an ignoreC. McEnroe
Each optional portion requires the optional portions before it, including a full hostmask.
2020-12-08Fix manual page lintsC. McEnroe
2020-12-08Clarify configuration file usage exampleC. McEnroe
Point to EXAMPLES and /help from the top of the manual.
2020-12-05Handle 437 ERR_UNAVAILRESOURCE like ERR_NICKNAMEINUSEC. McEnroe
Not totally clear under what conditions 437 is returned, but if it happens during registration, we should pick a new nick.
2020-11-24Split /exec lines by \r as well as \nC. McEnroe
This fixes local rendering of /exec toilet --irc, which outputs \r\n line endings.
2020-11-11Add topic diffing to notable features 1.3C. McEnroe
2020-11-08Use wmemcpy/wmemmoveC. McEnroe
2020-11-08Remove static buffer from colorMentionsC. McEnroe
2020-11-08Remove static buffer from capListC. McEnroe
2020-11-08Highlight changed portion of topicC. McEnroe
"%.*ls" is useless.
2020-10-12Avoid eating C-c while connectingC. 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-09Clear wrapping point at alignment tabC. McEnroe
This fixes odd wrapping when a nick contains a hyphen and there are no further wrapping points.
2020-10-09Strip formatting from URLsC. McEnroe
Notably this fixes opening URLs from litterbox queries where part of the URL is highlighted.
2020-10-09Factor out styleStripC. McEnroe
2020-10-02Double up /help for server helpC. 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-30Use WHO for /opsC. McEnroe
Accumulate names in a buffer and show away status.
2020-09-30Add /ops commandC. 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-18Allow 2-param form of /whois, count comma-separated nicksC. McEnroe
I do not feel like documenting the 2-param form of /whois because it is weird, but it should work for those who already know about it.
2020-09-18Switch back to checking for server by nick with '.'C. McEnroe
This fixes a bug where if you send a private message before joining any channels, your message will be routed to the <network> window. That happens because without a JOIN, self.user remains unset, which means that require will copy self.nick (set by echoMessage) to self.host. The easiest solution is to go back to checking for '.' and add a '.' to the default nick, so now if a server sends a NOTICE with no origin it will look like -*.*- which is kinda cute.
2020-09-11Copy style from wrapping pointC. McEnroe
This fixes a bug when wrapping on a word with style changes inside it, where the copied style would be different depending on the width of the terminal.
2020-09-09Silence set-but-unused warning 1.2C. McEnroe
getyx is so annoying this way.
2020-09-08Include DEL in characters ncurses will print in ^A formC. McEnroe
2020-09-07Add blank line to unread if there are already unreadC. McEnroe
This fixes the inconsistent M-u behaviour when catgirl is restarting and reconnecting to pounce, for example.
2020-09-07Call uiWrite to insert blank linesC. McEnroe
It only used to use different code to avoid adding the blank line to the soft buffer.
2020-09-07Let wrapped lines use the last columnC. McEnroe
2020-09-06Handle non-alignment tabs in line wrappingC. McEnroe
2020-09-06Add C-r, C-s for basic scrollback searchC. McEnroe
2020-09-03Add M-n, M-p to jump to highlightsC. McEnroe
2020-09-03Fix M-u behaviour difference before and after reflowC. McEnroe