| Commit message (Expand) | Author | Age | Files | Lines |
| * | Move channel tracking data/functions to src/IRCChannel.Channels | jesopo | 2018-11-11 | 2 | -29/+56 |
| * | Add a way to more explicitly denote when a CAP handshake has ended early | jesopo | 2018-11-09 | 1 | -1/+2 |
| * | Filter out empty items in utils.parse.keyvalue | jesopo | 2018-11-08 | 1 | -1/+1 |
| * | Support passing unrestricted args between connections | jesopo | 2018-11-08 | 1 | -1/+3 |
| * | 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 |
| * | Technically, we only need to unescape non-json message-tag *values* | jesopo | 2018-11-08 | 1 | -4/+2 |
| * | Only mesage-tag unescape non-json tags after we split on ";" | jesopo | 2018-11-08 | 1 | -2/+4 |
| * | Unescape message-tags as per spec Escaping Rules | jesopo | 2018-11-08 | 1 | -0/+9 |
| * | Fix issues that were introduced in message-tag parsing when I added support for•••JSON message tags
| jesopo | 2018-11-08 | 1 | -3/+3 |
| * | Explicitly denote when an :arbitrary arg is present in an IRCLine | jesopo | 2018-11-08 | 1 | -4/+8 |
| * | 'rename_channel' -> 'rename' in src/Database.channels | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Don't pass connection_params through to reconnect in normal circumstances | jesopo | 2018-11-05 | 1 | -2/+1 |
| * | Only automatically reconnect to a server when we don't already have a server•••with the same ID (to make reconnection work)
| jesopo | 2018-11-05 | 1 | -11/+8 |
| * | 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 |
| * | Clarify typing of .nickname/.nickname_lower/.name in IRCUser | jesopo | 2018-11-05 | 1 | -1/+5 |
| * | Fix the order of some connection params, add `alias` as a seperate argument to•••IRCServer.Server
| jesopo | 2018-11-05 | 3 | -4/+6 |
| * | Pass connection parameters around in their own object (IRCConnectionParameters) | jesopo | 2018-11-05 | 4 | -39/+59 |
| * | Add missing import of json in utils.irc | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Call Database.channels.rename in IRCServer.Server.rename_channel | jesopo | 2018-11-05 | 1 | -0/+1 |
| * | Add Database.channels.rename, as part of support for IRCv3's RENAME | jesopo | 2018-11-05 | 1 | -0/+3 |
| * | Support JSON messages tags, as per IRCv'3 message-tags-0.3 #318 pull request | jesopo | 2018-11-05 | 1 | -4/+10 |
| * | Reschedule STS expiration on disconnect | jesopo | 2018-11-05 | 1 | -0/+1 |
| * | Give Logging.Log object to modules | jesopo | 2018-11-05 | 1 | -2/+4 |
| * | I forgot the "normal" event hook syntax! | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | 'self.events' -> 'self._events' in IRCBot | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Cache socket fileno in IRCServer.Server just before disconnecting | jesopo | 2018-11-05 | 1 | -1/+3 |
| * | @utils.hook doesn't work outside of modules! | jesopo | 2018-11-05 | 1 | -5/+8 |
| * | 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 |
| * | Clarify `items` and `var_items` typing in src.utils.parse | jesopo | 2018-11-05 | 1 | -3/+4 |
| * | Add src.utils.parse.keyvalue, mostly for IRCv3 CAP negotiation | jesopo | 2018-11-05 | 1 | -0/+10 |
| * | Refactor IRCServer .connect() logic | jesopo | 2018-11-05 | 2 | -22/+15 |
| * | Add __repr__ to utils.irc.IRCArgs | jesopo | 2018-11-05 | 1 | -0/+2 |
| * | Don't set `args` to a split of the data left over when parsing out a command if•••there's not a space after the command
| jesopo | 2018-11-04 | 1 | -2/+5 |
| * | Implement utils.irc.IRCArgs.__len__ | jesopo | 2018-11-04 | 1 | -2/+7 |
| * | Fix typo in utils.irc, 'self_args' -> 'self._args' | jesopo | 2018-11-04 | 1 | -1/+1 |
| * | Move definition of IRCArgs above IRCLine | jesopo | 2018-11-04 | 1 | -8/+8 |
| * | Fix typo in utils.irc | jesopo | 2018-11-04 | 1 | -1/+1 |
| * | Change line parsing to put arbitrary-length args on the end of•••`args` so we can get rid of `last`/`arbitrary` and add IRCArgs (with .get())
to help only getting an arg index if it exists
| jesopo | 2018-11-04 | 1 | -6/+14 |
| * | Implement IRCv3's `draft/rename` | jesopo | 2018-11-04 | 1 | -0/+5 |
| * | utils.irc.color should take `int` for foreground/background, not str | jesopo | 2018-11-02 | 1 | -1/+1 |
| * | Add src/__init__.py to allow mypy to see src/ as a module | jesopo | 2018-11-02 | 1 | -0/+0 |
| * | Fix some non-explicit None returns, add type hints to important variables | jesopo | 2018-10-31 | 6 | -17/+23 |
| * | Move setting BitBotFormatter's converter (to time.gmtime) to class definition as•••it's not technically correct to overwrite a funcion on an existing object
| jesopo | 2018-10-30 | 1 | -1/+1 |
| * | Fix/refactor issues brought up by type hint linting | jesopo | 2018-10-30 | 13 | -59/+73 |
| * | Typo in src/Exports; 'self_exports' -> 'self.exports' | jesopo | 2018-10-30 | 1 | -1/+1 |