From: <mk...@us...> - 2003-10-25 07:43:39
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv3641 Modified Files: CHANGES.current configure.win.py Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** CHANGES.current 21 Oct 2003 22:45:34 -0000 1.76 --- CHANGES.current 24 Oct 2003 15:40:13 -0000 1.77 *************** *** 1,4 **** --- 1,14 ---- Version 0.4.0 (in progress) =========================== + 2003-10-24: onsight + * Added some SimData header includes that were included + implicitly before via SimData/TypeAdapter.h. + + 2003-10-23: onsight + * Changed XML path to come under CachePath in CSPSim.py + (submitted by VI). + + * Fixed errant data path in CSPSim.ini. + 2003-10-21: onsight * Cleaned up the code that initializes the test sound. The Index: configure.win.py =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/configure.win.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** configure.win.py 22 Mar 2003 08:39:55 -0000 1.1 --- configure.win.py 24 Oct 2003 15:40:13 -0000 1.2 *************** *** 13,17 **** min_python_version = "2.2.0" ! min_simdata_version = "0.3.1" if len(sys.argv) == 2: --- 13,17 ---- min_python_version = "2.2.0" ! min_simdata_version = "0.4.0" if len(sys.argv) == 2: *************** *** 28,32 **** try: import SimData ! if SimData.getVersion() < "0.3.1": print print "SimData version %s or greater is required, but version %s is installed." % (min_simdata_version, SimData.getVersion()) --- 28,32 ---- try: import SimData ! if SimData.getVersion() < min_simdata_version: print print "SimData version %s or greater is required, but version %s is installed." % (min_simdata_version, SimData.getVersion()) |