aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix hostmask_match_many type hintingGravatar jesopo2019-06-201-1/+2
* 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
* Differentiate between module "not found" and "not loaded"Gravatar jesopo2019-06-191-1/+4
* Raise ModuleNotFoundException on failure to find_module()Gravatar jesopo2019-06-191-0/+3
* Give requested module name to ModuleNotFoundExceptionGravatar jesopo2019-06-191-1/+1
* Add MessageTag.present, to see if a tag is present (even without value)Gravatar jesopo2019-06-191-0/+2
* add `margin` arg to ParsedLine.truncate so commands/outs.py doesn't do it•••manually and cause potential issues with multi-byte chars Gravatar jesopo2019-06-191-4/+4
* `line_formatted` -> `valid` so tags don't cause us to subvert truncationGravatar jesopo2019-06-181-1/+1
* Tags should not be appended to `pieces` now that they're counted separatelyGravatar jesopo2019-06-181-1/+0
* Add IRCBot.URL (https://bitbot.dev)Gravatar jesopo2019-06-181-0/+1
* add has_tag() and get_tag() to IRCLine.ParsedLineGravatar jesopo2019-06-181-0/+4
* message-tags count for a different character limit than the rest of the lineGravatar jesopo2019-06-181-5/+18
* Simplify SentLine by shifting truncation to ParsedLine (and commands.outs)Gravatar jesopo2019-06-181-39/+25
* only count "\n"s (not "\r\n") that hit the wire, incase \r\n gets cut in halfGravatar jesopo2019-06-171-1/+1
* Fix Database.ChannelSettings.find SQLGravatar jesopo2019-06-171-1/+1
* 'break' instead of 'continue' so that things in the event queue get discardedGravatar jesopo2019-06-171-1/+1
* Only `panic()` when a server connection is part of bot init. closes #69Gravatar jesopo2019-06-171-2/+4
* Make sure we exit event loop when there's no servers leftGravatar jesopo2019-06-171-0/+2
* Tell servers objects when they are the result of a reconnectionGravatar jesopo2019-06-172-0/+2
* Default IRCBot.running to false, set to true at the top of .run()Gravatar jesopo2019-06-171-1/+2
* Change panic() reason log from ERROR to CRITICALGravatar jesopo2019-06-171-1/+1
* Raise a BitBotPanic() exception in panic()Gravatar jesopo2019-06-171-0/+6
* Add IRCBot.panic() - a nicer interface for killing the whole applicationGravatar jesopo2019-06-171-4/+19
* Allow channel-access and channel-mode check for channels people are not inGravatar jesopo2019-06-161-0/+2
* Don't fail get_kwarg when self.kwarg[name] is falseyGravatar jesopo2019-06-161-2/+5
* Return all caps through received.cap.ls|new and check if valid in line_handler,•••remove server.cap_started Gravatar jesopo2019-06-161-4/+6
* Implement client-to-server BATCHesGravatar jesopo2019-06-161-3/+18
* Type annotate ParsedLine.tags, add ParsedLine.add_tag()Gravatar jesopo2019-06-161-1/+4
* Change from `yield` checks to a func in `events` that pass up EventErrorsGravatar jesopo2019-06-151-1/+5
* CRITICAL log exceptions caught in _loop_catch()Gravatar jesopo2019-06-151-4/+4
* Fix utils.Check `args` type hintingGravatar jesopo2019-06-141-2/+2
* Add a way to __or__ `utils.Check`s, as a "if one of these passes" thingGravatar jesopo2019-06-141-0/+9
* Catch `yield`s in command callbacks for e.g. permission checksGravatar jesopo2019-06-141-0/+5
* Wrap _read_loop() and _write_loop() in a try that kills the main threadGravatar jesopo2019-06-131-2/+11
* Mode mode (and mode arg) parsing to IRCChannel.py, add IRCChannel.mode_strGravatar jesopo2019-06-131-1/+40
* Change `send_*()` function return hints to be typing.OptionalGravatar jesopo2019-06-101-24/+31
* Add `.assure()` to ParsedLine, to make it immune from `.valid()`Gravatar jesopo2019-06-103-3/+9
* Allow preprocess.send callbacks to request a line not be sent at allGravatar jesopo2019-06-102-8/+17
* Update CHANGELOG, v1.9.2 releaseGravatar jesopo2019-06-091-1/+1
* Put responsbility of `self.running = False` on to the event loopGravatar jesopo2019-06-091-15/+34
* IRCServer.statusmsg type hintGravatar jesopo2019-06-081-1/+1
* v1.9.1 releaseGravatar jesopo2019-06-081-1/+1
* We should look at ISUPPORT's STATUSMSG token instead of PREFIXGravatar jesopo2019-06-081-0/+1
* Only request a CAP once. closes #66Gravatar jesopo2019-06-081-1/+11
* v1.9.0 releaseGravatar jesopo2019-06-071-1/+1
* Merge branch 'master' into feature/write-threadGravatar jesopo2019-06-073-20/+22
|\
| * Logging._log()'s `params` arg should be typing.Optiona[]Gravatar jesopo2019-06-071-1/+2
| * typehint for IRCBuffer._linesGravatar jesopo2019-06-071-1/+2
| * Use a deque for temp chathistory storage (src/IRCBuffer.py)Gravatar jesopo2019-06-071-9/+8