Various fixes

This commit is contained in:
Diego Martínez
2012-12-14 20:33:44 -02:00
parent 639650901f
commit 3c72e4815a
112 changed files with 6810 additions and 262 deletions

15
doc/CHANGES.txt Normal file
View File

@ -0,0 +1,15 @@
Version 0.1.1:
- Moved all user configuration to `config.lua'.
- Added formatted messages for sent and received messages and options
to change them.
- Added options to change port, password.
- Added support for sending/receiving private messages.
- Removed need for separate packmod.{sh|bat} scripts. Now everything
is (almost) nicely handled by CMake.
- Now all sources (including Lua itself) are added to a single
luasocket lib. This will hopefully fix some cases where the linker
b0rk3d with undefined references under Linux.
Version 0.1.0:
- At least it's working :)

26
doc/TODO.txt Normal file
View File

@ -0,0 +1,26 @@
TODO List
---------
- Check for availability of nickname on join, and select a different one
until one is available.
Not TODO List
-------------
* These things either WON'T BE SUPPORTED, or have VERY LOW priority.
- Support for sending CTCP queries (LuaIRC seems to handle incoming
queries internally by default).
Known Bugs
----------
- Apparently, some users have to install `luasocket' separately, since
the provided one won't compile/work (reported by leo_rockway).
- Some users complain about getting a "Quit: Excess Flood" message
when connecting (reported by OldCoder). This may be an issue with
the IRC server. Need more feedback.
- Crosscompiling to MinGW32 needs a few manual tweaks (renaming
`libluasocket.dll' to just `luasocket.dll').