about summary refs log tree commit diff
path: root/tag.c (follow)
Commit message (Collapse)AuthorAge
* Move nick and tag coloring to color.cJune McEnroe2019-02-25
|
* Update tag colorsJune McEnroe2019-02-25
| | | | | | This kind of incurs a lot of writes usually for no reason. The only place this matters is when cold-opening a /query. I wonder if there's a better way to do that.
* Add color to tagsJune McEnroe2019-02-25
|
* Remove tag X macros againJune McEnroe2019-02-25
|
* Rename global tags with angle bracketsJune McEnroe2019-02-22
|
* Rename verbose to rawJune McEnroe2018-12-05
| | | | And change the format of the sticky tag names again.
* Rename status and verbose tagsJune McEnroe2018-10-22
|
* Use PascalCase for constantsJune McEnroe2018-09-02
| | | | Begone underscores.
* Factor out input param and add tagFindJune McEnroe2018-08-12
| | | | So that /view can't just invent tags.
* Rework UI code for multi-channelJune McEnroe2018-08-11
| | | | | | | | | | | | | | | | | | | | | | 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.
* Become multi-channelJune McEnroe2018-08-10
There's a lot of UI missing for it, but it technically works.