From: <de...@us...> - 2004-01-01 16:17:36
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv23801 Modified Files: CHANGES.current Log Message: see CHANGES.current Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** CHANGES.current 2 Nov 2003 21:11:19 -0000 1.93 --- CHANGES.current 1 Jan 2004 16:17:32 -0000 1.94 *************** *** 1,4 **** --- 1,22 ---- Version 0.4.0 (in progress) =========================== + 2003-12-30: delta + * Added an environment variable to the project in lieu of + hardcoded Python path; windows users must have defined + PYTHONPATH variable pointing to the current Python install + dir root. + + * Removed link onto useless specific windows libs. Tweaked + the project file (release build) toward speed optimizations + (note: enabling sse2 optimizations leads to a dll loading + failed on an athlon XP2k+). + + 2003-12-25: delta + * Updated msvc 7.1 project file with a post built step + (PostBuild.bat) to install SimData and run tests. + + * Added const& qualifiers in hash string functor parameters + (inherited from stdext::hash_compare) for vs.net. + 2003-11-02: onsight * Added #include <algorithm> in InterfaceRegistry.cpp (as *************** *** 193,199 **** void MyClass::serialize(Archive& archive) { MyBaseClass::serialize(archive); ! archive(member_var1); ! archive(member_var2); ! ... } --- 211,217 ---- void MyClass::serialize(Archive& archive) { MyBaseClass::serialize(archive); ! archive(member_var1); ! archive(member_var2); ! ... } *************** *** 219,221 **** * Tagged r0_3_4, version 0_3_5 started. * Version 0.4.0 branch started. - --- 237,238 ---- |