X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/fe0673bc58b11a68183e4aaf9bb8aa76355cc407..52c80cff91dce5fa14ae903c6c2bf20533ccca46:/TODO diff --git a/TODO b/TODO index cea0187..b849f98 100644 --- a/TODO +++ b/TODO @@ -9,6 +9,8 @@ vim: expandtab sw=2 ts=2 - add a pipe which allows to input commands even when IRC connection is gone this might be difficult since there won't be a bot or user or chan object... +- add optional message wrapping in the core (instead of just truncation) + - implement timers in the core and/or modlib, by adjusting the select timeout whenever a timer is pending. call timers as part of the event loop. this has the potential to remove a LOT of the threading. @@ -52,3 +54,11 @@ vim: expandtab sw=2 ts=2 - fix softdeps, if they're used through lib.mod() or parent.module() they break, need a `'mod' in modules` check somewhere - ctlmod.unload: track what modules are unloaded and return that info to caller + +- lookup User object by auth + modules should be able to (attempt to) look up a User object by auth, that way if the user is online + !clevel and !glevel can look up their existing object and adjust the permissions there + +- sockets module: wrapping should operate on byte-level not string-level + sentences with unicode text get wrapped wrong + ... but the wrapping point needs to be determined at the string-level ugh