| Commit message (Expand) | Author | Age | Files | Lines |
| * | 'break' instead of 'continue' so that things in the event queue get discarded | jesopo | 2019-06-17 | 1 | -1/+1 |
| * | Only `panic()` when a server connection is part of bot init. closes #69 | jesopo | 2019-06-17 | 1 | -2/+4 |
| * | Make sure we exit event loop when there's no servers left | jesopo | 2019-06-17 | 1 | -0/+2 |
| * | Tell servers objects when they are the result of a reconnection | jesopo | 2019-06-17 | 2 | -0/+2 |
| * | Default IRCBot.running to false, set to true at the top of .run() | jesopo | 2019-06-17 | 1 | -1/+2 |
| * | Change panic() reason log from ERROR to CRITICAL | jesopo | 2019-06-17 | 1 | -1/+1 |
| * | Raise a BitBotPanic() exception in panic() | jesopo | 2019-06-17 | 1 | -0/+6 |
| * | Add IRCBot.panic() - a nicer interface for killing the whole application | jesopo | 2019-06-17 | 1 | -4/+19 |
| * | Allow channel-access and channel-mode check for channels people are not in | jesopo | 2019-06-16 | 1 | -0/+2 |
| * | Don't fail get_kwarg when self.kwarg[name] is falsey | jesopo | 2019-06-16 | 1 | -2/+5 |
| * | Return all caps through received.cap.ls|new and check if valid in line_handler,•••remove server.cap_started
| jesopo | 2019-06-16 | 1 | -4/+6 |
| * | Implement client-to-server BATCHes | jesopo | 2019-06-16 | 1 | -3/+18 |
| * | Type annotate ParsedLine.tags, add ParsedLine.add_tag() | jesopo | 2019-06-16 | 1 | -1/+4 |
| * | Change from `yield` checks to a func in `events` that pass up EventErrors | jesopo | 2019-06-15 | 1 | -1/+5 |
| * | CRITICAL log exceptions caught in _loop_catch() | jesopo | 2019-06-15 | 1 | -4/+4 |
| * | Fix utils.Check `args` type hinting | jesopo | 2019-06-14 | 1 | -2/+2 |
| * | Add a way to __or__ `utils.Check`s, as a "if one of these passes" thing | jesopo | 2019-06-14 | 1 | -0/+9 |
| * | Catch `yield`s in command callbacks for e.g. permission checks | jesopo | 2019-06-14 | 1 | -0/+5 |
| * | Wrap _read_loop() and _write_loop() in a try that kills the main thread | jesopo | 2019-06-13 | 1 | -2/+11 |
| * | Mode mode (and mode arg) parsing to IRCChannel.py, add IRCChannel.mode_str | jesopo | 2019-06-13 | 1 | -1/+40 |
| * | Change `send_*()` function return hints to be typing.Optional | jesopo | 2019-06-10 | 1 | -24/+31 |
| * | Add `.assure()` to ParsedLine, to make it immune from `.valid()` | jesopo | 2019-06-10 | 3 | -3/+9 |
| * | Allow preprocess.send callbacks to request a line not be sent at all | jesopo | 2019-06-10 | 2 | -8/+17 |
| * | Update CHANGELOG, v1.9.2 release | jesopo | 2019-06-09 | 1 | -1/+1 |
| * | Put responsbility of `self.running = False` on to the event loop | jesopo | 2019-06-09 | 1 | -15/+34 |
| * | IRCServer.statusmsg type hint | jesopo | 2019-06-08 | 1 | -1/+1 |
| * | v1.9.1 release | jesopo | 2019-06-08 | 1 | -1/+1 |
| * | We should look at ISUPPORT's STATUSMSG token instead of PREFIX | jesopo | 2019-06-08 | 1 | -0/+1 |
| * | Only request a CAP once. closes #66 | jesopo | 2019-06-08 | 1 | -1/+11 |
| * | v1.9.0 release | jesopo | 2019-06-07 | 1 | -1/+1 |
| * | Merge branch 'master' into feature/write-thread | jesopo | 2019-06-07 | 3 | -20/+22 |
| |\ |
|
| | * | Logging._log()'s `params` arg should be typing.Optiona[] | jesopo | 2019-06-07 | 1 | -1/+2 |
| | * | typehint for IRCBuffer._lines | jesopo | 2019-06-07 | 1 | -1/+2 |
| | * | Use a deque for temp chathistory storage (src/IRCBuffer.py) | jesopo | 2019-06-07 | 1 | -9/+8 |
| | * | select.poll, as opposed to select.epoll, uses milliseconds not seconds for•••timeout
| jesopo | 2019-06-06 | 1 | -1/+2 |
| | * | select.epoll -> select.poll | jesopo | 2019-06-06 | 1 | -10/+10 |
| * | | We need to wait for _check to finish so read/writes can be triggered correctly | jesopo | 2019-06-07 | 1 | -2/+2 |
| * | | "send" event on SentLines should be run on the main thread | jesopo | 2019-06-07 | 2 | -3/+2 |
| * | | Call _check *after* read epoll call - to make sure timeouts are hit accurately | jesopo | 2019-06-07 | 1 | -2/+2 |
| * | | Switch to using threading.Condition to trigger write thread | jesopo | 2019-06-07 | 1 | -19/+15 |
| * | | Checking if we should enable write buffer should be in _fill_throttle() | jesopo | 2019-06-07 | 1 | -6/+5 |
| * | | Remove debug print | jesopo | 2019-06-06 | 1 | -1/+0 |
| * | | Use .trigger (without triggering read/write threads) to call _check | jesopo | 2019-06-06 | 1 | -5/+8 |
| * | | use trigger_write() instead of a raw .send(b"") | jesopo | 2019-06-06 | 1 | -1/+2 |
| * | | use _event_queue for _check, don't .disconnect() from outside of respective•••loops
| jesopo | 2019-06-06 | 1 | -17/+15 |
| * | | remove _trigger_function code, it's not used any more | jesopo | 2019-06-06 | 1 | -12/+2 |
| * | | Lambda scopes are irritating | jesopo | 2019-06-06 | 1 | -2/+9 |
| * | | call timer callbacks and expire cach objects on main thread | jesopo | 2019-06-06 | 1 | -4/+5 |
| * | | Only trigger read/write threads once | jesopo | 2019-06-06 | 1 | -2/+17 |
| * | | print lines as soon as they're read, don't wait for _post_send | jesopo | 2019-06-06 | 2 | -9/+12 |