From: John L. <jr...@us...> - 2007-11-30 23:00:41
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22316/wxLua/docs Modified Files: changelog.txt Log Message: - wxLuaStackDialog has better search for all columns, collapse and expand tables, and show metatables. It also now uses a virtual wxListCtrl so it's much faster. - Separated the "tags" for C++ classes from "refs" for objects we want a handle on in the Lua registry by putting them in separate tables. - Removed wxlua_pushkey_XXX #defines since we now have a few tables in the registry that we use and those methods were not useful anymore. The lightuserdata keys are now const char* strings with a descriptive name, however only the mem address is used as the table key. - wxluaT_newtag() now leaves the created table on the stack. - Removed wxluaT_newweaktag() and wxluaT_settagmethod() since they were not needed anymore. Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** changelog.txt 29 Nov 2007 23:35:53 -0000 1.48 --- changelog.txt 30 Nov 2007 23:00:00 -0000 1.49 *************** *** 18,22 **** - Use wxSIGKILL to kill debuggee process since wxSIGTERM doesn't work in MSW. - wxLuaStackDialog has better search for all columns, collapse and expand ! tables, and show metatables. version 2.8.4.2 --- 18,32 ---- - Use wxSIGKILL to kill debuggee process since wxSIGTERM doesn't work in MSW. - wxLuaStackDialog has better search for all columns, collapse and expand ! tables, and show metatables. It also now uses a virtual wxListCtrl so ! it's much faster. ! - Separated the "tags" for C++ classes from "refs" for objects we want a ! handle on in the Lua registry by putting them in separate tables. ! - Removed wxlua_pushkey_XXX #defines since we now have a few tables in the ! registry that we use and those methods were not useful anymore. ! The lightuserdata keys are now const char* strings with a descriptive name, ! however only the mem address is used as the table key. ! - wxluaT_newtag() now leaves the created table on the stack. ! - Removed wxluaT_newweaktag() and wxluaT_settagmethod() since they were ! not needed anymore. version 2.8.4.2 |