| Commit message (Expand) | Author | Age | Files | Lines |
| * | '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 |
| * | Add type/return hints throughout src/ and, in doing so, fix some cyclical•••references.
| jesopo | 2018-10-30 | 19 | -509/+594 |
| * | Typo in utils.parse_docstring, 'multiple_items' -> 'var_items' | jesopo | 2018-10-28 | 1 | -1/+1 |
| * | Support multiple items for docstring kwargs in utils.parse_docstring | jesopo | 2018-10-28 | 1 | -3/+11 |
| * | Specifically handle OSError (e.g. Network is unreachable) as a disconnect | jesopo | 2018-10-26 | 1 | -1/+1 |
| * | signal.signal timer callback takes 2 args | jesopo | 2018-10-25 | 1 | -1/+1 |
| * | Update src/IRCUser.py.send_notice to take a prefix kwarg | jesopo | 2018-10-25 | 1 | -2/+2 |
| * | Standardise "Failed to load results" errors! | jesopo | 2018-10-20 | 1 | -0/+3 |
| * | Some networks allow you to remove user modes that don't exist e.g. removing +o•••from someone that doesn't have it. wtf.
| jesopo | 2018-10-18 | 1 | -4/+6 |
| * | Add missing `return` in src/IRCServer.py.get_user_setting | jesopo | 2018-10-18 | 1 | -1/+1 |
| * | Print lines not [lines] in src/IRCBot.py | jesopo | 2018-10-17 | 1 | -1/+1 |
| * | "Cannot" -> "can't" in IRCServer encoding fallback | jesopo | 2018-10-17 | 1 | -1/+1 |