aboutsummaryrefslogtreecommitdiff
path: root/src/IRCBot.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 'break' instead of 'continue' so that things in the event queue get discardedGravatar jesopo2019-06-171-1/+1
|
* 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-171-0/+1
|
* 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
|
* CRITICAL log exceptions caught in _loop_catch()Gravatar jesopo2019-06-151-4/+4
|
* Wrap _read_loop() and _write_loop() in a try that kills the main threadGravatar jesopo2019-06-131-2/+11
|
* 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
|
* v1.9.1 releaseGravatar jesopo2019-06-081-1/+1
|
* v1.9.0 releaseGravatar jesopo2019-06-071-1/+1
|
* Merge branch 'master' into feature/write-threadGravatar jesopo2019-06-071-10/+11
|\
| * select.poll, as opposed to select.epoll, uses milliseconds not seconds forGravatar jesopo2019-06-061-1/+2
| | | | | | | | timeout
| * select.epoll -> select.pollGravatar jesopo2019-06-061-10/+10
| |
* | We need to wait for _check to finish so read/writes can be triggered correctlyGravatar jesopo2019-06-071-2/+2
| |
* | Call _check *after* read epoll call - to make sure timeouts are hit accuratelyGravatar jesopo2019-06-071-2/+2
| |
* | Switch to using threading.Condition to trigger write threadGravatar jesopo2019-06-071-19/+15
| |
* | Remove debug printGravatar jesopo2019-06-061-1/+0
| |
* | Use .trigger (without triggering read/write threads) to call _checkGravatar jesopo2019-06-061-5/+8
| |
* | use trigger_write() instead of a raw .send(b"")Gravatar jesopo2019-06-061-1/+2
| |
* | use _event_queue for _check, don't .disconnect() from outside of respectiveGravatar jesopo2019-06-061-17/+15
| | | | | | | | loops
* | remove _trigger_function code, it's not used any moreGravatar jesopo2019-06-061-12/+2
| |
* | Lambda scopes are irritatingGravatar jesopo2019-06-061-2/+9
| |
* | call timer callbacks and expire cach objects on main threadGravatar jesopo2019-06-061-4/+5
| |
* | Only trigger read/write threads onceGravatar jesopo2019-06-061-2/+17
| |
* | print lines as soon as they're read, don't wait for _post_sendGravatar jesopo2019-06-061-1/+1
| |
* | move immediate-write-trigger to IRCServer.py, trigger _event_loop forGravatar jesopo2019-06-061-3/+8
| | | | | | | | running=False
* | Split read/write/process in to 3 different threadsGravatar jesopo2019-06-061-88/+122
|/
* v1.8.0 releaseGravatar jesopo2019-06-031-1/+1
|
* add 'module-blacklist/whitelist' to bot.conf - use that as well as DB settingGravatar jesopo2019-06-011-2/+12
|
* More explicitly require `throttle_done()` only for `_queued_lines`Gravatar jesopo2019-05-311-1/+2
|
* Log server name when we see a _send failureGravatar jesopo2019-05-301-1/+7
|
* Bump version to v1.7.1Gravatar jesopo2019-05-241-1/+1
|
* Bump version to v1.7.0Gravatar jesopo2019-05-231-1/+1
|
* Bump version to v1.6.0Gravatar jesopo2019-05-171-1/+1
|
* Add IRCBot.SOURCE, use it in ctcp.pyGravatar jesopo2019-05-151-0/+1
|
* Move module black/white list to IRCBot, allow "safe" loading of all modulesGravatar jesopo2019-05-121-0/+7
|
* Fix reconnect() type hint issuesGravatar jesopo2019-05-011-1/+6
|
* Change TRIGGER_RETURN and TRIGGER_EXCEPTION to an enumGravatar jesopo2019-05-011-7/+8
|
* Bump version to v1.5.0Gravatar jesopo2019-04-301-1/+1
|
* Only pass through `args` from connection params when reconnectingGravatar jesopo2019-04-301-6/+6
|
* Add Database.servers.get_by_alias, move IRCBot.get_server toGravatar jesopo2019-04-241-2/+8
| | | | | IRCBot.get_server_by_id, add IRCBot.get_server_by_alias and change !connect/!disconnect to take aliases instead of IDs
* Bump version to v1.4.0Gravatar jesopo2019-04-161-1/+1
|
* 'failed to connect' log line needs 2 "%s"sGravatar jesopo2019-03-091-1/+1
|
* Only log exception message, not full stacktrace, when a connect failsGravatar jesopo2019-03-081-3/+3
|
* Bump version to v1.2.1Gravatar jesopo2019-02-251-1/+1
|
* Pull "is main thread" logic out to utils, force Database to be accessed on mainGravatar jesopo2019-02-251-1/+2
| | | | thread
* Change --verbose short to -V, add --version/-v, add IRCBot.VERSIONGravatar jesopo2019-02-241-0/+2
|