From: John L. <jr...@us...> - 2007-06-13 00:09:31
|
Update of /cvsroot/wxlua/wxLua/apps/wxluafreeze/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10172/wxLua/apps/wxluafreeze/src Modified Files: readme.txt Log Message: Add new flag for wxLuaBindMethod WXLUAMETHOD_DELETE to know if this is our special delete function. Do not treat the delete function as if it was overloaded from base class Fix MSVC warnings about comparing ints and enums in wxlbind.cpp Add "class" to get class from wxLuaBinding_XXX in lua, also check for null for class_name Add bitlib from Reuben Thomas to wxlstate.cpp, maybe not the best place, but it's small Add code for bindings.wx.lua to check base classes and also functions overloading base class functions Add more unittest.wx.lua code to verify bindings Index: readme.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluafreeze/src/readme.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** readme.txt 13 Apr 2006 04:18:49 -0000 1.2 --- readme.txt 13 Jun 2007 00:08:57 -0000 1.3 *************** *** 14,20 **** For example in MSW in the wxLua\bin dir: ! wxlua-lua.exe ..\apps\wxluafreeze\apps\wxluafreeze.lua wxluafreeze.exe myprogram.wx.lua myprogram.exe ! 3) Optionally use the program "upx" to compress it down. Using the MSVC6 ! compiler in release mode generates a 4.5 Mb wxluaedit.exe file, after ! compression using the upx defaults it's size is 1.5 Mbytes, about 1/3 the size! --- 14,20 ---- For example in MSW in the wxLua\bin dir: ! lua.exe ..\apps\wxluafreeze\apps\wxluafreeze.lua wxluafreeze.exe myprogram.wx.lua myprogram.exe ! 3) Optionally use the program "upx" to compress the executable. The wxLuaFreeze ! program is ~4.5 Mb in release mode using the MSVC6, but after compression ! it's size is ~1.5 Mbytes, about 1/3 the size! |