]> git.lizzy.rs Git - luairc.git/blob - TODO
split between internal/public functions in channel.lua
[luairc.git] / TODO
1 Before next release - 0.1
2 ===================
3 - Document available callbacks
4 - Rework the way irc.lua uses things from modules - there are quite a few things which shouldn't be part of the public user interface which are right now. Probably just use the leading underscore convention for right now, but hopefully a lot of that stuff can be refactored.
5 - Rework the way CTCP quoting is handled throughout the code... the whole string/table thing is pretty ugly
6 - Rework callback system to use registration rather than just assigning to stuff inside the irc module, so that we can do things like have multiple handlers automatically
7
8 For the future
9 ==============
10 - Reorganize the modules a bit more... we should have a src/irc/dcc/send.lua, src/irc/ctcp/base.lua, src/irc/ctcp/dcc.lua, etc. also, most (all?) of the handlers should be moved out of irc.lua into, say, src/irc/base.lua
11 - Separate out the DCC module some more so that the callbacks aren't registered unless the module is loaded
12 - Also separate out all of the CTCP commands/callbacks into the CTCP module
13 - Implement callbacks for user mode changes (need to figure out how to represent users in the callback info)
14 - Allow a server parameter in whois() so that the returned data can include the user's idle time
15 - chan:ban()/chan:unban() should take a usermask, not a nick, or be able to generate a usermask from a nick, or something like that
16 - Clean up misc.split
17 - Implement DCC CHAT
18 - Implement DCC XMIT/OFFER
19 - Implement some more of the newer CTCP commands
20 - Implement more information requests
21   - who
22   - whowas
23   - info
24   - stats
25   - links
26   - trace (not freenode supported)
27 - Implement XDCC (?)
28 - Handle endianness in the IP address conversion functions