From: John L. <jr...@us...> - 2007-11-17 00:16:55
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13186/wxLua/docs Modified Files: changelog.txt Log Message: Streamlined wxLuaBinding::RegisterBinding(...) and remove the bool "registerClasses" since it didn't do anything useful anyway. If there needs to be a way to reregister the wxLua functions it should to be implemented from the ground up. Renamed the functions wxlua_txxx to wxluaT_xxx to make it easier to search for their usage. The functions in the wxLuaState used to be called just "txxx" and are now called wxluaT_Xxx where the first letter or each word is capitalized (camel-case); again for searching. * This is the beginning of the separation between the "wxLuaReferences" being used for both the "tags" for identifying classes and for just having references to objects so Lua won't GC them. Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** changelog.txt 10 Aug 2007 21:23:38 -0000 1.45 --- changelog.txt 17 Nov 2007 00:14:55 -0000 1.46 *************** *** 2,5 **** --- 2,17 ---- =============== + version 2.8.6.0 + -------------------------------------------------------------------- + + - Streamlined wxLuaBinding::RegisterBinding(...) and remove the bool + "registerClasses" since it didn't do anything useful anyway. + If there needs to be a way to reregister the wxLua functions it should + to be implemented from the ground up. + - Renamed the functions wxlua_txxx to wxluaT_xxx to make it easier to + search for their usage. The functions in the wxLuaState used to be + called just "txxx" and are now called wxluaT_Xxx where the first + letter or each word is capitalized (camel-case); again for searching. + version 2.8.4.2 -------------------------------------------------------------------- *************** *** 9,22 **** - Allow bool = 1/0 and 1/0 = bool in wxlua_getboolean/integer/number. ! - Fix bug in prematurely garbage collecting userdata. ! The userdata was previously keyed on the pointer to the data instead of a pointer to the Lua userdata that wraps the data. - Moved wxLUA_VERSION... bindings into the 'wxlua' table. ! - Applied patch to lparser.c "Too many variables in an assignment may cause a C stack overflow" - Streamline creation of a wxLuaState and finding the wxLuaState from an existing lua_State, ! See wxlstate.h for changes to the enum WXLUASTATE_ATTACH/SETSTATE ! to be more complete. version 2.8.4.1 --- 21,34 ---- - Allow bool = 1/0 and 1/0 = bool in wxlua_getboolean/integer/number. ! - Fix bug in prematurely garbage collecting userdata. ! The userdata was previously keyed on the pointer to the data instead of a pointer to the Lua userdata that wraps the data. - Moved wxLUA_VERSION... bindings into the 'wxlua' table. ! - Applied patch to lparser.c "Too many variables in an assignment may cause a C stack overflow" - Streamline creation of a wxLuaState and finding the wxLuaState from an existing lua_State, ! See wxlstate.h for changes to the enum WXLUASTATE_ATTACH/SETSTATE ! to be more complete. version 2.8.4.1 |