diff --git a/doc/gmsh.html b/doc/gmsh.html index 237396cd92bb052bab3104f54ae268115790cc33..4a20454de8c0e9f49d697dc1258e0d6fb1e729cb 100644 --- a/doc/gmsh.html +++ b/doc/gmsh.html @@ -100,11 +100,12 @@ Public License (GPL)</a>: <li> <p class="highlight"> Current stable release (version 3.0.1, April 14 2017): - <a href="bin/Windows/gmsh-3.0.1-Windows64.zip">Windows</a>, - <a href="bin/Linux/gmsh-3.0.1-Linux64.tgz">Linux</a>, - <a href="bin/MacOSX/gmsh-3.0.1-MacOSX.dmg">MacOS</a> + <a href="bin/Windows/gmsh-3.0.2-Windows64.zip">Windows</a> + (<a href="bin/Windows/gmsh-3.0.2-Windows32.zip">32 bit</a>), + <a href="bin/Linux/gmsh-3.0.2-Linux64.tgz">Linux</a>, + <a href="bin/MacOSX/gmsh-3.0.2-MacOSX.dmg">MacOS</a> and - <a href="src/gmsh-3.0.1-source.tgz">source code</a> + <a href="src/gmsh-3.0.2-source.tgz">source code</a> </p> <p> <em>A <a href="doc/texinfo/gmsh.html#Tutorial"><strong>tutorial</strong></a> @@ -114,7 +115,8 @@ Public License (GPL)</a>: <li>Development version: <ul><li>Automated nightly snapshots (<a href="http://onelab.info/CDash/index.php?project=Gmsh">dashboard</a>): - <a href="bin/Windows/gmsh-git-Windows64.zip">Windows</a>, + <a href="bin/Windows/gmsh-git-Windows64.zip">Windows</a> + (<a href="bin/Windows/gmsh-git-Windows32.zip">32 bit</a>), <a href="bin/Linux/gmsh-git-Linux64.tgz">Linux</a>, <a href="bin/MacOSX/gmsh-git-MacOSX.dmg">MacOS</a> and <a href="src/gmsh-git-source.tgz">source code</a> diff --git a/utils/misc/package_onelab.sh b/utils/misc/package_onelab.sh index 0e9d6dae0acd53f2921c6aaccacbb3a5765bc308..40227e85c5660d2908681f70215bf3b895c6b30b 100755 --- a/utils/misc/package_onelab.sh +++ b/utils/misc/package_onelab.sh @@ -88,6 +88,35 @@ if [ $# -lt 1 ] || [ $1 == "win64" ]; then rm -rf onelab-Windows64 fi +if [ $# -lt 1 ] || [ $1 == "win32" ]; then + rm -rf onelab-Windows32* + mkdir onelab-Windows32 + curl -O http://gmsh.info/bin/Windows/gmsh-${GMSH}-Windows32.zip + curl -O http://getdp.info/bin/Windows/getdp-${GETDP}-Windows32c.zip + mv gmsh-${GMSH}-Windows32.zip /tmp + mv getdp-${GETDP}-Windows32c.zip /tmp + unzip -q -o /tmp/gmsh-${GMSH}-Windows32.zip -d /tmp + unzip -q -o /tmp/getdp-${GETDP}-Windows32c.zip -d /tmp + cp /tmp/README.txt onelab-Windows32 + perl -pi -e 's/\n/\r\n/' onelab-Windows32/README.txt + mv /tmp/gmsh-*${GMSH}-Windows/gmsh.exe onelab-Windows32 + mv /tmp/gmsh-*${GMSH}-Windows/onelab.py onelab-Windows32 + mv /tmp/getdp-*${GETDP}-Windows/getdp.exe onelab-Windows32 + mv /tmp/gmsh-*${GMSH}-Windows/LICENSE.txt onelab-Windows32/LICENSE.txt + echo "\n\n" >> onelab-Windows32/LICENSE.txt + cat /tmp/getdp-*${GETDP}-Windows/LICENSE.txt >> onelab-Windows32/LICENSE.txt + mv /tmp/gmsh-*${GMSH}-Windows/CREDITS.txt onelab-Windows32/CREDITS.txt + echo "\n\n" >> onelab-Windows32/CREDITS.txt + cat /tmp/getdp-*${GETDP}-Windows/CREDITS.txt >> onelab-Windows32/CREDITS.txt + mv /tmp/getdp-*${GETDP}-Windows/templates onelab-Windows32 + mv /tmp/gmsh-*${GMSH}-Windows/tutorial onelab-Windows32 + cp -R /tmp/models onelab-Windows32 + rm -rf /tmp/gmsh-* + rm -rf /tmp/getdp-* + zip -r onelab-Windows32.zip onelab-Windows32 + rm -rf onelab-Windows32 +fi + if [ $# -lt 1 ] || [ $1 == "linux64" ]; then rm -rf onelab-Linux64* mkdir onelab-Linux64