Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Simplify windowUpdate loops and factor out windowTop | June McEnroe | 2021-01-21 |
| | | | | | No idea why I made that more complicated than it had to be looping backwards. | ||
* | Document that M-l shows timestamps | June McEnroe | 2021-01-21 |
| | |||
* | Don't lose swapped window when navigating to current buffer | Jeremy O'Brien | 2021-01-19 |
| | |||
* | Use Warm heat for manually inserted blank lines | June McEnroe | 2021-01-19 |
| | | | | Oops, forgot about these. | ||
* | Add example tmux(1) config | Klemens Nanni | 2021-01-18 |
| | | | | | Spawn one catgirl per network and handle reconnects through tmux, no extra tool required. | ||
* | Use Warm heat for blank lines 1.5 | June McEnroe | 2021-01-17 |
| | | | | So they're not hidden by M-+. | ||
* | Add -I highlight option and /highlight | June McEnroe | 2021-01-16 |
| | |||
* | Rename ignore code to filter | June McEnroe | 2021-01-16 |
| | |||
* | Remove join/part/quit ignore example | June McEnroe | 2021-01-16 |
| | | | | These can now be hidden with M-+. | ||
* | Save and load window visibility thresholds | June McEnroe | 2021-01-16 |
| | |||
* | Restore toggling ignore with M-- | June McEnroe | 2021-01-16 |
| | | | | So that pressing M-- repeatedly maintains the previous behavior. | ||
* | Generalize ignore toggling to visibility threshold | June McEnroe | 2021-01-16 |
| | |||
* | Save and load the URL ring in the save file 1.4 | June McEnroe | 2021-01-11 |
| | |||
* | Don't pass nick to urlScan for MOTD and help | June McEnroe | 2021-01-11 |
| | |||
* | Check fprintf return values rather than ferror | June McEnroe | 2021-01-10 |
| | |||
* | Sandbox with unveil(2) on OpenBSD in restricted mode | June McEnroe | 2021-01-10 |
| | | | | I wrote all this in vi and it was nice. | ||
* | Print chain to stdout with -o | June McEnroe | 2021-01-10 |
| | |||
* | Allow interspersing flags and config files | June McEnroe | 2021-01-10 |
| | | | | | | 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. | ||
* | Move -o to a separate SYNOPSIS line | June McEnroe | 2021-01-10 |
| | |||
* | Exit immediately when using -o | June McEnroe | 2021-01-10 |
| | |||
* | Make SYNOPSIS arguments consistent with option names | June McEnroe | 2021-01-09 |
| | | | | Can't keep the 4-letter pattern forever :( | ||
* | Add -o and -t options to trust self-signed certificates | June McEnroe | 2021-01-09 |
| | |||
* | Allow configuring the upper bound of the hash function | June McEnroe | 2021-01-09 |
| | | | | | | | 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? | ||
* | Count width of 2 for invalid multibyte with high bit | June McEnroe | 2021-01-09 |
| | |||
* | Use execl rather than execlp for shell | June McEnroe | 2021-01-07 |
| | | | | SHELL is an absolute path. | ||
* | Sandbox with pledge(2) on OpenBSD | June McEnroe | 2021-01-06 |
| | |||
* | Collapse whitespace while wrapping and discard trailing space | June McEnroe | 2021-01-04 |
| | | | | | The latter avoids an extra blank line when a message ends with whitespace that hits the edge of the window. | ||
* | Split ignore fields to avoid over-eager * matching | June McEnroe | 2021-01-01 |
| | | | | | | | | | | 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. | ||
* | Factor out reply count checking and decrementing | June McEnroe | 2020-12-30 |
| | |||
* | 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. | ||
* | Handle so-called Standard Replies | June McEnroe | 2020-12-29 |
| | |||
* | Alphabetize STANDARDS section | June McEnroe | 2020-12-29 |
| | |||
* | Document commands which can be filtered | June McEnroe | 2020-12-08 |
| | |||
* | Clarify the optional portions of an ignore | June McEnroe | 2020-12-08 |
| | | | | | Each optional portion requires the optional portions before it, including a full hostmask. | ||
* | Fix manual page lints | June McEnroe | 2020-12-08 |
| | |||
* | Clarify configuration file usage example | June McEnroe | 2020-12-08 |
| | | | | Point to EXAMPLES and /help from the top of the manual. | ||
* | Handle 437 ERR_UNAVAILRESOURCE like ERR_NICKNAMEINUSE | June McEnroe | 2020-12-05 |
| | | | | | Not totally clear under what conditions 437 is returned, but if it happens during registration, we should pick a new nick. | ||
* | Split /exec lines by \r as well as \n | June McEnroe | 2020-11-24 |
| | | | | | This fixes local rendering of /exec toilet --irc, which outputs \r\n line endings. | ||
* | Add topic diffing to notable features 1.3 | June McEnroe | 2020-11-11 |
| | |||
* | Use wmemcpy/wmemmove | June McEnroe | 2020-11-08 |
| | |||
* | Remove static buffer from colorMentions | June McEnroe | 2020-11-08 |
| | |||
* | Remove static buffer from capList | June McEnroe | 2020-11-08 |
| | |||
* | Highlight changed portion of topic | June McEnroe | 2020-11-08 |
| | | | | "%.*ls" is useless. | ||
* | 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. | ||
* | Clear wrapping point at alignment tab | June McEnroe | 2020-10-09 |
| | | | | | This fixes odd wrapping when a nick contains a hyphen and there are no further wrapping points. | ||
* | Strip formatting from URLs | June McEnroe | 2020-10-09 |
| | | | | | Notably this fixes opening URLs from litterbox queries where part of the URL is highlighted. | ||
* | 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. |