aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Only reset ansi bolding when both color-bold and bold are falseGravatar jesopo2018-11-141-1/+1
|
* Bold reset is 22, not 21Gravatar jesopo2018-11-131-1/+1
|
* Fix bolding/unbolding code in utils.ircGravatar jesopo2018-11-131-2/+3
|
* Apparently '39' is 'font reset' for ansi colorsGravatar jesopo2018-11-131-1/+1
|
* Visual tweak; align "="s in utils.constsGravatar jesopo2018-11-131-25/+25
|
* Add code to tokenize and ansi-replace IRC colors; use this inGravatar jesopo2018-11-131-1/+74
| | | | modules/print_activity.py
* Better constifying of COLORsGravatar jesopo2018-11-131-17/+31
|
* Better constifying of color/font charsGravatar jesopo2018-11-133-23/+50
|
* I was accidentally removing two characters from the start of :nick!user@hostGravatar jesopo2018-11-131-1/+1
|
* Print MOTD in modules/print_activity.py (after caching it inGravatar jesopo2018-11-131-0/+3
| | | | modules/line_handler.py)
* Add .keys()/.values()/.items to src/IRCChannels.pyGravatar jesopo2018-11-131-0/+7
|
* That shouldn't be thereGravatar jesopo2018-11-131-1/+0
|
* Return new user's id in Database.users.addGravatar jesopo2018-11-132-1/+4
|
* Return new server_id from Database.servers.addGravatar jesopo2018-11-132-2/+5
|
* Move logic for adding a server to the database out to utils.cli and add aGravatar jesopo2018-11-132-1/+20
| | | | --add-server flag for start.py, to add new server
* Remove unneeded constGravatar jesopo2018-11-121-1/+0
|
* We don't need utils.irc.remove_colon anymore!Gravatar jesopo2018-11-121-7/+1
|
* Add type annotionations to src/Timers.py and src/IRCBuffer.pyGravatar jesopo2018-11-112-3/+3
|
* Add missing imports and `Channel` namespacing to src/IRCChannel.pyGravatar jesopo2018-11-111-6/+7
|
* Split out Channels in to IRCChannels.Channels, not IRCChannel.ChannelsGravatar jesopo2018-11-113-55/+56
|
* Fix type annotations for utils.parse.keyvalueGravatar jesopo2018-11-111-2/+3
|
* Don't implicitly create channels, explicitly create channels when we join oneGravatar jesopo2018-11-111-2/+2
|
* Implement `__len__` on src/IRCChannel.py.ChannelsGravatar jesopo2018-11-111-0/+2
|
* Copypaste fail in src/IRCChannel.py, 'self.id' -> 'self._server.id'Gravatar jesopo2018-11-111-2/+2
|
* Copypaste fail in src/IRCChannel.py, 'self.bot' -> 'self._bot'Gravatar jesopo2018-11-111-2/+2
|
* Copypaste fail in src/IRCChannel, 'get_channel_id' -> '_get_id'Gravatar jesopo2018-11-111-1/+1
|
* Typin in src/IRCChannel.py, 'self._add' -> 'self.add'Gravatar jesopo2018-11-111-1/+1
|
* Readd line I accidentally removed in src/Database.pyGravatar jesopo2018-11-111-0/+1
|
* Typo in src/IRCChannel.py, 'Iterable' -> 'typing.Iterable'Gravatar jesopo2018-11-111-1/+1
|
* Forgot to import `EventManager` in src/IRCChannel.pyGravatar jesopo2018-11-111-1/+2
|
* Add missing ":" in src/IRCChannel.pyGravatar jesopo2018-11-111-1/+1
|
* Add a `threading.Lock()` around `cursor.execute(...)` in Database.pyGravatar jesopo2018-11-111-2/+3
|
* Move channel tracking data/functions to src/IRCChannel.ChannelsGravatar jesopo2018-11-112-29/+56
|
* Add a way to more explicitly denote when a CAP handshake has ended earlyGravatar jesopo2018-11-091-1/+2
|
* Filter out empty items in utils.parse.keyvalueGravatar jesopo2018-11-081-1/+1
|
* Support passing unrestricted args between connectionsGravatar jesopo2018-11-081-1/+3
|
* Keep a track of bytes written and read per serverGravatar jesopo2018-11-081-2/+7
|
* Keep a dict of isupport key:values on IRCServer.ServerGravatar jesopo2018-11-081-1/+2
|
* Technically, we only need to unescape non-json message-tag *values*Gravatar jesopo2018-11-081-4/+2
|
* Only mesage-tag unescape non-json tags after we split on ";"Gravatar jesopo2018-11-081-2/+4
|
* Unescape message-tags as per spec Escaping RulesGravatar jesopo2018-11-081-0/+9
|
* Fix issues that were introduced in message-tag parsing when I added support forGravatar jesopo2018-11-081-3/+3
| | | | JSON message tags
* Explicitly denote when an :arbitrary arg is present in an IRCLineGravatar jesopo2018-11-081-4/+8
|
* 'rename_channel' -> 'rename' in src/Database.channelsGravatar jesopo2018-11-051-1/+1
|
* Don't pass connection_params through to reconnect in normal circumstancesGravatar jesopo2018-11-051-2/+1
|
* Only automatically reconnect to a server when we don't already have a serverGravatar jesopo2018-11-051-11/+8
| | | | with the same ID (to make reconnection work)
* Cache a server fileno from connect onwards, like we used toGravatar jesopo2018-11-051-1/+1
|
* Typo in IRCServer, 'nicknamme' -> 'nickname'Gravatar jesopo2018-11-051-1/+1
|
* Update IRCServer.__repr__ to use connection_paramsGravatar jesopo2018-11-051-1/+2
|
* Fall back to nickname for username/realname, as it used to beGravatar jesopo2018-11-051-3/+6
|