aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* output of `len()` needs to have a `-1` on it when matching it against indexes•••within the given string (src/utils/irc.py) Gravatar jesopo2019-01-161-1/+1
* Don't ignore a color code when it's right at the end of a message•••(src/utils/irc.py) Gravatar jesopo2019-01-161-12/+7
* Pushing logging on to another thread was a ridiculous idea. it means CRITICAL•••logs are in a race condition to write to file before the main thread exits. Gravatar jesopo2019-01-161-16/+2
* Support removal of modes without args that we don't know about in a way that•••doesn't push code execution down the wrong path (src/IRCChannel.py) Gravatar jesopo2019-01-161-2/+3
* Support a mode being removed from a channel, without an arg, that we weren't yet•••aware of (src/IRCChannel.py) Gravatar jesopo2019-01-161-1/+1
* Add src/utils/_consts_256_color.py that should have been added 2 commits agoGravatar jesopo2019-01-161-0/+85
* Fix regression that caused only foreground to be parsed if there's foreground•••AND background formatting (src.utils.irc) Gravatar jesopo2019-01-161-1/+2
* Support IRC colors 16 through 98Gravatar jesopo2019-01-162-11/+22
* 'to_ansi_colors(' -> 'parse_format(' as it's become a lot more than just colors.•••strip \x08 (in case hexchat users paste it) (print_activity.py, src.utils.irc) Gravatar jesopo2019-01-131-3/+10
* don't consume 3 digits for a colour code when the first char is 0 and the second•••two chars make up a valid colour code (src.utils.irc) Gravatar jesopo2019-01-131-3/+5
* Typo, '=' -> '==' (utils.irc)Gravatar jesopo2018-12-121-1/+1
* Support '99' as a 'transparent' irc color codeGravatar jesopo2018-12-122-17/+19
* Preserve logged exc_info across threadsGravatar jesopo2018-12-121-0/+4
* Typo in utils.http.request, 'response_heders' -> 'response_headers'Gravatar jesopo2018-12-111-1/+1
* Pass a `dict` to utils.CaseInsensitiveDict, not a MutableMappingGravatar jesopo2018-12-111-1/+1
* Add missing `utils` import in utils.httpGravatar jesopo2018-12-111-0/+1
* 'utils.http.get_url' -> 'utils.http.request', return a Response object from•••utils.http.request Gravatar jesopo2018-12-111-10/+16
* Add type hint for Logging._queueGravatar jesopo2018-12-101-1/+1
* Make `block` param of queue.get() explicitly refer to `block`Gravatar jesopo2018-12-101-1/+1
* Put logging functionality on to it's own threadGravatar jesopo2018-12-101-2/+12
* By the time we take ref counts, we've already removed `module` from•••`loaded_module` Gravatar jesopo2018-12-091-2/+2
* change `self.modules` to be a dict of str:LoadedModule, not str:BaseModuleGravatar jesopo2018-12-091-2/+2
* Add missing change to `loaded_module.module` (from `module`) in unload_moduleGravatar jesopo2018-12-091-1/+1
* `def LoadedModule` -> `class LoadedModule`Gravatar jesopo2018-12-091-2/+5
* Don't store any information used to load/unload modules on the module it's self•••thus preventing even the possibility that modules can change them Gravatar jesopo2018-12-091-21/+31
* Add typing hints to CaseInsensitiveDict, fix it's __setitem__ signature, call•••.items() on `other` in ctor Gravatar jesopo2018-12-081-5/+5
* Switch to using a case insensitive dictionary for headers instead of doing•••.title() on each header key Gravatar jesopo2018-12-081-0/+8
* Add `returns` type hint in EventManager.py.callGravatar jesopo2018-12-061-1/+1
* Only pop MODE args when we're certain we should (pays more attention to•••CHANMODES ISUPPORT) Gravatar jesopo2018-12-061-0/+2
* fix incorrect retyping of "event_path" as "event, path" (i wasn't paying enough•••attention) Gravatar jesopo2018-12-051-2/+2
* Add missing ")" from last commitGravatar jesopo2018-12-051-1/+1
* Don't do unnecessary work when someone tries to call a not-hooked-in-to eventGravatar jesopo2018-12-051-2/+9
* re-add check in utils.irc.parse_line that prevents us having an empty string as•••an arg when there's no non-arbitrary args Gravatar jesopo2018-12-031-1/+4
* Further clarification of type hints in ModuleManager.py, including now making it•••explicit that module objects MUST inherit from BaseModule Gravatar jesopo2018-12-021-2/+5
* Use `getattr` to get `Module` classes out of modules in ModuleManager.py; this•••makes more sense and removes some errors from type linting Gravatar jesopo2018-12-021-4/+5
* Clarify func_queue type (IRCBot.py)Gravatar jesopo2018-12-021-1/+1
* Clarify/fix type hints throughout EventManager.pyGravatar jesopo2018-12-021-7/+8
* A couple of tweaks to clarify some type hintsGravatar jesopo2018-12-023-5/+7
* `data` is now `line`Gravatar jesopo2018-12-021-1/+1
* Remove usage of sys.stderr in IRCBot.py, change disconnect logs from `info` to•••`warn` Gravatar jesopo2018-12-021-6/+6
* Remove `print` calls from IRCBot.py, move received data logging to IRCServerGravatar jesopo2018-12-022-8/+7
* Omit Config keys that have falsey values (empty)Gravatar jesopo2018-12-021-1/+1
* 'uderline' -> 'underline' typo in utils.ircGravatar jesopo2018-11-301-1/+1
* Support ANSI underlineGravatar jesopo2018-11-302-5/+15
* 'find_*_setting' functions don't exist anymore!Gravatar jesopo2018-11-281-4/+4
* Add type hint for return type of IRCBot.triggerGravatar jesopo2018-11-271-1/+2
* Raise exceptions back up through .trigger()Gravatar jesopo2018-11-271-3/+15
* Grab response from functions asked to be executed on the main thread and feed•••them back to the callers, allowing rest_api.py to take the main thread while it's waiting for the response to give back to the requesting client Gravatar jesopo2018-11-271-7/+19
* Add .nickname/.username/.realname/.hostname to IRCServerGravatar jesopo2018-11-271-0/+5
* Add a way to catch when a writebuffer is emptied so we can e.g. assure a QUIT is•••sent before shutting down the bot Gravatar jesopo2018-11-272-1/+8