Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | degesch: introduce cstr_set() | Přemysl Janouch | 2018-01-08 | 1 | -74/+32 | |
| | ||||||
* | degesch: thorough review, no functional changes | Přemysl Janouch | 2018-01-08 | 1 | -20/+61 | |
| | ||||||
* | degesch: fix IPv6:port in irc_split_host_port() | Přemysl Janouch | 2018-01-08 | 1 | -12/+14 | |
| | ||||||
* | degesch: fix a minor bug in buffer_merge() | Přemysl Janouch | 2018-01-08 | 1 | -2/+1 | |
| | | | | | The pointer to the last item in the linked list wasn't always fixed, although nothing really touched it afterwards. | |||||
* | degesch: simplify a popular assertion | Přemysl Janouch | 2018-01-08 | 1 | -20/+10 | |
| | ||||||
* | degesch: simplify the configuration dumper | Přemysl Janouch | 2018-01-08 | 1 | -29/+11 | |
| | ||||||
* | degesch: show an error message on log write failure | Přemysl Janouch | 2018-01-08 | 1 | -2/+17 | |
| | | | | Running out of space and I/O errors seem like the most likely causes. | |||||
* | degesch: make buffer index computation easier to follow | Přemysl Janouch | 2018-01-08 | 1 | -2/+3 | |
| | ||||||
* | degesch: fix a Lua error message | Přemysl Janouch | 2018-01-08 | 1 | -1/+1 | |
| | ||||||
* | Bump liberty, avoid fall-through warnings | Přemysl Janouch | 2018-01-07 | 1 | -0/+1 | |
| | ||||||
* | degesch: better shift state encoding handling | Přemysl Janouch | 2017-07-07 | 1 | -6/+8 | |
| | | | | I don't know, probably didn't matter. | |||||
* | Rework constructors/destructors | Přemysl Janouch | 2017-06-22 | 1 | -33/+17 | |
| | ||||||
* | Bump liberty | Přemysl Janouch | 2017-06-22 | 1 | -231/+138 | |
| | ||||||
* | Avoid the "poller_fd::closed" feature | Přemysl Janouch | 2017-05-06 | 1 | -5/+2 | |
| | | | | | | | Reliability enhancement for Linux. This feature was created for ponymap, however we don't care about an extra syscall in most places. Doing it right even saves lines. | |||||
* | Update copyright years | Přemysl Janouch | 2017-04-22 | 1 | -1/+1 | |
| | ||||||
* | degesch: simplify quitting | Přemysl Janouch | 2017-04-20 | 1 | -49/+36 | |
| | | | | | | | | - send a QUIT on C-c, too - shut down the connection on /disconnect, too Connection management is one of the few fucked up parts that remain in that state for historical reasons. | |||||
* | degesch: fix confusing message | Přemysl Janouch | 2017-04-20 | 1 | -1/+2 | |
| | | | | It seemed like we were connecting albeit we were connected already. | |||||
* | degesch: make a second /disconnect always succeed | Přemysl Janouch | 2017-04-20 | 1 | -2/+11 | |
| | ||||||
* | Bump liberty | Přemysl Janouch | 2017-01-23 | 1 | -166/+167 | |
| | ||||||
* | Various fixes related to channel modes | Přemysl Janouch | 2016-12-30 | 1 | -10/+28 | |
| | | | | Bugs unnoticed for so long. | |||||
* | Cleanup | Přemysl Janouch | 2016-12-28 | 1 | -9/+1 | |
| | ||||||
* | Add support for OpenSSL 1.1.0 | Přemysl Janouch | 2016-12-28 | 1 | -0/+5 | |
| | ||||||
* | degesch: /query w/o arguments just opens the query | Přemysl Janouch | 2016-12-06 | 1 | -1/+1 | |
| | ||||||
* | degesch: replace degesch.connect with async.dial | Přemysl Janouch | 2016-11-04 | 1 | -145/+130 | |
| | | | | Halfway there, looks much saner. | |||||
* | degesch: move the Lua async code within the file | Přemysl Janouch | 2016-11-04 | 1 | -303/+303 | |
| | ||||||
* | degesch: get rid of Lua timer hooks | Přemysl Janouch | 2016-11-04 | 1 | -48/+0 | |
| | | | | Since they were the exception and have been replaced with the async API. | |||||
* | degesch: Lua coroutine safety | Přemysl Janouch | 2016-11-04 | 1 | -53/+46 | |
| | ||||||
* | degesch: implement Lua coroutine async basics | Přemysl Janouch | 2016-11-04 | 1 | -6/+333 | |
| | ||||||
* | degesch: fix join/part hiding in the backlog | Přemysl Janouch | 2016-10-30 | 1 | -1/+2 | |
| | ||||||
* | degesch: clean up | Přemysl Janouch | 2016-10-29 | 1 | -1/+1 | |
| | | | | Caught by Coverity, however it is quite harmless. | |||||
* | degesch: tiny fixes for the prompt hookcoverity_scan | Přemysl Janouch | 2016-10-29 | 1 | -2/+3 | |
| | | | | | | It should return valid UTF-8. Also remember to refresh the prompt upon hook removal. | |||||
* | degesch: avoid senseless indirection in hooks | Přemysl Janouch | 2016-10-29 | 1 | -52/+8 | |
| | | | | It's always been one function call only this far. | |||||
* | degesch: rename things around terminal attributes | Přemysl Janouch | 2016-10-29 | 1 | -43/+41 | |
| | ||||||
* | degesch: simplify "attribute_printer" | Přemysl Janouch | 2016-10-29 | 1 | -45/+17 | |
| | | | | Now that the line wrapper took over some of the state. | |||||
* | degesch: microoptimization | Přemysl Janouch | 2016-10-28 | 1 | -1/+1 | |
| | ||||||
* | degesch: refresh the prompt when a hook is set | Přemysl Janouch | 2016-10-28 | 1 | -0/+1 | |
| | ||||||
* | degesch: don't consider all mode changes important | Přemysl Janouch | 2016-10-28 | 1 | -4/+16 | |
| | ||||||
* | degesch: optimize Lua weak refs | Přemysl Janouch | 2016-10-28 | 1 | -30/+11 | |
| | ||||||
* | degesch: export server state as a string to Lua | Přemysl Janouch | 2016-10-28 | 1 | -0/+18 | |
| | ||||||
* | degesch: add Lua API for screen size retrieval | Přemysl Janouch | 2016-10-28 | 1 | -1/+10 | |
| | ||||||
* | degesch: add a prompt hook | Přemysl Janouch | 2016-10-28 | 1 | -1/+76 | |
| | ||||||
* | degesch: add introspection for refs within str_maps | Přemysl Janouch | 2016-10-28 | 1 | -126/+138 | |
| | | | | This required some fixes to the design. | |||||
* | degesch: allow lists of refs in introspection | Přemysl Janouch | 2016-10-28 | 1 | -20/+44 | |
| | ||||||
* | degesch: add introspection for "app_context" | Přemysl Janouch | 2016-10-28 | 1 | -6/+47 | |
| | ||||||
* | degesch: add introspection for "str" and "str_map" | Přemysl Janouch | 2016-10-28 | 1 | -12/+32 | |
| | ||||||
* | degesch: create Lua refs through introspection | Přemysl Janouch | 2016-10-28 | 1 | -104/+71 | |
| | ||||||
* | degesch: begin work on direct introspection | Přemysl Janouch | 2016-10-28 | 1 | -30/+176 | |
| | ||||||
* | degesch: cleanup | Přemysl Janouch | 2016-10-28 | 1 | -2/+2 | |
| | ||||||
* | degesch: defer prompt refreshing | Přemysl Janouch | 2016-10-23 | 1 | -4/+16 | |
| | | | | Now that we do it each time we receive a message from the server. | |||||
* | degesch: allow hiding join/part messages | Přemysl Janouch | 2016-10-23 | 1 | -10/+38 | |
| |