| Commit message (Expand) | Author | Age | Files | Lines |
| * | `IRCServer.Server.get_user` should be 'typing.Optional[IRCUser.User]', not just•••'IRCUser.user'
| jesopo | 2018-11-21 | 1 | -1/+2 |
| * | typo in src/IRCServer.py, 'typing.float' -> 'float' | jesopo | 2018-11-21 | 1 | -1/+1 |
| * | Fix mypy issues caused by overwriting a `bytes` variable with a `str` object | jesopo | 2018-11-21 | 1 | -3/+3 |
| * | Add more return type annotations to src/IRCServer.Server | jesopo | 2018-11-21 | 1 | -21/+27 |
| * | Add some missing return type annotations in src/IRCServer.Server | jesopo | 2018-11-21 | 1 | -4/+4 |
| * | Add IRCServer.Server.get_target, to get an IRCChannel if the given target is a•••channel name or an IRCUser
| jesopo | 2018-11-21 | 1 | -0/+9 |
| * | Don't enable write throttling until we get 005 | jesopo | 2018-11-19 | 1 | -1/+4 |
| * | Better support passing "send" events through the parsers already present in•••modules/line_handler.py
| jesopo | 2018-11-14 | 1 | -27/+1 |
| * | Print MOTD in modules/print_activity.py (after caching it in•••modules/line_handler.py)
| jesopo | 2018-11-13 | 1 | -0/+3 |
| * | Split out Channels in to IRCChannels.Channels, not IRCChannel.Channels | jesopo | 2018-11-11 | 1 | -2/+2 |
| * | Move channel tracking data/functions to src/IRCChannel.Channels | jesopo | 2018-11-11 | 1 | -29/+5 |
| * | Add a way to more explicitly denote when a CAP handshake has ended early | jesopo | 2018-11-09 | 1 | -1/+2 |
| * | Keep a track of bytes written and read per server | jesopo | 2018-11-08 | 1 | -2/+7 |
| * | Keep a dict of isupport key:values on IRCServer.Server | jesopo | 2018-11-08 | 1 | -1/+2 |
| * | Cache a server fileno from connect onwards, like we used to | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Typo in IRCServer, 'nicknamme' -> 'nickname' | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Update IRCServer.__repr__ to use connection_params | jesopo | 2018-11-05 | 1 | -1/+2 |
| * | Fall back to nickname for username/realname, as it used to be | jesopo | 2018-11-05 | 1 | -3/+6 |
| * | Fix the order of some connection params, add `alias` as a seperate argument to•••IRCServer.Server
| jesopo | 2018-11-05 | 1 | -2/+4 |
| * | Pass connection parameters around in their own object (IRCConnectionParameters) | jesopo | 2018-11-05 | 1 | -22/+17 |
| * | Call Database.channels.rename in IRCServer.Server.rename_channel | jesopo | 2018-11-05 | 1 | -0/+1 |
| * | Cache socket fileno in IRCServer.Server just before disconnecting | jesopo | 2018-11-05 | 1 | -1/+3 |
| * | it should be self.bindhost, now that we've moved the logic to .connect() instead•••of __init__
| jesopo | 2018-11-05 | 1 | -2/+3 |
| * | Typo in src/IRCServer.py; 'self.AF_INET' -> 'socket.AF_INET' | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Refactor IRCServer .connect() logic | jesopo | 2018-11-05 | 1 | -18/+9 |
| * | Implement IRCv3's `draft/rename` | jesopo | 2018-11-04 | 1 | -0/+5 |
| * | Fix some non-explicit None returns, add type hints to important variables | jesopo | 2018-10-31 | 1 | -15/+15 |
| * | Fix/refactor issues brought up by type hint linting | jesopo | 2018-10-30 | 1 | -1/+1 |
| * | Add type/return hints throughout src/ and, in doing so, fix some cyclical•••references.
| jesopo | 2018-10-30 | 1 | -64/+73 |
| * | Specifically handle OSError (e.g. Network is unreachable) as a disconnect | jesopo | 2018-10-26 | 1 | -1/+1 |
| * | Add missing `return` in src/IRCServer.py.get_user_setting | jesopo | 2018-10-18 | 1 | -1/+1 |
| * | "Cannot" -> "can't" in IRCServer encoding fallback | jesopo | 2018-10-17 | 1 | -1/+1 |
| * | TRACE log when we have to use fallback encoding | jesopo | 2018-10-17 | 1 | -2/+4 |
| * | event["args"] is an array already, args_split does not exist. Also send raw•••events from src/IRCServer.py as call_unsafe to make errors like that more
apparent.
| jesopo | 2018-10-15 | 1 | -1/+1 |
| * | Typo in src/IRCServer.py, 'defau;t' -> 'default' | jesopo | 2018-10-14 | 1 | -1/+1 |
| * | Work directly from users in modules/coins.py.interest(), so as to not give•••double-interest to two "users" online at the same time sharing the same identity
| jesopo | 2018-10-14 | 1 | -0/+8 |
| * | Improve "non-complete line" TRACE log | jesopo | 2018-10-11 | 1 | -2/+2 |
| * | TRACE log when we receive and buffer a non-complete line | jesopo | 2018-10-11 | 1 | -0/+3 |
| * | Add a way to track non-IRC sockets within the main epoll loop; use this for a•••unix domain control socket!
| jesopo | 2018-10-06 | 1 | -5/+10 |
| * | 'ssl-certificate'/'ssl-key' -> 'tls-certificate'/'tls-key' | jesopo | 2018-10-05 | 1 | -2/+2 |
| * | 'mode_prefixes' -> prefix_modes and prefix_symbols | jesopo | 2018-10-03 | 1 | -3/+5 |
| * | Move src/Utils.py in to src/utils/, splitting functionality out in to modules of•••related functionality
| jesopo | 2018-10-03 | 1 | -9/+9 |
| * | Add a way to not add a user automatically in IRCServer.get_user | jesopo | 2018-10-03 | 1 | -3/+3 |
| * | Support changing command responses from PRIVMSG to NOTICE | jesopo | 2018-10-02 | 1 | -6/+17 |
| * | Better support for msgtags with PRIVMSGs; put functionality in to•••modules/commands.py to reply to specific messages by use of msgids
| jesopo | 2018-10-01 | 1 | -4/+14 |
| * | Add call_unsafe functions to EventManager.EventHook, to not swallow errors on•••specific function calls (e.g. preprocess.command)
| jesopo | 2018-10-01 | 1 | -1/+1 |
| * | Implement client-side bindhost | jesopo | 2018-10-01 | 1 | -1/+3 |
| * | Implement src/IRCObject.py to convert specific objects in to strings when•••passing them to modules/scripts.py scripts
| jesopo | 2018-10-01 | 1 | -2/+2 |
| * | Add modules/strip_color.py | jesopo | 2018-09-30 | 1 | -3/+7 |
| * | Move src/IRCLineHandler.py to modules/line_handler.py | jesopo | 2018-09-30 | 1 | -1/+1 |