aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 'self.message.*' now uses 'send.message.*'Gravatar jesopo2018-11-141-1/+1
|
* We do indeed need to see "\x03" even when there's no foreground/backgroundGravatar jesopo2018-11-141-2/+1
| | | | (color reset)
* Don't eat commas when there's no background color or when a comma directlyGravatar jesopo2018-11-141-2/+7
| | | | follows a background color
* This `elif` should have actually been one even indented!Gravatar jesopo2018-11-141-6/+6
|
* `IRCBuffer.add_notice` doesn't have an `action` paramGravatar jesopo2018-11-141-1/+1
|
* Remove a ") i should have removed beforeGravatar jesopo2018-11-141-1/+1
|
* Missed a 'message' -> 'ctcp_message'Gravatar jesopo2018-11-141-1/+1
|
* only do server-notice checking if we have a "prefix" in event, even if it's NoneGravatar jesopo2018-11-141-1/+1
|
* Typo in utils.irc, 'message' -> 'ctcp_message'Gravatar jesopo2018-11-141-2/+2
|
* Stop supporting using ansi bold for brightening colors, support ansi backgroundGravatar jesopo2018-11-142-24/+31
| | | | colors
* `if is_channel` should be `if channel`, `buffer.add_notice` doesn't take anGravatar jesopo2018-11-141-7/+7
| | | | `action` param and `elif` can't go after `else`!
* Better parsing of CTCP messages, support raw.send.privmsg/raw.send.notice inGravatar jesopo2018-11-142-21/+65
| | | | modules/line_handler.py
* Strip font from the last message in a channel before trying to translate itGravatar jesopo2018-11-141-1/+1
|
* Better support passing "send" events through the parsers already present inGravatar jesopo2018-11-143-138/+124
| | | | modules/line_handler.py
* Typo in src/utils/irc.py, 'resplace' -> 'replace'Gravatar jesopo2018-11-141-1/+1
|
* Don't assume a reconnect timer event will always have connection_paramsGravatar jesopo2018-11-141-1/+2
|
* You can join color and bold in to one \033 ansi sequenceGravatar jesopo2018-11-141-2/+3
|
* Support irc format full reset (\x0F) as ansi reset (\033[0m)Gravatar jesopo2018-11-141-1/+7
|
* Use extended ANSI colors to avoid using bold to make colors lighterGravatar jesopo2018-11-141-8/+8
|
* 'ANSI_RESET' -> 'ANSI_BOLD_RESET' typo, 'ansi_bold' -> 'color_bold'Gravatar jesopo2018-11-142-21/+24
| | | | | clarification, fix issue in color tokenizing that caused bolds to be put in the wrong place
* Add type annotions to irc->ansi color functionsGravatar jesopo2018-11-141-4/+4
|
* `bool_input` moved to utils.cliGravatar jesopo2018-11-141-1/+1
|
* Do a bold+unbold *after* the colored parts of github's "added/removed/modified"Gravatar jesopo2018-11-141-2/+2
| | | | to avoid the weechat bolding bug but not bold the colors
* 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
|