]> git.lizzy.rs Git - luairc.git/blob - TODO
forgot i sent ctcp stuff in dcc.lua
[luairc.git] / TODO
1 Before next release - 0.3
2 ===================
3 - Document available callbacks
4 - 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
5
6 For the future
7 ==============
8 - 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
9 - Separate out the DCC module some more so that the callbacks aren't registered unless the module is loaded
10 - Also separate out all of the CTCP commands/callbacks into the CTCP module
11 - Rework the way irc.lua uses things from modules - the whole underscore but public thing... do i want to keep that? i suppose it's not horrible... look into this more
12 - Implement callbacks for user mode changes (need to figure out how to represent users in the callback info)
13 - Allow a server parameter in whois() so that the returned data can include the user's idle time
14 - 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
15 - Clean up misc.split
16 - Implement DCC CHAT
17 - Implement DCC XMIT/OFFER
18 - Implement some more of the newer CTCP commands
19 - Implement more information requests
20   - who
21   - whowas
22   - info
23   - stats
24   - links
25   - trace (not freenode supported)
26 - Implement XDCC (?)
27 - Handle endianness in the IP address conversion functions