Skip to content
Snippets Groups Projects
Commit a52d3434 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 535fd07a
No related branches found
No related tags found
No related merge requests found
RELEASE = 1.3.0 RELEASE = 1.3.1
DATE = `date "+%Y%m%d"` DATE = `date "+%Y%m%d"`
clean: clean:
......
% $Id: gl2ps.tex,v 1.215 2006-08-09 18:17:08 geuzaine Exp $ % $Id: gl2ps.tex,v 1.216 2006-08-11 13:28:28 geuzaine Exp $
% %
% GL2PS, an OpenGL to PostScript Printing Library % GL2PS, an OpenGL to PostScript Printing Library
% Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org> % Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org>
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
\title{GL2PS: an OpenGL to PostScript printing library} \title{GL2PS: an OpenGL to PostScript printing library}
\author{Christophe Geuzaine} \author{Christophe Geuzaine}
\date{Version 1.3.0, August 8 2006} \date{Version 1.3.1, August ? 2006}
\maketitle \maketitle
...@@ -92,7 +92,7 @@ the OpenGL window.</em></small></td> ...@@ -92,7 +92,7 @@ the OpenGL window.</em></small></td>
</center> </center>
<h2>Download</h2> <h2>Download</h2>
The latest stable version of GL2PS is The latest stable version of GL2PS is
<a href="http://geuz.org/gl2ps/src/gl2ps-1.3.0.tgz">gl2ps-1.3.0.tgz</a>. <a href="http://geuz.org/gl2ps/src/gl2ps-1.3.1.tgz">gl2ps-1.3.1.tgz</a>.
Older versions and nightly CVS snapshots are available Older versions and nightly CVS snapshots are available
<a href="http://geuz.org/gl2ps/src/">here</a>. <a href="http://geuz.org/gl2ps/src/">here</a>.
<p> <p>
...@@ -981,6 +981,9 @@ seem to be available anymore). ...@@ -981,6 +981,9 @@ seem to be available anymore).
(whenever possible lines are now rendered in a single path); better (whenever possible lines are now rendered in a single path); better
sorting of text and bitmap elements; new function \dd{gl2psSpecial} sorting of text and bitmap elements; new function \dd{gl2psSpecial}
to print device-specific strings in the output stream. to print device-specific strings in the output stream.
\item[1.3.1] (Aug ?, 2006) Fixed a small bug for PostScript output
with multiple viewports, where the viewport could be drawn with an
unwanted colored outline.
\end{description} \end{description}
\end{document} \end{document}
/* $Id: gl2ps.h,v 1.111 2006-07-26 12:28:39 geuzaine Exp $ */ /* $Id: gl2ps.h,v 1.112 2006-08-11 13:29:45 geuzaine Exp $ */
/* /*
* GL2PS, an OpenGL to PostScript Printing Library * GL2PS, an OpenGL to PostScript Printing Library
* Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org> * Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org>
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
#define GL2PS_MAJOR_VERSION 1 #define GL2PS_MAJOR_VERSION 1
#define GL2PS_MINOR_VERSION 3 #define GL2PS_MINOR_VERSION 3
#define GL2PS_PATCH_VERSION 0 #define GL2PS_PATCH_VERSION 1
#define GL2PS_EXTRA_VERSION "-cvs" #define GL2PS_EXTRA_VERSION "-cvs"
#define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \ #define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \
......
/* $Id: gl2psTest.c,v 1.80 2006-08-09 01:12:07 geuzaine Exp $ */ /* $Id: gl2psTest.c,v 1.81 2006-08-11 13:33:27 geuzaine Exp $ */
/* /*
* GL2PS, an OpenGL to PostScript Printing Library * GL2PS, an OpenGL to PostScript Printing Library
* Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org> * Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
/* /*
To compile on Linux: To compile on Linux:
gcc gl2psTest.c gl2ps.c -lglut -lGL -lGLU -L/usr/X11R6/lib -lX11 -lXi -lXmu -lm gcc gl2psTest.c gl2ps.c -lglut -lGL -lGLU -lX11 -lm
To compile on MacOSX: To compile on MacOSX:
gcc gl2psTest.c gl2ps.c -framework OpenGL -framework GLUT -framework Cocoa gcc gl2psTest.c gl2ps.c -framework OpenGL -framework GLUT -framework Cocoa
......
/* $Id: gl2psTestSimple.c,v 1.14 2006-07-24 14:01:20 geuzaine Exp $ */ /* $Id: gl2psTestSimple.c,v 1.15 2006-08-11 13:33:27 geuzaine Exp $ */
/* /*
* GL2PS, an OpenGL to PostScript Printing Library * GL2PS, an OpenGL to PostScript Printing Library
* Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org> * Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org>
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
/* /*
To compile on Linux: To compile on Linux:
gcc gl2psTestSimple.c gl2ps.c -lglut -lGL -lGLU -L/usr/X11R6/lib -lX11 -lXi -lXmu -lm gcc gl2psTestSimple.c gl2ps.c -lglut -lGL -lGLU -lX11 -lm
To compile on MacOSX: To compile on MacOSX:
gcc gl2psTestSimple.c gl2ps.c -framework OpenGL -framework GLUT -framework Cocoa gcc gl2psTestSimple.c gl2ps.c -framework OpenGL -framework GLUT -framework Cocoa
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment