• R/O
  • SSH

GM: Commit

Main GraphicsMagick source repository


Commit MetaInfo

Révisiond810bf1523ae52ff71d3602ea78a30d03be898d9 (tree)
l'heure2005-05-02 05:09:54
AuteurBob Friesenhahn <bfriesen@Grap...>
CommiterBob Friesenhahn

Message de Log

* version.sh (PACKAGE_VERSION): Release version 1.1.6.
* wand/pixel_wand.c (PixelSetYellowQuantum): Wrong PixelPacket
member was being set. Thanks to Cristy for the heads-up.

Change Summary

Modification

diff -r 526840042523 -r d810bf1523ae ChangeLog
--- a/ChangeLog Sun May 01 13:43:30 2005 -0500
+++ b/ChangeLog Sun May 01 15:09:54 2005 -0500
@@ -1,5 +1,8 @@
11 2005-05-01 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
22
3+ * version.sh (PACKAGE_VERSION): Release version 1.1.6.
4+ * wand/pixel_wand.c (PixelSetYellowQuantum): Wrong PixelPacket
5+ member was being set. Thanks to Cristy for the heads-up.
36 * magick/image.c (SetImageType): Revert change from 2005-03-12.
47 Some coders require that when the image is set to Bilevel type,
58 that it be PseudoClass.
diff -r 526840042523 -r d810bf1523ae NEWS
--- a/NEWS Sun May 01 13:43:30 2005 -0500
+++ b/NEWS Sun May 01 15:09:54 2005 -0500
@@ -1,6 +1,6 @@
11 This file was last updated on April 29, 2005.
22
3-Significant changes associated with GraphicsMagick 1.1.6 (released TBD, 2005)
3+Significant changes associated with GraphicsMagick 1.1.6 (released May 1, 2005)
44
55 Improvements:
66 o Performance enhancements to internal string handling.
diff -r 526840042523 -r d810bf1523ae VisualMagick/installer/inc/version.isx
--- a/VisualMagick/installer/inc/version.isx Sun May 01 13:43:30 2005 -0500
+++ b/VisualMagick/installer/inc/version.isx Sun May 01 15:09:54 2005 -0500
@@ -9,6 +9,6 @@
99 #endif
1010
1111 #define public MagickPackageName "GraphicsMagick"
12-#define public MagickPackageVersion "1.1.5"
12+#define public MagickPackageVersion "1.1.6"
1313 #define public MagickPackageVersionAddendum ""
14-#define public MagickPackageReleaseDate "2005-01-22"
14+#define public MagickPackageReleaseDate "2005-05-01"
diff -r 526840042523 -r d810bf1523ae magick/version.h
--- a/magick/version.h Sun May 01 13:43:30 2005 -0500
+++ b/magick/version.h Sun May 01 15:09:54 2005 -0500
@@ -35,11 +35,11 @@
3535 */
3636 #define MagickPackageName "GraphicsMagick"
3737 #define MagickCopyright "Copyright (C) 2002, 2003, 2004 GraphicsMagick Group. Additional copyrights and licenses apply to this software, see http://www.GraphicsMagick.org/www/Copyright.html"
38-#define MagickLibVersion 0x010005
39-#define MagickLibVersionText "1.1.5"
40-#define MagickLibVersionNumber 1,0,5
38+#define MagickLibVersion 0x010006
39+#define MagickLibVersionText "1.1.6"
40+#define MagickLibVersionNumber 1,0,6
4141 #define MagickChangeDate "20050501"
42-#define MagickReleaseDate "2005-01-22"
42+#define MagickReleaseDate "2005-05-01"
4343
4444
4545 #if (QuantumDepth == 8)
diff -r 526840042523 -r d810bf1523ae version.sh
--- a/version.sh Sun May 01 13:43:30 2005 -0500
+++ b/version.sh Sun May 01 15:09:54 2005 -0500
@@ -9,12 +9,12 @@
99 #
1010 # Package base version. This is is the numeric version suffix applied to
1111 # PACKAGE_NAME (e.g. "1.1").
12-PACKAGE_VERSION='1.1.5'
12+PACKAGE_VERSION='1.1.6'
1313
1414 #
1515 # Formal Package release date
1616 # Set to string "unreleased" if package is not a formal release.
17-PACKAGE_RELEASE_DATE="2005-01-22"
17+PACKAGE_RELEASE_DATE="2005-05-01"
1818 #PACKAGE_RELEASE_DATE="unreleased"
1919
2020 #
@@ -63,7 +63,7 @@
6363 # Magick library versioning
6464 #
6565 MAGICK_LIBRARY_CURRENT=1
66-MAGICK_LIBRARY_REVISION=5
66+MAGICK_LIBRARY_REVISION=6
6767 MAGICK_LIBRARY_AGE=0
6868
6969 #
@@ -77,5 +77,5 @@
7777 # Magick Wand library versioning
7878 #
7979 MAGICK_WAND_LIBRARY_CURRENT=0
80-MAGICK_WAND_LIBRARY_REVISION=2
80+MAGICK_WAND_LIBRARY_REVISION=3
8181 MAGICK_WAND_LIBRARY_AGE=0
diff -r 526840042523 -r d810bf1523ae wand/pixel_wand.c
--- a/wand/pixel_wand.c Sun May 01 13:43:30 2005 -0500
+++ b/wand/pixel_wand.c Sun May 01 15:09:54 2005 -0500
@@ -1493,5 +1493,5 @@
14931493 {
14941494 assert(wand != (const PixelWand *) NULL);
14951495 assert(wand->signature == MagickSignature);
1496- wand->pixel.green=(double) yellow/MaxRGB;
1496+ wand->pixel.blue=(double) yellow/MaxRGB;
14971497 }
diff -r 526840042523 -r d810bf1523ae www/Changelog.html
--- a/www/Changelog.html Sun May 01 13:43:30 2005 -0500
+++ b/www/Changelog.html Sun May 01 15:09:54 2005 -0500
@@ -2,7 +2,7 @@
22 "http://www.w3.org/TR/html4/loose.dtd">
33 <HTML>
44 <HEAD>
5-<TITLE>GraphicsMagick 1.1.5 ChangeLog</TITLE>
5+<TITLE>GraphicsMagick 1.1.6 ChangeLog</TITLE>
66 <STYLE>
77 <!--
88 @page { size: 8.5in 11in }
@@ -17,13 +17,16 @@
1717 <table BORDER=0 WIDTH="100%" >
1818 <tr>
1919 <td BGCOLOR="#52799E"><img SRC="../images/right_triangle.png" ALT=">" height=14 width=15>
20-<b><font face="Helvetica, Arial"><font color="#FFFFFF"><font size="+1">GraphicsMagick 1.1.5 ChangeLog</font></font></font></b></td>
20+<b><font face="Helvetica, Arial"><font color="#FFFFFF"><font size="+1">GraphicsMagick 1.1.6 ChangeLog</font></font></font></b></td>
2121 </tr>
2222 </table>
2323 <p>
2424 2005-05-01 Bob Friesenhahn &lt;bfriesen@simple.dallas.tx.us&gt;
2525
2626 <UL>
27+ <LI> version.sh (PACKAGE_VERSION): Release version 1.1.6.
28+ <LI> wand/pixel_wand.c (PixelSetYellowQuantum): Wrong PixelPacket
29+ member was being set. Thanks to Cristy for the heads-up.
2730 <LI> magick/image.c (SetImageType): Revert change from 2005-03-12.
2831 Some coders require that when the image is set to Bilevel type,
2932 that it be PseudoClass.
diff -r 526840042523 -r d810bf1523ae www/NEWS.html
--- a/www/NEWS.html Sun May 01 13:43:30 2005 -0500
+++ b/www/NEWS.html Sun May 01 15:09:54 2005 -0500
@@ -2,7 +2,7 @@
22 "http://www.w3.org/TR/html4/loose.dtd">
33 <HTML>
44 <HEAD>
5-<TITLE>GraphicsMagick 1.1.5 News</TITLE>
5+<TITLE>GraphicsMagick 1.1.6 News</TITLE>
66 <STYLE>
77 <!--
88 @page { size: 8.5in 11in }
@@ -17,14 +17,14 @@
1717 <table BORDER=0 WIDTH="100%" >
1818 <tr>
1919 <td BGCOLOR="#52799E"><img SRC="../images/right_triangle.png" ALT=">" height=14 width=15>
20-<b><font face="Helvetica, Arial"><font color="#FFFFFF"><font size="+1">GraphicsMagick 1.1.5 News</font></font></font></b></td>
20+<b><font face="Helvetica, Arial"><font color="#FFFFFF"><font size="+1">GraphicsMagick 1.1.6 News</font></font></font></b></td>
2121 </tr>
2222 </table>
2323 <p>
2424 This file was last updated on April 29, 2005.
2525
2626 <p>
27-Significant changes associated with GraphicsMagick 1.1.6 (released TBD, 2005)
27+Significant changes associated with GraphicsMagick 1.1.6 (released May 1, 2005)
2828
2929 <p>
3030 Improvements:<BR>
diff -r 526840042523 -r d810bf1523ae www/body.html
--- a/www/body.html Sun May 01 13:43:30 2005 -0500
+++ b/www/body.html Sun May 01 15:09:54 2005 -0500
@@ -6,7 +6,7 @@
66 <META NAME="GENERATOR" CONTENT="StarOffice 7 (Solaris Sparc)">
77 <META NAME="CREATED" CONTENT="20020718;11000900">
88 <META NAME="CHANGEDBY" CONTENT="Bob Friesenhahn">
9- <META NAME="CHANGED" CONTENT="20050122;11115300">
9+ <META NAME="CHANGED" CONTENT="20050501;14540200">
1010 <META NAME="DESCRIPTION" CONTENT="GraphicsMagick is a robust collection of tools and libraries to read, write, and manipulate an image in any of the more popular image formats including GIF, JPEG, PNG, PDF, and Photo CD. With GraphicsMagick you can create GIFs dynamically making it suitable for Web applications. You can also resize, rotate, sharpen, color reduce, or add special effects to an image and save your completed work in the same or differing image format.">
1111 <META NAME="KEYWORDS" CONTENT="GraphicsMagick, Image Magick, Image Magic, PerlMagick, Perl Magick, Perl Magic, CineMagick, PixelMagick, Pixel Magic, WebMagick, Web Magic, visualization, image processing, software development, simulation, image, software, AniMagick, Animagic, Magick++">
1212 <STYLE>
@@ -25,23 +25,13 @@
2525 <COL WIDTH=182*>
2626 <TR VALIGN=TOP>
2727 <TD WIDTH=29%>
28- <P><FONT SIZE=3><I><SPAN STYLE="background: transparent">Previous
29- Stable Branch:</SPAN></I></FONT></P>
30- </TD>
31- <TD WIDTH=71%>
32- <P><A HREF="http://sourceforge.net/project/showfiles.php?group_id=73485" TARGET="_top"><SPAN STYLE="background: transparent"><I>1.0.6</I></SPAN></A>
33- <I>(Released April 4, 2004)</I></P>
34- </TD>
35- </TR>
36- <TR VALIGN=TOP>
37- <TD WIDTH=29%>
3828 <P><FONT SIZE=3><I><SPAN STYLE="background: transparent">Current
3929 Stable Branch: </SPAN></I></FONT>
4030 </P>
4131 </TD>
4232 <TD WIDTH=71%>
43- <P ALIGN=LEFT><SPAN STYLE="background: transparent"><I><A HREF="http://sourceforge.net/project/showfiles.php?group_id=73485" TARGET="_top">1.1.5</A>
44- (Released January 22, 2005)</I></SPAN></P>
33+ <P ALIGN=LEFT><SPAN STYLE="background: transparent"><I><A HREF="http://sourceforge.net/project/showfiles.php?group_id=73485" TARGET="_top">1.1.6</A>
34+ (Released May 1, 2005)</I></SPAN></P>
4535 </TD>
4636 </TR>
4737 <TR VALIGN=TOP>
@@ -50,25 +40,29 @@
5040 Branch:</SPAN></I></FONT></P>
5141 </TD>
5242 <TD WIDTH=71%>
53- <P ALIGN=LEFT><A HREF="ftp://anonymous:bfriesen@simple.dallas.tx.us@ftp.graphicsmagick.org/pub/GraphicsMagick/snapshots/">1.2</A>
43+ <P ALIGN=LEFT><A HREF="ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/snapshots/">1.2</A>
5444 (Development snapshots only)</P>
5545 </TD>
5646 </TR>
5747 </TABLE>
5848 <P ALIGN=CENTER><I>[ Check <A HREF="http://www.GraphicsMagick.org/" TARGET="_top">http://www.GraphicsMagick.org/</A>
5949 for the latest version of this page. ]</I></P>
60-<P><I>GraphicsMagick</I> is a robust collection of tools and
61-libraries which support reading, writing, and manipulating an image
62-in over 88 major formats including popular formats like TIFF, JPEG,
63-JPEG-2000, PNG, PDF, PhotoCD, SVG, and GIF. <I>GraphicsMagick</I>
64-supports creating new images on the fly, making it suitable for
65-building dynamic Web applications. <I>GraphicsMagick</I> may be used
66-to resize, rotate, sharpen, color reduce, or add special effects to
67-an image and save the result in the same or differing image format.
68-Image processing operations are available from the command line, as
69-well as through C, C++, Perl, or Windows COM programming interfaces.
70-Extensions are available from third-parties to support <A HREF="programming.html">programming</A>
71-in Borland's Delphi, Java, PHP, Python, Scheme, Tcl, and Ruby.</P>
50+<P><I>GraphicsMagick</I> is the swiss army knife of image processing.
51+It provides a robust collection of tools and libraries which support
52+reading, writing, and manipulating an image in over 88 major formats
53+including important formats like DPX, GIF, JPEG, JPEG-2000, PNG, PDF,
54+SVG, and TIFF. GraphicsMagick supports huge images on systems that
55+support large files, and has been tested with gigapixel-size images.
56+<I>GraphicsMagick</I> can create new images on the fly, making it
57+suitable for building dynamic Web applications. <I>GraphicsMagick</I>
58+may be used to resize, rotate, sharpen, color reduce, or add special
59+effects to an image and save the result in the same or differing
60+image format. Image processing operations are available from the
61+command line, as well as through C, C++, Perl, or Windows COM
62+programming interfaces. Extensions are available from third-parties
63+to support <A HREF="programming.html">programming</A> in Python, Tcl,
64+and Ruby. With some modification, language extensions for ImageMagick
65+may be used.</P>
7266 <P><I><SPAN STYLE="background: transparent">Gr</SPAN>aphicsMagick</I>
7367 is <A HREF="Copyright.html">copyrighted</A> by the GraphicsMagick
7468 Group as well as many others. <I>GraphicsMagick</I> is dististributed
@@ -182,50 +176,9 @@
182176 every general purpose operating system that runs on 32-bit or 64-bit
183177 CPUs. <I>GraphicsMagick</I> is available for virtually any Unix or
184178 Unix-like system, including Linux. It also runs under <A HREF="windows.html">Windows</A>
185-'98 and later ('98, ME, NT 4.0, 2000, and XP), and MacOS-X. Ports
186-exists for MacOS 9 and VMS but the ports lack a maintainer and have
187-not been tested for several years (please volunteer!).</P>
188-<TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=2>
189- <TR>
190- <TD BGCOLOR="#52799e">
191- <P><IMG SRC="../images/right_triangle.png" NAME="Graphic36" ALT="&gt;" ALIGN=BOTTOM WIDTH=15 HEIGHT=14 BORDER=0><B><FONT FACE="Helvetica, Arial"><FONT COLOR="#ffffff">GraphicsMagick
192- Sponsors</FONT></FONT></B></P>
193- </TD>
194- </TR>
195-</TABLE>
196-<P><FONT SIZE=3>We thank these sponsors of the <I>GraphicsMagick</I>
197-project: </FONT>
198-</P>
199-<DL>
200- <DD>
201- <TABLE WIDTH=90% BORDER=0 CELLPADDING=5 CELLSPACING=0>
202- <COL WIDTH=76*>
203- <COL WIDTH=180*>
204- <TR>
205- <TD WIDTH=30% BGCOLOR="#ffffff">
206- <P ALIGN=CENTER><FONT COLOR="#0085c0"><A HREF="http://www.corbis.com/"><FONT COLOR="#0085c0"><IMG SRC="../images/corbis.png" NAME="Graphic37" ALT="Corbis" ALIGN=BOTTOM WIDTH=145 HEIGHT=39 BORDER=1></FONT></A></FONT></P>
207- </TD>
208- <TD WIDTH=70% BGCOLOR="#ffffff">
209- <P><FONT SIZE=3>Discover the perfect image. Stock photography and
210- pictures.</FONT></P>
211- </TD>
212- </TR>
213- <TR>
214- <TD WIDTH=30% BGCOLOR="#ffffff">
215- <P ALIGN=CENTER><FONT COLOR="#0085c0"><A HREF="http://www.pdfsages.com/"><FONT COLOR="#0085c0"><IMG SRC="../images/pdfsages.png" NAME="HTTP://WWW.PDFSAGES.COM/" ALT="PDF Sages" ALIGN=BOTTOM WIDTH=126 HEIGHT=40 BORDER=1></FONT></A></FONT>
216- </P>
217- </TD>
218- <TD WIDTH=70% BGCOLOR="#ffffff">
219- <P><FONT SIZE=3>PDF Sages, a company dedicated to providing
220- unmatched PDF consulting, training, and development services.</FONT></P>
221- </TD>
222- </TR>
223- </TABLE>
224-</DL>
225-<P><BR><BR>
226-</P>
179+'98 and later ('98, ME, NT 4.0, 2000, and XP), and MacOS-X.</P>
227180 <HR>
228181 <P ALIGN=CENTER><A HREF="Copyright.html">Copyright</A> <FONT FACE="Abadi Mt Condensed Extra Bold">&copy;</FONT>
229-GraphicsMagick Group 2002, 2003, 2004</P>
182+GraphicsMagick Group 2002, 2003, 2004, 2005</P>
230183 </BODY>
231184 </HTML>
\ No newline at end of file
Afficher sur ancien navigateur de dépôt.