about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Fix style character handling bug HEAD masterpara2024-03-21
| | | | | | | | | | | | | | | | 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
* Be specific about which file is at an unexpected endJune McEnroe2024-01-29
| | | | Reported-by: d4 <d4@unpx.net>
* Document /o as alias of /openJune McEnroe2023-10-11
|
* Remove kiosk modeJune McEnroe2023-10-11
| | | | | I'm fairly certain I was the only one to ever use it, and I don't anymore.
* Move sandman to top-level, add --enable-sandman 2.2June McEnroe2023-07-09
|
* Fix README files listJune McEnroe2023-07-07
|
* Revert "Work-in-progress showing prefixes"June McEnroe2023-07-07
| | | | This reverts commit dc132b4350d207d147bb79d997c3f8b511c4ac30.
* Work-in-progress showing prefixesJune McEnroe2023-07-07
|
* Fix what went wrong, part 3June McEnroe2023-02-05
|
* Fix what went wrong, part 2June McEnroe2023-02-05
|
* Fix what went wrong, part 1June McEnroe2023-02-05
|
* Flatten cache structsJune McEnroe2023-02-03
|
* Handle missing LIST reply topic parameterJune McEnroe2022-09-23
|
* Make IRC Suite author consistentJune McEnroe2022-09-18
|
* Remove WHO reply handlersJune McEnroe2022-09-11
|
* Generate /ops from cacheJune McEnroe2022-09-11
|
* Set pointer to Entry in CursorJune McEnroe2022-09-11
| | | | This feels a little redundant but the API makes sense, I think?
* Use tparm, not tiparmJune McEnroe2022-08-17
| | | | tiparm is either really new or just doesn't exist everywhere?
* Don't use cached color to route away replyJune McEnroe2022-08-06
| | | | Doesn't work when colors are disabled.
* Track prefix bitsJune McEnroe2022-08-02
|
* Move cache color to an Entry structJune McEnroe2022-07-31
| | | | So that more values can be added sensibly.
* Only set cache color if not DefaultJune McEnroe2022-07-30
|
* Rename cache{Prefix,Substr} to cache{Complete,Search}June McEnroe2022-07-30
|
* Switch to cache interfacesJune McEnroe2022-07-30
|
* "Rename" complete to cache, refactor interfacesJune McEnroe2022-07-30
|
* Show STATUSMSG prefixJune McEnroe2022-07-30
|
* Refactor colorMentions to be seprintf-likeJune McEnroe2022-07-30
|
* Update copyrights, authorsJune McEnroe2022-07-30
|
* Remove EditModeJune McEnroe2022-07-30
| | | | | Pretty sure this isn't going to be how vi mode works if I ever manage to implement it anyway.
* Use tiparm on to_status_lineJune McEnroe2022-07-28
| | | | | According to terminfo(5), tsl takes a single parameter! Never seen it happen, but this is technically more correct, I guess.
* Only show old topic if something was removedJune McEnroe2022-06-26
|
* Use two lines to show topic diffsJune McEnroe2022-06-24
|
* Allow setting fallback nicks and highlight on anyJune McEnroe2022-05-29
| | | | | As a side-effect, even with only one nick set you'll still be highlighted by it even if your current nick is different.
* Document visibility of unknown repliesJune McEnroe2022-05-29
|
* Put unknown numerics in parenthesesJune McEnroe2022-05-29
| | | | For some reason this makes it look so much better to me.
* Route unknown channel replies to channelsJune McEnroe2022-05-08
| | | | | 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.
* Show "You arrive" message only onceJune McEnroe2022-05-08
|
* Write unknown replies to Network with Ice heatJune McEnroe2022-05-08
|
* Sanitize leading dots from log path componentsJune McEnroe2022-04-20
| | | | | | | | | | | 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>
* Add screenshot to READMEJune McEnroe2022-03-31
|
* Skip non-spacing when moving and deleting by "character"June McEnroe2022-03-16
| | | | | I uh... don't think I can write tests for this, since macOS's wcwidth is notoriously useless.
* Document using -S to connect over IPv4 or IPv6June McEnroe2022-03-13
|
* Always refresh the screen with ^LChristian Kellermann2022-03-09
| | | | | | | | | | | This patch adds an explicit wrefresh call. Under some conditions just flagging the window for redraw does not trigger a redraw and the user has no other means to force redrawing of a window. Without this patch resizing the window would sometimes result in an empty chat window with no way to redraw it. Tested under uxterm and st on OpenBSD.
* Update STANDARDS section authors, titles and URLsJune McEnroe2022-03-05
|
* Show own nick on /nick without paramsJune McEnroe2022-03-02
|
* Specify commands which depend on capsJune McEnroe2022-02-26
| | | | Currently only /setname.
* Only add available commands to completeJune McEnroe2022-02-26
|
* Factor out commandAvailableJune McEnroe2022-02-26
|
* Give examples of "general events" 2.1June McEnroe2022-02-23
|
* Add missing unistd.h include in input.cJune McEnroe2022-02-23
|