[Opal-commits] opal gatherLinuxBinaryRelease.bat,NONE,1.1 linuxBinaryReadme.txt,NONE,1.1 changelog.t
Status: Inactive
Brought to you by:
tylerstreeter
|
From: tylerstreeter <tyl...@us...> - 2005-10-19 22:17:07
|
Update of /cvsroot/opal/opal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9824 Modified Files: changelog.txt gatherSrcRelease.bat gatherWin32BinaryRelease.bat todo.txt win32BinaryReadme.txt Added Files: gatherLinuxBinaryRelease.bat linuxBinaryReadme.txt Log Message: Updated gather scripts and changelog to prepare for 0.3.1 release. Index: todo.txt =================================================================== RCS file: /cvsroot/opal/opal/todo.txt,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -d -r1.87 -r1.88 *** todo.txt 21 Jul 2005 15:59:00 -0000 1.87 --- todo.txt 19 Oct 2005 22:16:58 -0000 1.88 *************** *** 1,3 **** ! For Version 0.3.1 ================= --- 1,3 ---- ! For Version 0.3.2 ================= *************** *** 12,16 **** * add option for SpringMotor to depend on mass/inertia or not ! * and more support for spaces; support more spaces; support more options for spaces * make defaults not const? --- 12,16 ---- * add option for SpringMotor to depend on mass/inertia or not ! * maybe add more support for spaces? (support more spaces; support more options for spaces) * make defaults not const? Index: gatherSrcRelease.bat =================================================================== RCS file: /cvsroot/opal/opal/gatherSrcRelease.bat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** gatherSrcRelease.bat 25 Jun 2005 06:45:40 -0000 1.3 --- gatherSrcRelease.bat 19 Oct 2005 22:16:58 -0000 1.4 *************** *** 25,28 **** --- 25,32 ---- copy ..\vc71\opal-ode.vcproj vc71 + mkdir vc8 + copy ..\vc8\opal.sln vc8 + copy ..\vc8\opal-ode.vcproj vc8 + mkdir tools mkdir tools\3dsmax *************** *** 56,67 **** mkdir samples\playpen copy ..\samples\playpen\SConstruct samples\playpen - copy ..\samples\playpen\playpen.sln samples\playpen - copy ..\samples\playpen\playpen.vcproj samples\playpen copy ..\samples\playpen\main.cpp samples\playpen mkdir samples\simple copy ..\samples\simple\SConstruct samples\simple - copy ..\samples\simple\simple.sln samples\simple - copy ..\samples\simple\simple.vcproj samples\simple copy ..\samples\simple\*.h samples\simple copy ..\samples\simple\*.cpp samples\simple cd .. --- 60,79 ---- mkdir samples\playpen copy ..\samples\playpen\SConstruct samples\playpen copy ..\samples\playpen\main.cpp samples\playpen + mkdir samples\playpen\vc71 + copy ..\samples\playpen\vc71\playpen.sln samples\playpen\vc71 + copy ..\samples\playpen\vc71\playpen.vcproj samples\playpen\vc71 + mkdir samples\playpen\vc8 + copy ..\samples\playpen\vc8\playpen.sln samples\playpen\vc8 + copy ..\samples\playpen\vc8\playpen.vcproj samples\playpen\vc8 mkdir samples\simple copy ..\samples\simple\SConstruct samples\simple copy ..\samples\simple\*.h samples\simple copy ..\samples\simple\*.cpp samples\simple + mkdir samples\simple\vc71 + copy ..\samples\simple\vc71\simple.sln samples\simple\vc71 + copy ..\samples\simple\vc71\simple.vcproj samples\simple\vc71 + mkdir samples\simple\vc8 + copy ..\samples\simple\vc8\simple.sln samples\simple\vc8 + copy ..\samples\simple\vc8\simple.vcproj samples\simple\vc8 cd .. Index: win32BinaryReadme.txt =================================================================== RCS file: /cvsroot/opal/opal/win32BinaryReadme.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** win32BinaryReadme.txt 24 Jun 2005 19:04:20 -0000 1.4 --- win32BinaryReadme.txt 19 Oct 2005 22:16:58 -0000 1.5 *************** *** 8,12 **** ------------------------------------ include - OPAL headers ! lib - OPAL libraries* (debug and release versions of the OPAL dll and import library) samples - executable versions of sample applications and required dlls changelog.txt - a list of changes for each released version --- 8,12 ---- ------------------------------------ include - OPAL headers ! lib - OPAL libraries (debug and release versions of the OPAL dll and import libraries built with single and double floating point precision) samples - executable versions of sample applications and required dlls changelog.txt - a list of changes for each released version *************** *** 15,21 **** win32BinaryReadme.txt - you're reading it - * The OPAL debug and release libraries have been built with the following options: - double=false - ------------------------------------ --- 15,18 ---- Index: changelog.txt =================================================================== RCS file: /cvsroot/opal/opal/changelog.txt,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** changelog.txt 27 Aug 2005 18:09:18 -0000 1.41 --- changelog.txt 19 Oct 2005 22:16:58 -0000 1.42 *************** *** 11,18 **** ! Version 0.3.1 (not yet released) ------------------------------------------ * 8-27-05: Corrected calculation of stress on joints. (Oleksandr Lozitskiy) --- 11,23 ---- ! Version 0.3.2 (not yet released) ------------------------------------------ + + Version 0.3.1 + October 19, 2005 + ------------------------------------------ + * 8-27-05: Corrected calculation of stress on joints. (Oleksandr Lozitskiy) Index: gatherWin32BinaryRelease.bat =================================================================== RCS file: /cvsroot/opal/opal/gatherWin32BinaryRelease.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gatherWin32BinaryRelease.bat 25 Jun 2005 06:45:40 -0000 1.2 --- gatherWin32BinaryRelease.bat 19 Oct 2005 22:16:58 -0000 1.3 *************** *** 10,17 **** mkdir lib ! copy ..\build\win32\Debug\*.lib lib ! copy ..\build\win32\Debug\*.dll lib ! copy ..\build\win32\Release\*.lib lib ! copy ..\build\win32\Release\*.dll lib mkdir samples --- 10,15 ---- mkdir lib ! mkdir lib\single ! mkdir lib\double mkdir samples --- NEW FILE: gatherLinuxBinaryRelease.bat --- mkdir opal-0.3.1-linux cd opal-0.3.1-linux copy ..\linuxBinaryReadme.txt . copy ..\changelog.txt . copy ..\license-LGPL.txt . copy ..\license-BSD.txt . mkdir include copy ..\src\*.h include mkdir lib mkdir lib\single mkdir lib\double cd .. --- NEW FILE: linuxBinaryReadme.txt --- OPAL - Open Physics Absraction Layer opal.sourceforge.net This file contains basic installation info. For more documentation, visit the OPAL website. ------------------------------------ Package contents: ------------------------------------ include - OPAL headers lib - OPAL libraries (debug and release versions of the OPAL shared libraries built with single and double floating point precision) changelog.txt - a list of changes for each released version license-BSD.txt - BSD Open Source license license-LGPL.txt - LGPL Open Source license linuxBinaryReadme.txt - you're reading it ------------------------------------ Dependencies: ------------------------------------ None. ------------------------------------ Installation: ------------------------------------ Copy the OPAL headers and libraries into your include and library path, respectively. ------------------------------------ Using OPAL in your application: ------------------------------------ Add #include <opal/opal.h> in your application and link against the OPAL library. |