aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update CHANGELOG.mdGravatar jesopo2019-06-231-0/+4
* Handle `CAP ACK -<cap>` and ACK from a REQ not sent by ircv3.pyGravatar jesopo2019-06-231-7/+13
* .send_raw() should be used if we're not .send()ing a ParsedLineGravatar jesopo2019-06-231-1/+1
* Only show highest channel access symbol in format_activity.pyGravatar jesopo2019-06-231-6/+4
* Don't print BitBotPanic stacks when we don't need toGravatar jesopo2019-06-231-11/+11
* v1.10.0-rc2Gravatar jesopo2019-06-231-1/+1
* Update CHANGELOG.mdGravatar jesopo2019-06-231-0/+2
* make labeled-response depend on batchGravatar jesopo2019-06-231-1/+1
* until_read_timeout is a func - read_timed_out has always been returning falseGravatar jesopo2019-06-221-1/+1
* Don't needlessly call time.monotonic() when checking cache expirationsGravatar jesopo2019-06-221-1/+2
* colorise ref for `delete` event, same as for `create` eventGravatar jesopo2019-06-221-1/+2
* v1.10.0-rc1Gravatar jesopo2019-06-221-1/+1
* Update CHANGELOG.mdGravatar jesopo2019-06-221-0/+4
* remove remove_own_mode( check - deferred_read.py better solves the issue.•••the issue was getting a MODE line on irc.com prior to 001, thus we didn't know what our nickname was thus we didn't know that the MODE was for us. not dying when we saw +x was easy to do with this check but I think it's more correct to actually parse that MODE after 001 so we know we have +x. Gravatar jesopo2019-06-221-5/+1
* add deferred_read.py, to defer parsing of *some* lines until after 001Gravatar jesopo2019-06-221-0/+23
* Fix more instances of event["args"] (now event["line"].args)Gravatar jesopo2019-06-224-8/+9
* Add missing ">" to !help outputGravatar jesopo2019-06-221-1/+1
* self.bot.trigger() relaying - needed for write loop notification cross-networkGravatar jesopo2019-06-221-1/+4
* Restrict EventManager calls to the main threadGravatar jesopo2019-06-221-0/+3
* Change raw.send and raw.receive commands to just pass around ParsedLinesGravatar jesopo2019-06-227-129/+127
* Cache ParsedLine IDs of relay messages so we can ignore them (avoid loop)Gravatar jesopo2019-06-211-2/+12
* pass ParsedLine on message and formatted.* message eventsGravatar jesopo2019-06-213-5/+5
* return generated SentLine objects from IRCChannel.send_* functionsGravatar jesopo2019-06-211-9/+9
* set echo-message response ID to the ID of the original messageGravatar jesopo2019-06-212-1/+12
* Make echo-message depend on labeled-responsesGravatar jesopo2019-06-211-1/+1
* Implement dependency system for CAPsGravatar jesopo2019-06-212-3/+50
* Adda system of aliases for CAPs, mostly for changeable draft specs and creating•••dependence between moving specs Gravatar jesopo2019-06-217-9/+14
* Update CHANGELOG.mdGravatar jesopo2019-06-211-0/+1
* WARN log when we try to remove a mode from ourselves that we didn't haveGravatar jesopo2019-06-211-0/+3
* check we have a mode before trying to remove itGravatar jesopo2019-06-211-1/+2
* Show which server a label warning is forGravatar jesopo2019-06-211-3/+5
* Update CHANGELOG.mdGravatar jesopo2019-06-211-0/+4
* Check our own (echoed) msgidsGravatar jesopo2019-06-211-0/+3
* remove echo-message considerations from line_handler/message.pyGravatar jesopo2019-06-211-12/+5
* move echo-message to it's own module, eat events before they hit fake_echo.pyGravatar jesopo2019-06-212-1/+11
* Don't listen to raw.send.privmsg in linehandler, emulate recv in fake_echo.pyGravatar jesopo2019-06-212-2/+13
* give every ParsedLine a uuid4 .id for tracking purposesGravatar jesopo2019-06-211-1/+2
* pass ParsedLine objects on raw.send.<command> eventsGravatar jesopo2019-06-211-1/+1
* pass from_self arg in formatted.* message eventsGravatar jesopo2019-06-212-6/+9
* use event["from_self"] instead of checking nicknameGravatar jesopo2019-06-201-1/+1
* Remove debug printGravatar jesopo2019-06-201-1/+0
* pass from_self through message/notice/tagmsg ventsGravatar jesopo2019-06-201-1/+1
* Add relay.py - cross-network relayingGravatar jesopo2019-06-201-0/+109
* fix hostmask_match_many type hintingGravatar jesopo2019-06-201-1/+2
* remove extra formatted.notice format paramGravatar jesopo2019-06-201-4/+4
* Change formatted.notice format to have `context`Gravatar jesopo2019-06-201-2/+3
* Add an export for IRCv3 CAPsGravatar jesopo2019-06-206-22/+9
* return unshortened url when shortening failsGravatar jesopo2019-06-201-0/+1
* Implement hostmask_match_any, for more efficient matching of multiple hostmasksGravatar jesopo2019-06-201-3/+9
* Implement utils.irc.hostmask_match() as regexGravatar jesopo2019-06-201-2/+9