diff options
author | Chris Liddell <chris.liddell@artifex.com> | 2010-09-14 07:38:51 +0000 |
---|---|---|
committer | Chris Liddell <chris.liddell@artifex.com> | 2010-09-14 07:38:51 +0000 |
commit | 9c596b950c8c0a67a12c853e33aff05491ad412d (patch) | |
tree | d992376fd02befb10071c89a967fb896f1a9cf4b | |
parent | 18b1e247eb042009c2b64f31a855fea0e467e10d (diff) |
Update the documentation, release dates and such for a 9.00
release candidate.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@11714 a1074d23-0009-0410-80fe-cf8c14f379e6
61 files changed, 378 insertions, 65 deletions
diff --git a/gs/base/gscdef.c b/gs/base/gscdef.c index 5e16acb0d..3d65c45a0 100644 --- a/gs/base/gscdef.c +++ b/gs/base/gscdef.c @@ -43,7 +43,7 @@ const char *const gs_productfamily = GS_PRODUCTFAMILY; #ifndef GS_PRODUCT # define GS_PRODUCT\ - GS_PRODUCTFAMILY " SVN PRE-RELEASE" + GS_PRODUCTFAMILY " RELEASE CANDIDATE" #endif const char *const gs_product = GS_PRODUCT; diff --git a/gs/base/version.mak b/gs/base/version.mak index d2c29bd99..5d4286e43 100644 --- a/gs/base/version.mak +++ b/gs/base/version.mak @@ -19,7 +19,7 @@ GS_VERSION_MAJOR=9 GS_VERSION_MINOR=00 GS_VERSION_MINOR0=00 # Revision date: year x 10000 + month x 100 + day. -GS_REVISIONDATE=20100909 +GS_REVISIONDATE=20100914 # Derived values GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0) GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR0) diff --git a/gs/doc/API.htm b/gs/doc/API.htm index 36e315efa..678e3720e 100644 --- a/gs/doc/API.htm +++ b/gs/doc/API.htm @@ -760,7 +760,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/C-style.htm b/gs/doc/C-style.htm index a42e33a4b..1e763e71a 100644 --- a/gs/doc/C-style.htm +++ b/gs/doc/C-style.htm @@ -1578,7 +1578,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Changes.htm b/gs/doc/Changes.htm index 82563fd60..aa734c2ed 100644 --- a/gs/doc/Changes.htm +++ b/gs/doc/Changes.htm @@ -8,6 +8,84 @@ </head> <body> +<p><strong><a name="2010-09-13T150940.310889Z"></a> +2010-09-13T15:09:40.310889Z Chris Liddell</strong></p> +<blockquote> +<pre> +Commit the missing header changes from the previous checkin. +</pre> +<p>[psi/ifapi.h]</p> +</blockquote> + +<p><strong><a name="2010-09-13T145346.788657Z"></a> +2010-09-13T14:53:46.788657Z Chris Liddell</strong></p> +<blockquote> +<pre> +Another revision of the FAPI code. Due to a problem in Freetype which needs +further investigation, we cannot produce an outline, then decide to produce +a bitmap if it is small enough. We work around this by producing a bitmap, +and if it is too large, dispose of it, and retry with an outline, thus although +we still risk larger than ideal memory use, it is very short lived. A glyph +too large to be cached (for which we will now usually use an outline) does +not suffer from the Freetype issue mentioned above. + +The maximum allowable bit for Freetype to produce is now 1.5 x the maximum +cache bitmap as set in the Postscript state - it is set larger than the +cache bitmap since it is *vital* that if GS expects a bitmap to be cache +we supply a bitmap. Given that the bounding boxes arrived at the GS cache +device and the Freetype rendering code arrived at slightly differently, there +would be the chance of edge cases where FAPI would produce an outline, when +the cache expects a bitmap. Allowing FAPI plenty of leeway avoids that. + +The calculation to convert a quadratic to a cubic spline in the +Freetype interface code was slightly wrong. + +Also, FAPI now sets the fill adjust to 0 for filling outline glyph, instead +of inhereting the value from the originating graphics state, which gives +*much* more consistent output between the bitmap and outline cases, and +addresses the slightly excessive boldness observed for outline glyphs since +the adoption of Freetype/FAPI as the default font scaler/renderer. + +Finally, support for the existing Ghostscrit text anti-aliasing +capability is improved. + +Bug 691604 + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-13T102534.372202Z"></a> +2010-09-13T10:25:34.372202Z Chris Liddell</strong></p> +<blockquote> +<pre> +Revert revisions 11690 and later from the FAPI code (and revert version no. to 9.00) +to get a "good" base version, in preparation for a corrected version of the changes +in 11690 (and subsequent changes in the FAPI code). + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c base/version.mak Resource/Init/gs_init.ps psi/ifapi.h psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-09T135148.502020Z"></a> +2010-09-09T13:51:48.502020Z Alex Cherepanov</strong></p> +<blockquote> +<pre> +Fix a case where /Width attribute was not checked for null. +Bug 691602, customer 700. +</pre> +<p>[Resource/Init/pdf_font.ps]</p> +</blockquote> + +<p><strong><a name="2010-09-09T072652.042155Z"></a> +2010-09-09T07:26:52.042155Z Chris Liddell</strong></p> +<blockquote> +<pre> +Fix broken version number in gs_init.ps in trunk +</pre> +<p>[Resource/Init/gs_init.ps]</p> +</blockquote> + <p><strong><a name="2010-09-09T062654.427296Z"></a> 2010-09-09T06:26:54.427296Z Chris Liddell</strong></p> <blockquote> diff --git a/gs/doc/Commprod.htm b/gs/doc/Commprod.htm index db6244cb3..2d0dd295c 100644 --- a/gs/doc/Commprod.htm +++ b/gs/doc/Commprod.htm @@ -251,7 +251,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/DLL.htm b/gs/doc/DLL.htm index 149832311..48674d86f 100644 --- a/gs/doc/DLL.htm +++ b/gs/doc/DLL.htm @@ -702,7 +702,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Deprecated.htm b/gs/doc/Deprecated.htm index 4502294cd..bd98e9d40 100644 --- a/gs/doc/Deprecated.htm +++ b/gs/doc/Deprecated.htm @@ -5594,7 +5594,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Details.htm b/gs/doc/Details.htm index d5f4ea79e..0241739de 100644 --- a/gs/doc/Details.htm +++ b/gs/doc/Details.htm @@ -8,6 +8,85 @@ </head> <body> +<p><strong><a name="2010-09-13T150940.310889Z"></a> +2010-09-13T15:09:40.310889Z Chris Liddell</strong></p> +<blockquote> +<pre> +Commit the missing header changes from the previous checkin. +</pre> +<p>[psi/ifapi.h]</p> +</blockquote> + +<p><strong><a name="2010-09-13T145346.788657Z"></a> +2010-09-13T14:53:46.788657Z Chris Liddell</strong></p> +<blockquote> +<pre> +Another revision of the FAPI code. Due to a problem in Freetype which needs +further investigation, we cannot produce an outline, then decide to produce +a bitmap if it is small enough. We work around this by producing a bitmap, +and if it is too large, dispose of it, and retry with an outline, thus although +we still risk larger than ideal memory use, it is very short lived. A glyph +too large to be cached (for which we will now usually use an outline) does +not suffer from the Freetype issue mentioned above. + +The maximum allowable bit for Freetype to produce is now 1.5 x the maximum +cache bitmap as set in the Postscript state - it is set larger than the +cache bitmap since it is *vital* that if GS expects a bitmap to be cache +we supply a bitmap. Given that the bounding boxes arrived at the GS cache +device and the Freetype rendering code arrived at slightly differently, there +would be the chance of edge cases where FAPI would produce an outline, when +the cache expects a bitmap. Allowing FAPI plenty of leeway avoids that. + +The calculation to convert a quadratic to a cubic spline in the +Freetype interface code was slightly wrong. + +Also, FAPI now sets the fill adjust to 0 for filling outline glyph, instead +of inhereting the value from the originating graphics state, which gives +*much* more consistent output between the bitmap and outline cases, and +addresses the slightly excessive boldness observed for outline glyphs since +the adoption of Freetype/FAPI as the default font scaler/renderer. + +Finally, support for the existing Ghostscrit text anti-aliasing +capability is improved. + +Bug 691604 + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-13T102534.372202Z"></a> +2010-09-13T10:25:34.372202Z Chris Liddell</strong></p> +<blockquote> +<pre> +Revert revisions 11690 and later from the FAPI code (and revert version no. to 9.00) +to get a "good" base version, in preparation for a corrected version of the changes +in 11690 (and subsequent changes in the FAPI code). + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c base/version.mak Resource/Init/gs_init.ps psi/ifapi.h psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-09T135148.502020Z"></a> +2010-09-09T13:51:48.502020Z Alex Cherepanov</strong></p> +<blockquote> +<pre> +Fix a case where /Width attribute was not checked for null. +Bug 691602, customer 700. +</pre> +<p>[Resource/Init/pdf_font.ps]</p> +</blockquote> + +<p><strong><a name="2010-09-09T072652.042155Z"></a> +2010-09-09T07:26:52.042155Z Chris Liddell</strong></p> +<blockquote> +<pre> +Fix broken version number in gs_init.ps in trunk +</pre> +<p>[Resource/Init/gs_init.ps]</p> +</blockquote> + + <p><strong><a name="2010-09-09T062654.427296Z"></a> 2010-09-09T06:26:54.427296Z Chris Liddell</strong></p> <blockquote> diff --git a/gs/doc/Details8.htm b/gs/doc/Details8.htm index 0eb74e5ee..d9dcad906 100644 --- a/gs/doc/Details8.htm +++ b/gs/doc/Details8.htm @@ -104190,7 +104190,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Details9.htm b/gs/doc/Details9.htm index e3e987e46..1e59aad4d 100644 --- a/gs/doc/Details9.htm +++ b/gs/doc/Details9.htm @@ -29,7 +29,7 @@ <h2>Table of contents</h2> <blockquote><ul> -<li><a href="#Version9.00">Version 9.00 (2010-09-08)</a> +<li><a href="#Version9.00">Version 9.00 (2010-09-14)</a> <ul> <li><a href="#9.00_Incompatible_changes">Incompatible changes</a>, <a href="#9.00-Documentation">Documentation</a>, @@ -73,7 +73,7 @@ overview</a>. <!-- [2.0 begin contents] ================================================== --> -<h2><a name="Version9.00"></a>Version 9.00 (2010-09-08)</h2> +<h2><a name="Version9.00"></a>Version 9.00 (2010-09-14)</h2> <p>This is the first release in the stable 9.x series. @@ -123,6 +123,84 @@ No recorded incompatible changes. <h3><a name="9.00_changelog"></a>Changelog</h3> +<p><strong><a name="2010-09-13T150940.310889Z"></a> +2010-09-13T15:09:40.310889Z Chris Liddell</strong></p> +<blockquote> +<pre> +Commit the missing header changes from the previous checkin. +</pre> +<p>[psi/ifapi.h]</p> +</blockquote> + +<p><strong><a name="2010-09-13T145346.788657Z"></a> +2010-09-13T14:53:46.788657Z Chris Liddell</strong></p> +<blockquote> +<pre> +Another revision of the FAPI code. Due to a problem in Freetype which needs +further investigation, we cannot produce an outline, then decide to produce +a bitmap if it is small enough. We work around this by producing a bitmap, +and if it is too large, dispose of it, and retry with an outline, thus although +we still risk larger than ideal memory use, it is very short lived. A glyph +too large to be cached (for which we will now usually use an outline) does +not suffer from the Freetype issue mentioned above. + +The maximum allowable bit for Freetype to produce is now 1.5 x the maximum +cache bitmap as set in the Postscript state - it is set larger than the +cache bitmap since it is *vital* that if GS expects a bitmap to be cache +we supply a bitmap. Given that the bounding boxes arrived at the GS cache +device and the Freetype rendering code arrived at slightly differently, there +would be the chance of edge cases where FAPI would produce an outline, when +the cache expects a bitmap. Allowing FAPI plenty of leeway avoids that. + +The calculation to convert a quadratic to a cubic spline in the +Freetype interface code was slightly wrong. + +Also, FAPI now sets the fill adjust to 0 for filling outline glyph, instead +of inhereting the value from the originating graphics state, which gives +*much* more consistent output between the bitmap and outline cases, and +addresses the slightly excessive boldness observed for outline glyphs since +the adoption of Freetype/FAPI as the default font scaler/renderer. + +Finally, support for the existing Ghostscrit text anti-aliasing +capability is improved. + +Bug 691604 + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-13T102534.372202Z"></a> +2010-09-13T10:25:34.372202Z Chris Liddell</strong></p> +<blockquote> +<pre> +Revert revisions 11690 and later from the FAPI code (and revert version no. to 9.00) +to get a "good" base version, in preparation for a corrected version of the changes +in 11690 (and subsequent changes in the FAPI code). + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c base/version.mak Resource/Init/gs_init.ps psi/ifapi.h psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-09T135148.502020Z"></a> +2010-09-09T13:51:48.502020Z Alex Cherepanov</strong></p> +<blockquote> +<pre> +Fix a case where /Width attribute was not checked for null. +Bug 691602, customer 700. +</pre> +<p>[Resource/Init/pdf_font.ps]</p> +</blockquote> + +<p><strong><a name="2010-09-09T072652.042155Z"></a> +2010-09-09T07:26:52.042155Z Chris Liddell</strong></p> +<blockquote> +<pre> +Fix broken version number in gs_init.ps in trunk +</pre> +<p>[Resource/Init/gs_init.ps]</p> +</blockquote> + <p><strong><a name="2010-09-09T062654.427296Z"></a> 2010-09-09T06:26:54.427296Z Chris Liddell</strong></p> @@ -8299,7 +8377,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Develop.htm b/gs/doc/Develop.htm index b020b4ab0..250f7c4f8 100644 --- a/gs/doc/Develop.htm +++ b/gs/doc/Develop.htm @@ -4870,7 +4870,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Devices.htm b/gs/doc/Devices.htm index 8a47e8d3a..13e908fca 100644 --- a/gs/doc/Devices.htm +++ b/gs/doc/Devices.htm @@ -1628,7 +1628,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Drivers.htm b/gs/doc/Drivers.htm index 3d1effd8b..268ffe8d3 100644 --- a/gs/doc/Drivers.htm +++ b/gs/doc/Drivers.htm @@ -3261,7 +3261,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Fonts.htm b/gs/doc/Fonts.htm index 409a3cc77..4e2b276b0 100644 --- a/gs/doc/Fonts.htm +++ b/gs/doc/Fonts.htm @@ -774,7 +774,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Helpers.htm b/gs/doc/Helpers.htm index 14196edf8..d8939f868 100644 --- a/gs/doc/Helpers.htm +++ b/gs/doc/Helpers.htm @@ -300,7 +300,7 @@ contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History1.htm b/gs/doc/History1.htm index 81347746d..a5873f51c 100644 --- a/gs/doc/History1.htm +++ b/gs/doc/History1.htm @@ -430,7 +430,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History2.htm b/gs/doc/History2.htm index 3391d1a92..d49e105bb 100644 --- a/gs/doc/History2.htm +++ b/gs/doc/History2.htm @@ -5224,7 +5224,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History3.htm b/gs/doc/History3.htm index 97fa5a926..f99b44b4a 100644 --- a/gs/doc/History3.htm +++ b/gs/doc/History3.htm @@ -8589,7 +8589,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History4.htm b/gs/doc/History4.htm index 420fcb1e6..6de53a367 100644 --- a/gs/doc/History4.htm +++ b/gs/doc/History4.htm @@ -3973,7 +3973,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History5.htm b/gs/doc/History5.htm index 5b31cc578..43689acda 100644 --- a/gs/doc/History5.htm +++ b/gs/doc/History5.htm @@ -13447,7 +13447,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History6.htm b/gs/doc/History6.htm index 193d06392..e5cef621f 100644 --- a/gs/doc/History6.htm +++ b/gs/doc/History6.htm @@ -7329,7 +7329,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History7.htm b/gs/doc/History7.htm index 5242637f3..c37a0e275 100644 --- a/gs/doc/History7.htm +++ b/gs/doc/History7.htm @@ -15715,7 +15715,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History8.htm b/gs/doc/History8.htm index 039450306..009eb4720 100644 --- a/gs/doc/History8.htm +++ b/gs/doc/History8.htm @@ -62049,7 +62049,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/History9.htm b/gs/doc/History9.htm index 7a9252dc7..dc52f0974 100644 --- a/gs/doc/History9.htm +++ b/gs/doc/History9.htm @@ -29,7 +29,7 @@ <h2>Table of contents</h2> <blockquote><ul> -<li><a href="#Version9.00">Version 9.00 (2010-09-08)</a> +<li><a href="#Version9.00">Version 9.00 (2010-09-14)</a> </ul></blockquote> <!-- [1.2 end table of contents] =========================================== --> @@ -63,7 +63,7 @@ overview</a>. <!-- [2.0 begin contents] ================================================== --> -<h2><a name="Version9.00"></a>Version 9.00 (2010-09-08)</h2> +<h2><a name="Version9.00"></a>Version 9.00 (2010-09-14)</h2> <p>This is the first release in the stable 9.x series. @@ -111,6 +111,84 @@ No recorded incompatible changes. <h3><a name="9.00_changelog"></a>Changelog</h3> +<p><strong><a name="2010-09-13T150940.310889Z"></a> +2010-09-13T15:09:40.310889Z Chris Liddell</strong></p> +<blockquote> +<pre> +Commit the missing header changes from the previous checkin. +</pre> +<p>[psi/ifapi.h]</p> +</blockquote> + +<p><strong><a name="2010-09-13T145346.788657Z"></a> +2010-09-13T14:53:46.788657Z Chris Liddell</strong></p> +<blockquote> +<pre> +Another revision of the FAPI code. Due to a problem in Freetype which needs +further investigation, we cannot produce an outline, then decide to produce +a bitmap if it is small enough. We work around this by producing a bitmap, +and if it is too large, dispose of it, and retry with an outline, thus although +we still risk larger than ideal memory use, it is very short lived. A glyph +too large to be cached (for which we will now usually use an outline) does +not suffer from the Freetype issue mentioned above. + +The maximum allowable bit for Freetype to produce is now 1.5 x the maximum +cache bitmap as set in the Postscript state - it is set larger than the +cache bitmap since it is *vital* that if GS expects a bitmap to be cache +we supply a bitmap. Given that the bounding boxes arrived at the GS cache +device and the Freetype rendering code arrived at slightly differently, there +would be the chance of edge cases where FAPI would produce an outline, when +the cache expects a bitmap. Allowing FAPI plenty of leeway avoids that. + +The calculation to convert a quadratic to a cubic spline in the +Freetype interface code was slightly wrong. + +Also, FAPI now sets the fill adjust to 0 for filling outline glyph, instead +of inhereting the value from the originating graphics state, which gives +*much* more consistent output between the bitmap and outline cases, and +addresses the slightly excessive boldness observed for outline glyphs since +the adoption of Freetype/FAPI as the default font scaler/renderer. + +Finally, support for the existing Ghostscrit text anti-aliasing +capability is improved. + +Bug 691604 + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-13T102534.372202Z"></a> +2010-09-13T10:25:34.372202Z Chris Liddell</strong></p> +<blockquote> +<pre> +Revert revisions 11690 and later from the FAPI code (and revert version no. to 9.00) +to get a "good" base version, in preparation for a corrected version of the changes +in 11690 (and subsequent changes in the FAPI code). + +</pre> +<p>[psi/fapi_ft.c psi/zfapi.c base/version.mak Resource/Init/gs_init.ps psi/ifapi.h psi/fapiufst.c psi/fapibstm.c]</p> +</blockquote> + +<p><strong><a name="2010-09-09T135148.502020Z"></a> +2010-09-09T13:51:48.502020Z Alex Cherepanov</strong></p> +<blockquote> +<pre> +Fix a case where /Width attribute was not checked for null. +Bug 691602, customer 700. +</pre> +<p>[Resource/Init/pdf_font.ps]</p> +</blockquote> + +<p><strong><a name="2010-09-09T072652.042155Z"></a> +2010-09-09T07:26:52.042155Z Chris Liddell</strong></p> +<blockquote> +<pre> +Fix broken version number in gs_init.ps in trunk +</pre> +<p>[Resource/Init/gs_init.ps]</p> +</blockquote> + <p><strong><a name="2010-09-09T062654.427296Z"></a> 2010-09-09T06:26:54.427296Z Chris Liddell</strong></p> @@ -8286,7 +8364,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Install.htm b/gs/doc/Install.htm index 1da0f834a..755e520b5 100644 --- a/gs/doc/Install.htm +++ b/gs/doc/Install.htm @@ -546,7 +546,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Issues.htm b/gs/doc/Issues.htm index af06798f4..56605e55a 100644 --- a/gs/doc/Issues.htm +++ b/gs/doc/Issues.htm @@ -588,7 +588,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Language.htm b/gs/doc/Language.htm index 10094702e..bdaaf554a 100644 --- a/gs/doc/Language.htm +++ b/gs/doc/Language.htm @@ -2367,7 +2367,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Lib.htm b/gs/doc/Lib.htm index 4c775e766..d5d3a2012 100644 --- a/gs/doc/Lib.htm +++ b/gs/doc/Lib.htm @@ -861,7 +861,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Make.htm b/gs/doc/Make.htm index 5629e6854..888cfa25d 100644 --- a/gs/doc/Make.htm +++ b/gs/doc/Make.htm @@ -2868,7 +2868,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/News.htm b/gs/doc/News.htm index 79418f7cb..371ee30ea 100644 --- a/gs/doc/News.htm +++ b/gs/doc/News.htm @@ -56,7 +56,7 @@ overview</a>. <!-- [2.0 begin contents] ================================================== --> -<h2><a name="Version9.00"></a>Version 9.00 (2010-09-09)</h3> +<h2><a name="Version9.00"></a>Version 9.00 (2010-09-14)</h3> <p>This is the first release in the stable 9.x series. @@ -127,7 +127,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Projects.htm b/gs/doc/Projects.htm index ec9b5c74b..8bade51b0 100644 --- a/gs/doc/Projects.htm +++ b/gs/doc/Projects.htm @@ -669,7 +669,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Ps-style.htm b/gs/doc/Ps-style.htm index 40ba8bd9f..a25c25807 100644 --- a/gs/doc/Ps-style.htm +++ b/gs/doc/Ps-style.htm @@ -505,7 +505,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Ps2epsi.htm b/gs/doc/Ps2epsi.htm index 5f57bbd53..b71bb86f2 100644 --- a/gs/doc/Ps2epsi.htm +++ b/gs/doc/Ps2epsi.htm @@ -176,7 +176,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Ps2pdf.htm b/gs/doc/Ps2pdf.htm index 00c286a14..43e454835 100644 --- a/gs/doc/Ps2pdf.htm +++ b/gs/doc/Ps2pdf.htm @@ -1078,7 +1078,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Ps2ps2.htm b/gs/doc/Ps2ps2.htm index e46f54cba..248606e62 100644 --- a/gs/doc/Ps2ps2.htm +++ b/gs/doc/Ps2ps2.htm @@ -268,7 +268,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Psfiles.htm b/gs/doc/Psfiles.htm index a468e3825..163651220 100644 --- a/gs/doc/Psfiles.htm +++ b/gs/doc/Psfiles.htm @@ -1014,7 +1014,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Readme.htm b/gs/doc/Readme.htm index 02385a64f..f825ab1cf 100644 --- a/gs/doc/Readme.htm +++ b/gs/doc/Readme.htm @@ -584,7 +584,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Release.htm b/gs/doc/Release.htm index 73f9521f9..f19ec2a9a 100644 --- a/gs/doc/Release.htm +++ b/gs/doc/Release.htm @@ -836,7 +836,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Source.htm b/gs/doc/Source.htm index cf8f7c280..6fcbf3bba 100644 --- a/gs/doc/Source.htm +++ b/gs/doc/Source.htm @@ -376,7 +376,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Unix-lpr.htm b/gs/doc/Unix-lpr.htm index 4a88c5f91..fdde28458 100644 --- a/gs/doc/Unix-lpr.htm +++ b/gs/doc/Unix-lpr.htm @@ -260,7 +260,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Use.htm b/gs/doc/Use.htm index 374956fc2..99857da0c 100644 --- a/gs/doc/Use.htm +++ b/gs/doc/Use.htm @@ -3833,7 +3833,7 @@ PCLEOs. (see the FAPI-related source code for details). <hr> <p> -<small>Copyright © 2000-2006 Artifex Software, Inc. All rights reserved.</small> +<small>Copyright © 2000-2010 Artifex Software, Inc. All rights reserved.</small> <p> This software is provided AS-IS with no warranty, either express or @@ -3846,7 +3846,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/Xfonts.htm b/gs/doc/Xfonts.htm index 8072267fa..e5ae2bcad 100644 --- a/gs/doc/Xfonts.htm +++ b/gs/doc/Xfonts.htm @@ -258,7 +258,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. <p> -<small>Ghostscript version 9.00, 9 September 2010 +<small>Ghostscript version 9.00, 14 September 2010 <!-- [3.0 end visible trailer] ============================================= --> diff --git a/gs/doc/gs-vms.hlp b/gs/doc/gs-vms.hlp index 9d2916657..7cf229c44 100644 --- a/gs/doc/gs-vms.hlp +++ b/gs/doc/gs-vms.hlp @@ -1,7 +1,7 @@ 1 gs gs - GPL Ghostscript interpreter/previewer ! $Id$ -! Ghostscript version 9.00, 9 September 2010 +! Ghostscript version 9.00, 14 September 2010 Usage: $ gs [options] [file ...] diff --git a/gs/man/dvipdf.1 b/gs/man/dvipdf.1 index c4bd63ebd..08589e99c 100644 --- a/gs/man/dvipdf.1 +++ b/gs/man/dvipdf.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH DVIPDF 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH DVIPDF 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME dvipdf \- Convert TeX DVI file to PDF using ghostscript and dvips .SH SYNOPSIS diff --git a/gs/man/font2c.1 b/gs/man/font2c.1 index 52d89d8e9..4096f7b90 100644 --- a/gs/man/font2c.1 +++ b/gs/man/font2c.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH FONT2C 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH FONT2C 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME font2c \- Write PostScript Type 0 or Type 1 font as C code .SH SYNOPSIS diff --git a/gs/man/gs.1 b/gs/man/gs.1 index 1f271d2da..8fc670225 100644 --- a/gs/man/gs.1 +++ b/gs/man/gs.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH GS 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH GS 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME gs \- Ghostscript (PostScript and PDF language interpreter and previewer) .SH SYNOPSIS diff --git a/gs/man/gslp.1 b/gs/man/gslp.1 index 50a25f3cf..a06a3addf 100644 --- a/gs/man/gslp.1 +++ b/gs/man/gslp.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH GSLP 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH GSLP 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME gslp \- Format and print text using ghostscript .br diff --git a/gs/man/gsnd.1 b/gs/man/gsnd.1 index bb12f75a4..94f894989 100644 --- a/gs/man/gsnd.1 +++ b/gs/man/gsnd.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH GSND 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH GSND 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME gsnd \- Run ghostscript (PostScript and PDF engine) without display .SH SYNOPSIS diff --git a/gs/man/pdf2dsc.1 b/gs/man/pdf2dsc.1 index 23523e589..3d1397e44 100644 --- a/gs/man/pdf2dsc.1 +++ b/gs/man/pdf2dsc.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PDF2DSC 1 "9 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- +.TH PDF2DSC 1 "14 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- .SH NAME pdf2dsc \- generate a PostScript page list of a PDF document .SH SYNOPSIS diff --git a/gs/man/pdf2ps.1 b/gs/man/pdf2ps.1 index 4866f46e3..94505f9ec 100644 --- a/gs/man/pdf2ps.1 +++ b/gs/man/pdf2ps.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PDF2PS 1 "9 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- +.TH PDF2PS 1 "14 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- .SH NAME pdf2ps \- Ghostscript PDF to PostScript translator .SH SYNOPSIS diff --git a/gs/man/pdfopt.1 b/gs/man/pdfopt.1 index 739bf7358..34153b336 100644 --- a/gs/man/pdfopt.1 +++ b/gs/man/pdfopt.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PDFOPT 1 "9 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- +.TH PDFOPT 1 "14 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- .SH NAME pdfopt \- Ghostscript PDF Optimizer .SH SYNOPSIS diff --git a/gs/man/pf2afm.1 b/gs/man/pf2afm.1 index fe90febc8..f7c727233 100644 --- a/gs/man/pf2afm.1 +++ b/gs/man/pf2afm.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PF2AFM 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH PF2AFM 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME pf2afm \- Make an AFM file from Postscript (PFB/PFA/PFM) font files using ghostscript .SH SYNOPSIS diff --git a/gs/man/pfbtopfa.1 b/gs/man/pfbtopfa.1 index 0cf72f47f..61d373162 100644 --- a/gs/man/pfbtopfa.1 +++ b/gs/man/pfbtopfa.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PFBTOPFA 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH PFBTOPFA 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME pfbtopfa \- Convert Postscript .pfb fonts to .pfa format using ghostscript .SH SYNOPSIS diff --git a/gs/man/printafm.1 b/gs/man/printafm.1 index 5ef0fd49c..0cfa4529d 100644 --- a/gs/man/printafm.1 +++ b/gs/man/printafm.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PRINTAFM 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH PRINTAFM 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME printafm \- Print the metrics from a Postscript font in AFM format using ghostscript .SH SYNOPSIS diff --git a/gs/man/ps2ascii.1 b/gs/man/ps2ascii.1 index 742ce981a..ea8e187df 100644 --- a/gs/man/ps2ascii.1 +++ b/gs/man/ps2ascii.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PS2ASCII 1 "9 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- +.TH PS2ASCII 1 "14 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- .SH NAME ps2ascii \- Ghostscript translator from PostScript or PDF to ASCII .SH SYNOPSIS diff --git a/gs/man/ps2epsi.1 b/gs/man/ps2epsi.1 index 8d2cc6c93..d608a2f6c 100644 --- a/gs/man/ps2epsi.1 +++ b/gs/man/ps2epsi.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PS2EPSI 1 "9 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- +.TH PS2EPSI 1 "14 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- .SH NAME ps2epsi \- generate conforming Encapsulated PostScript .SH SYNOPSIS diff --git a/gs/man/ps2pdf.1 b/gs/man/ps2pdf.1 index 78b231b81..cfcfb4ba2 100644 --- a/gs/man/ps2pdf.1 +++ b/gs/man/ps2pdf.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PS2PDF 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH PS2PDF 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME ps2pdf \- Convert PostScript to PDF using ghostscript .br diff --git a/gs/man/ps2pdfwr.1 b/gs/man/ps2pdfwr.1 index 802e0d0d2..f803ad64e 100644 --- a/gs/man/ps2pdfwr.1 +++ b/gs/man/ps2pdfwr.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PS2PDFWR 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH PS2PDFWR 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME ps2pdfwr \- Convert PostScript to PDF without specifying CompatibilityLevel, using ghostscript .SH SYNOPSIS diff --git a/gs/man/ps2ps.1 b/gs/man/ps2ps.1 index cf0bb9294..379a038bc 100644 --- a/gs/man/ps2ps.1 +++ b/gs/man/ps2ps.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH PS2PS 1 "9 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- +.TH PS2PS 1 "14 September 2010" 9.00 "Ghostscript Tools" \" -*- nroff -*- .SH NAME ps2ps, eps2eps \- Ghostscript PostScript "distiller" .SH SYNOPSIS diff --git a/gs/man/wftopfa.1 b/gs/man/wftopfa.1 index 2e06bf1ee..ff0465636 100644 --- a/gs/man/wftopfa.1 +++ b/gs/man/wftopfa.1 @@ -1,5 +1,5 @@ .\" $Id$ -.TH WFTOPFA 1 "9 September 2010" 9.00 Ghostscript \" -*- nroff -*- +.TH WFTOPFA 1 "14 September 2010" 9.00 Ghostscript \" -*- nroff -*- .SH NAME wftopfa \- Convert a Wadalab base font to Postscript .PFA (or .PFB) format using ghostscript |