aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add 375 data to server.motd_linesGravatar jesopo2018-11-141-0/+1
|
* 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
|
* purple doesn't need the bold() trick as weechat doesn't bold it to make it theGravatar jesopo2018-11-131-1/+0
| | | | color it is, thus a forceful unbolding isn't required!
* 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-132-2/+75
| | | | modules/print_activity.py
* Better constifying of COLORsGravatar jesopo2018-11-131-17/+31
|
* Better constifying of color/font charsGravatar jesopo2018-11-138-40/+67
|
* 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-133-0/+16
| | | | 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-133-19/+32
| | | | --add-server flag for start.py, to add new server
* Add "prefixed-commands" to !channelsetGravatar jesopo2018-11-121-0/+3
|
* Add a way to tell bitbot to only response to highlight-based commands (e.g. ↵Gravatar jesopo2018-11-121-0/+3
| | | | "bitbot: ping") but ignore prefixed commands (e.g. "!ping")
* Add a way to prevent responses to commands at all in specific channelsGravatar jesopo2018-11-121-0/+7
|
* The target channel of an /INVITE is the second argument!Gravatar jesopo2018-11-121-1/+1
|
* Typo in modules/rest_api.py, 'args_spit' -> 'args_split'Gravatar jesopo2018-11-121-1/+1
|
* Better denote variable-length "endpoint" arg in !apikey's usageGravatar jesopo2018-11-121-1/+1
|
* Remove accidentally-added additional argument in modules/set.py.bot_setGravatar jesopo2018-11-121-2/+1
|
* Typo in modules/rest_api.py, 'seting' -> 'setting'Gravatar jesopo2018-11-121-1/+1
|
* Typo on modules/rest_api.py, '= =' -> '='Gravatar jesopo2018-11-121-1/+1
|
* 'api-minify' -> 'rest-api-minify' and make it settable from !botsetGravatar jesopo2018-11-121-1/+4
|
* Change API key checking on-request to match what the values should be in theGravatar jesopo2018-11-121-1/+2
| | | | database (dict of '{"name": , "permissions": }')
* Change API keys to be hex representations of UUID4s, change their value in theGravatar jesopo2018-11-121-7/+8
| | | | | | | database to be a dictionary ({"comment": , "permissions": }) and change the !apikey command to take a `comment` arg (to note what specific keys are intended for) and vararg `permissions` (a list of endpoints the API key is allowed to hit)
* Boldify authors in modules/github.pyGravatar jesopo2018-11-121-5/+7
|
* Remove unneeded constGravatar jesopo2018-11-121-1/+0
|
* We don't need utils.irc.remove_colon anymore!Gravatar jesopo2018-11-121-7/+1
|
* Remove no-longer-used Regexes in modules/line_handler.pyGravatar jesopo2018-11-121-4/+0
|
* Use a link to freenode's webchat in README.mdGravatar jesopo2018-11-121-1/+1
|
* Boldify "merged"/"closed without merging" in modules/github.pyGravatar jesopo2018-11-121-0/+1
|
* 'files: %s/%s/%s' -> '%s/%s/%s files'Gravatar jesopo2018-11-121-1/+1
|
* Fix copypaste fail in modules/github.pyGravatar jesopo2018-11-121-1/+0
|
* Delimit added/removed/modified with "/" and boldify themGravatar jesopo2018-11-121-1/+7
|
* Change "modified" color from yellow to purple, remove unneeded spaceGravatar jesopo2018-11-121-2/+2
|
* Change added/removed/modified order, change modified symbol and added colors toGravatar jesopo2018-11-121-6/+9
| | | | added/removed/modified
* 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-112-3/+5
|
* Implement `__len__` on src/IRCChannel.py.ChannelsGravatar jesopo2018-11-111-0/+2
|
* Typo in modules/line_handler.py, 'getl' -> 'get'Gravatar jesopo2018-11-111-1/+1
|
* 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
|