| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Visual tweak; align "="s in utils.consts | jesopo | 2018-11-13 | 1 | -25/+25 |
| * | Add code to tokenize and ansi-replace IRC colors; use this in•••modules/print_activity.py
| jesopo | 2018-11-13 | 1 | -1/+74 |
| * | Better constifying of COLORs | jesopo | 2018-11-13 | 1 | -17/+31 |
| * | Better constifying of color/font chars | jesopo | 2018-11-13 | 3 | -23/+50 |
| * | I was accidentally removing two characters from the start of :nick!user@host | jesopo | 2018-11-13 | 1 | -1/+1 |
| * | Print MOTD in modules/print_activity.py (after caching it in•••modules/line_handler.py)
| jesopo | 2018-11-13 | 1 | -0/+3 |
| * | Add .keys()/.values()/.items to src/IRCChannels.py | jesopo | 2018-11-13 | 1 | -0/+7 |
| * | That shouldn't be there | jesopo | 2018-11-13 | 1 | -1/+0 |
| * | Return new user's id in Database.users.add | jesopo | 2018-11-13 | 2 | -1/+4 |
| * | Return new server_id from Database.servers.add | jesopo | 2018-11-13 | 2 | -2/+5 |
| * | Move logic for adding a server to the database out to utils.cli and add a•••--add-server flag for start.py, to add new server
| jesopo | 2018-11-13 | 2 | -1/+20 |
| * | Remove unneeded const | jesopo | 2018-11-12 | 1 | -1/+0 |
| * | We don't need utils.irc.remove_colon anymore! | jesopo | 2018-11-12 | 1 | -7/+1 |
| * | Add type annotionations to src/Timers.py and src/IRCBuffer.py | jesopo | 2018-11-11 | 2 | -3/+3 |
| * | Add missing imports and `Channel` namespacing to src/IRCChannel.py | jesopo | 2018-11-11 | 1 | -6/+7 |
| * | Split out Channels in to IRCChannels.Channels, not IRCChannel.Channels | jesopo | 2018-11-11 | 3 | -55/+56 |
| * | Fix type annotations for utils.parse.keyvalue | jesopo | 2018-11-11 | 1 | -2/+3 |
| * | Don't implicitly create channels, explicitly create channels when we join one | jesopo | 2018-11-11 | 1 | -2/+2 |
| * | Implement `__len__` on src/IRCChannel.py.Channels | jesopo | 2018-11-11 | 1 | -0/+2 |
| * | Copypaste fail in src/IRCChannel.py, 'self.id' -> 'self._server.id' | jesopo | 2018-11-11 | 1 | -2/+2 |
| * | Copypaste fail in src/IRCChannel.py, 'self.bot' -> 'self._bot' | jesopo | 2018-11-11 | 1 | -2/+2 |
| * | Copypaste fail in src/IRCChannel, 'get_channel_id' -> '_get_id' | jesopo | 2018-11-11 | 1 | -1/+1 |
| * | Typin in src/IRCChannel.py, 'self._add' -> 'self.add' | jesopo | 2018-11-11 | 1 | -1/+1 |
| * | Readd line I accidentally removed in src/Database.py | jesopo | 2018-11-11 | 1 | -0/+1 |
| * | Typo in src/IRCChannel.py, 'Iterable' -> 'typing.Iterable' | jesopo | 2018-11-11 | 1 | -1/+1 |
| * | Forgot to import `EventManager` in src/IRCChannel.py | jesopo | 2018-11-11 | 1 | -1/+2 |
| * | Add missing ":" in src/IRCChannel.py | jesopo | 2018-11-11 | 1 | -1/+1 |
| * | Add a `threading.Lock()` around `cursor.execute(...)` in Database.py | jesopo | 2018-11-11 | 1 | -2/+3 |
| * | 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 |