Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-04 | Revert half-working reconnecting stuff | Curtis McEnroe | |
2018-12-03 | Check nick to determine if is self | Curtis McEnroe | |
I forgot that usernames aren't unique for a minute there. | |||
2018-12-03 | Ignore ~ username prefixes | Curtis McEnroe | |
This simplifies a lot. | |||
2018-12-02 | Send automated messages to TagStatus with UICold | Curtis McEnroe | |
2018-11-29 | Add basic log replay | Curtis McEnroe | |
2018-11-29 | Handle no such nick error | Curtis McEnroe | |
2018-11-29 | Add /whois | Curtis McEnroe | |
2018-09-14 | Factor out uiPrompt to call on nick change | Curtis McEnroe | |
2018-09-13 | Move color selection to format.c | Curtis McEnroe | |
2018-09-13 | Rewrite UI again | Curtis McEnroe | |
The persistent topic is gone and the status line is now at the top. The status formatting still needs to be reworked. I also want to try showing the nick in the input window so it really looks like your next message. | |||
2018-09-11 | Don't render every PM as a ping | Curtis McEnroe | |
2018-09-02 | Use PascalCase for constants | Curtis McEnroe | |
Begone underscores. | |||
2018-09-02 | Treat all direct messages as pings | Curtis McEnroe | |
2018-09-02 | Simplify invalid nick messages | Curtis McEnroe | |
2018-08-20 | Remove FIXME for tracking tags in WHO handling | Curtis McEnroe | |
I don't think it'll ever be a problem. | |||
2018-08-20 | Don't clobber tab order on /who | Curtis McEnroe | |
2018-08-20 | Fix missing stdint.h include | Curtis McEnroe | |
2018-08-17 | Add logging | Curtis McEnroe | |
The reason logFmt takes a timestamp as a parameter is to support IRCv3 server-time in the future to accurately log the znc buffer. Hopefully. | |||
2018-08-17 | Add UI "heat" for status/messages/pings | Curtis McEnroe | |
Bring back the beeps! Allow pings from notices. Also factor out dequoting of part/quit messages. | |||
2018-08-14 | Detect pings in ACTIONs | Curtis McEnroe | |
2018-08-14 | Keep hashing '\0' until color is not black | Curtis McEnroe | |
Actually uses the rest of the hash state this way. | |||
2018-08-13 | Don't ping self | Curtis McEnroe | |
2018-08-13 | Detect pings anywhere in message | Curtis McEnroe | |
2018-08-13 | Add /query, /part and /close | Curtis McEnroe | |
Closing a channel before parting it is a bit weird, but if I send a PART on /close, it would get reopened again to show the part message. | |||
2018-08-11 | Rework UI code for multi-channel | Curtis McEnroe | |
Tags are now permanently assigned (and I'm betting on never needing more than 256 of them) and the UI maps tags to a linked list of views for easy reordering and removal. Currently, views can only be added. Views don't have a topic window until they need one. All UI code wants to be functional reactive. Beeping is temporarily removed until message priorities (status, message, ping) can be added to the UI. At that point spawning notify-send should also be possible. Priorities will also help with unnecessary markers, which will not appear for status messages. The tab system is now used to send QUIT and NICK messages to all the relevant tags. Verbose output now goes to its own tag, and sending to it sends raw IRC. IRC colors are now listed in chat.h and handler functions for numeric replies have real names. The color algorithm now uses a real hash function for hopefully better results. QUIT, PART and KICK messages are scanned for URLs. | |||
2018-08-11 | Fix isSelf user checking | Curtis McEnroe | |
Other users with the same username are not self. The fun effect of this was that I could tab-complete "june_" but not "june". | |||
2018-08-10 | Become multi-channel | Curtis McEnroe | |
There's a lot of UI missing for it, but it technically works. | |||
2018-08-10 | Remove unnecessary va_end | Curtis McEnroe | |
va_end must be called before the function returns, but errx is noreturn. | |||
2018-08-10 | Rename chan to join | Curtis McEnroe | |
In preparation for multi-channel? | |||
2018-08-09 | Color brackets around nicks | Curtis McEnroe | |
Also switch self-brackets to () since [] can appear in nicks. | |||
2018-08-09 | Fix 432 handler params | Curtis McEnroe | |
2018-08-09 | Replace shift with a great variadic function | Curtis McEnroe | |
I am disappointed in the lack of compiler attributes for type-checking variadic functions. | |||
2018-08-09 | Only tabTouch nick if not self | Curtis McEnroe | |
2018-08-09 | Add URL detection, listing and opening | Curtis McEnroe | |
Might also add /copy, like /open. | |||
2018-08-08 | Distinguish self with square brackets | Curtis McEnroe | |
2018-08-08 | Color own messages 15 | Curtis McEnroe | |
My own settings have "white" slightly darker than the default color, so this helps to distinguish my own messages. | |||
2018-08-07 | Highlight and beep pings | Curtis McEnroe | |
2018-08-07 | Populate tab-complete list | Curtis McEnroe | |
2018-08-07 | Fix /me formatting side-effects | Curtis McEnroe | |
NEVER pass side-effects to a macro. | |||
2018-08-07 | Hack clang into checking uiFmt format strings | Curtis McEnroe | |
2018-08-07 | Handle PART and QUIT without messages | Curtis McEnroe | |
2018-08-07 | Make safe filling the who buffer | Curtis McEnroe | |
2018-08-06 | Use wchar_t strings for all of UI | Curtis McEnroe | |
vaswprintf is a nightmare. | |||
2018-08-04 | Rename ui chat to log | Curtis McEnroe | |
2018-08-04 | Rename client to irc | Curtis McEnroe | |
2018-08-04 | Split source into several files | Curtis McEnroe | |
Can't believe I have to do this. |