From: John L. <jr...@us...> - 2008-01-15 01:04:08
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv3556/wxLua/docs Modified Files: changelog.txt Log Message: * Changed wxLuaState_Type enum for wxLuaState(lua_State*, wxLuaState_Type) Removed wxLUASTATE_USESTATE and you now | together wxLUASTATE_SETSTATE with wxLUASTATE_OPENBINDINGS if you want the bindings opened. Cleans up the creation of the wxLuaState so a precreated lua_State should be able to be used easier. - Remove poorly named wxLuaState::LuaError() and CheckRunError() and replaced them with the C functions wxlua_errorinfo() and wxlua_LUA_ERR_msg() respectively. - Added wxlua_pushargs(wxChar**, int) for a standard way to push args into Lua. - Copy Lua's print() function to print_lua() instead of simply overwriting it in case someone really wants to use it. Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** changelog.txt 22 Dec 2007 06:07:08 -0000 1.55 --- changelog.txt 15 Jan 2008 01:04:04 -0000 1.56 *************** *** 103,106 **** --- 103,121 ---- - Fix crash in wxListCtrl and wxTreeCtrl::AssignImageList() to use the %ungc tag to release wxLua from deleting the input wxImageList. + - Added image sample translated from C++ by Hakki Dogusan. + + * Changed wxLuaState_Type enum for wxLuaState(lua_State*, wxLuaState_Type) + Removed wxLUASTATE_USESTATE and you now | together wxLUASTATE_SETSTATE with + wxLUASTATE_OPENBINDINGS if you want the bindings opened. + Cleans up the creation of the wxLuaState so a precreated lua_State + should be able to be used easier. + - Remove poorly named wxLuaState::LuaError() and CheckRunError() and + replaced them with the C functions wxlua_errorinfo() and wxlua_LUA_ERR_msg() + respectively. + - Added wxlua_pushargs(wxChar**, int) for a standard way to push args + into Lua. + - Copy Lua's print() function to print_lua() instead of simply + overwriting it in case someone really wants to use it. + version 2.8.4.2 |