diff --git a/Makefile b/Makefile index f6140f08d0133d102044bcceac48fb1faac92a2b..a175e48cb21b9df3941cfccbee93f81c2e0dc79f 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,14 @@ -RELEASE = 1.2.1 +RELEASE = 1.2.2 UNAME = `uname -s` default: - rm -rf gl2ps-${RELEASE}/ gl2ps-${RELEASE}.tar* gl2ps-${RELEASE}.zip* + rm -rf gl2ps-${RELEASE}/ gl2ps-${RELEASE}.t* mkdir gl2ps-${RELEASE} cd doc && ${MAKE} cp TODO COPYING.GL2PS COPYING.LGPL gl2ps.c gl2ps.h gl2psTest.c\ - doc/gl2ps.ps doc/gl2ps.pdf gl2ps-${RELEASE} + doc/gl2ps.pdf gl2ps-${RELEASE} chmod 644 gl2ps-${RELEASE}/* - tar cvf gl2ps-${RELEASE}.tar gl2ps-${RELEASE} - gzip gl2ps-${RELEASE}.tar - cd gl2ps-${RELEASE} && zip -r gl2ps-${RELEASE}.zip * - mv gl2ps-${RELEASE}/gl2ps-${RELEASE}.zip . + tar zcvf gl2ps-${RELEASE}.tgz gl2ps-${RELEASE} @echo "********************************************************************" @echo "Did you remember to untabify both gl2ps.c and gl2ps.h?" @echo "********************************************************************" diff --git a/doc/Makefile b/doc/Makefile index 951363b73c84e0d38a69820d32631be1caa97719..d904a770f9da8a1919ed446f0a3e285543e697c8 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,5 +1,5 @@ -default: gl2ps.ps gl2ps.html gl2ps.pdf +default: gl2ps.pdf gl2ps.html gl2ps.ps: gl2ps.tex rm -f gl2ps.toc gl2ps.out gl2ps.aux @@ -14,7 +14,7 @@ gl2ps.pdf: gl2ps.tex pdflatex gl2ps pdflatex gl2ps -gl2ps.html: gl2ps.tex gl2ps.ps +gl2ps.html: gl2ps.tex gl2ps.pdf rm -f gl2ps.html echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">" >> gl2ps.html echo "<html>" >> gl2ps.html diff --git a/doc/gl2ps.tex b/doc/gl2ps.tex index 2baf462a52f43f76018de3e1361fd5a21eca662a..2a5407cd5f7290d626bf9640143149384bcc5783 100644 --- a/doc/gl2ps.tex +++ b/doc/gl2ps.tex @@ -1,4 +1,4 @@ -% $Id: gl2ps.tex,v 1.177 2004-08-31 21:17:15 geuzaine Exp $ +% $Id: gl2ps.tex,v 1.178 2004-09-21 21:48:31 geuzaine Exp $ % % GL2PS, an OpenGL to PostScript Printing Library % Copyright (C) 1999-2004 Christophe Geuzaine <geuz@geuz.org> @@ -58,20 +58,16 @@ \title{GL2PS: an OpenGL to PostScript printing library} \author{Christophe Geuzaine} -\date{Version 1.2.1, 13 July 2004} +\date{Version 1.2.2, 21 September 2004} \maketitle %%tth: \section*{Download} -%%tth: The current distribution of GL2PS is available either as a -%%tth: \href{http://www.geuz.org/gl2ps/src/gl2ps-1.2.1.tar.gz}{tar.gz} -%%tth: or as a -%%tth: \href{http://www.geuz.org/gl2ps/src/gl2ps-1.2.1.zip}{zip} -%%tth: archive. These archives contain both a -%%tth: \href{http://www.geuz.org/gl2ps/gl2ps.ps}{PostScript} -%%tth: and a -%%tth: \href{http://www.geuz.org/gl2ps/gl2ps.pdf}{PDF} -%%tth: version of the documentation. Older versions are still +%%tth: The current distribution of GL2PS is +%%tth: \href{http://www.geuz.org/gl2ps/src/gl2ps-1.2.2.tgz}{gl2ps-1.2.2.tgz}. +%%tth: This distribution contains a complete +%%tth: \href{http://www.geuz.org/gl2ps/gl2ps.pdf} +%%tth: {documentation in PDF format}. Older versions are still %%tth: available \href{http://www.geuz.org/gl2ps/src/}{here}. %%tth: \par %%tth: For questions and discussions about GL2PS features, @@ -802,7 +798,8 @@ does not seem to be available anymore). text alignment support for PostScript and LaTeX output; new support for rotated text for LaTeX output; fixed NULL check on input strings in \dd{gl2psBeginPage}. -\item[1.2.2] (???) Fixed a couple of small bugs in the example code. +\item[1.2.2] (Sep 21, 2004) Fixed a couple of small bugs in the example + code. \end{description} \end{document} diff --git a/gl2ps.h b/gl2ps.h index 23b8845e8c9af95e55b6368da7bc052c518794be..11a895bbfe1f1dd0575bb1c89e06f9f9912ebb3e 100644 --- a/gl2ps.h +++ b/gl2ps.h @@ -1,4 +1,4 @@ -/* $Id: gl2ps.h,v 1.88 2004-07-11 22:30:25 geuzaine Exp $ */ +/* $Id: gl2ps.h,v 1.89 2004-09-21 21:48:31 geuzaine Exp $ */ /* * GL2PS, an OpenGL to PostScript Printing Library * Copyright (C) 1999-2004 Christophe Geuzaine <geuz@geuz.org> @@ -80,7 +80,7 @@ #define GL2PS_MAJOR_VERSION 1 #define GL2PS_MINOR_VERSION 2 -#define GL2PS_PATCH_VERSION 1 +#define GL2PS_PATCH_VERSION 2 #define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \ 0.01 * GL2PS_MINOR_VERSION + \