From: John L. <jr...@us...> - 2011-06-16 02:01:13
|
Update of /cvsroot/wxlua/wxLua/apps/wxluafreeze/src In directory vz-cvs-4.sog:/tmp/cvs-serv1907/apps/wxluafreeze/src Modified Files: readme.txt wxluafreeze.cpp Log Message: nothing important Index: readme.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluafreeze/src/readme.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** readme.txt 13 Jun 2007 00:08:57 -0000 1.3 --- readme.txt 16 Jun 2011 02:01:11 -0000 1.4 *************** *** 18,20 **** 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! --- 18,20 ---- 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. Index: wxluafreeze.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluafreeze/src/wxluafreeze.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** wxluafreeze.cpp 24 Nov 2010 07:18:37 -0000 1.20 --- wxluafreeze.cpp 16 Jun 2011 02:01:11 -0000 1.21 *************** *** 123,127 **** // When this function returns wxApp:MainLoop() will be called by wxWidgets ! // and so we want the Lua code wx.wxGetApp:MailLoop() to not // prematurely start it. wxLuaState::sm_wxAppMainLoop_will_run = true; --- 123,127 ---- // When this function returns wxApp:MainLoop() will be called by wxWidgets ! // and so we want the Lua code wx.wxGetApp:MainLoop() to not // prematurely start it. wxLuaState::sm_wxAppMainLoop_will_run = true; *************** *** 144,148 **** OutputPrint(wxString::Format(wxT("Expecting '<wxLuaFreeze:[script length]>' at end of '%s'.\n") wxT("Did you forget to run wxluafreeze.lua to attach your script?\n") ! wxT("You may run wxLua programs by specifying them on the command line."), m_fileName.c_str())); } --- 144,148 ---- OutputPrint(wxString::Format(wxT("Expecting '<wxLuaFreeze:[script length]>' at end of '%s'.\n") wxT("Did you forget to run wxluafreeze.lua to attach your script?\n") ! wxT("You may also run wxLua programs by specifying them on the command line."), m_fileName.c_str())); } |