GraphicsMagick Commits | 11 May 2013 21:56
Picon

GraphicsMagick: HTML style sheet tweaks.

changeset 9099048df6c4 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=9099048df6c4
summary: HTML style sheet tweaks.

diffstat:

 scripts/html_fragments.py |    4 +-
 utilities/gm.1            |    2 +-
 www/docutils-articles.css |    1 +
 www/magick.css            |  176 ----------------------------------------------
 4 files changed, 4 insertions(+), 179 deletions(-)

diffs (214 lines):

diff -r fb3c68c61b7b -r 9099048df6c4 scripts/html_fragments.py
--- a/scripts/html_fragments.py	Sun Apr 28 18:06:52 2013 -0500
+++ b/scripts/html_fragments.py	Sat May 11 14:56:20 2013 -0500
 <at>  <at>  -9,8 +9,8  <at>  <at> 
 """

 
-url_mailinglist = "http://sourceforge.net/mail/?group_id=73485"
-url_sourceforge = "https://sourceforge.net/tracker/?group_id=73485"
+url_mailinglist = "https://sourceforge.net/p/graphicsmagick/mailman/?source=navbar"
+url_sourceforge = "https://sourceforge.net/projects/graphicsmagick/"

 banner_logo = 'images/gm-107x76.png' # relative to top directory

diff -r fb3c68c61b7b -r 9099048df6c4 utilities/gm.1
--- a/utilities/gm.1	Sun Apr 28 18:06:52 2013 -0500
(Continue reading)

GraphicsMagick Commits | 29 Apr 2013 01:06
Picon

GraphicsMagick: Lessen use of IsNexusInCore(). Eliminate GetNex...

changeset fb3c68c61b7b in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=fb3c68c61b7b
summary: Lessen use of IsNexusInCore().  Eliminate GetNexusIndexes() and GetNexusPixels().

diffstat:

 ChangeLog                              |   11 ++
 VisualMagick/installer/inc/version.isx |    4 +-
 design/pixel-cache-struct.dot          |    2 +-
 design/pixel-cache.dot                 |   17 +-
 magick/pixel_cache.c                   |  178 +++++++++-----------------------
 magick/version.h                       |    4 +-
 www/Changelog.html                     |   11 ++
 7 files changed, 90 insertions(+), 137 deletions(-)

diffs (truncated from 536 to 300 lines):

diff -r 2cafec9ca79f -r fb3c68c61b7b ChangeLog
--- a/ChangeLog	Sat Apr 20 20:15:00 2013 -0500
+++ b/ChangeLog	Sun Apr 28 18:06:52 2013 -0500
 <at>  <at>  -1,3 +1,14  <at>  <at> 
+2013-04-28  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* design/pixel-cache-struct.dot: Update structure relationships
+	diagram.
+
+	* design/pixel-cache.dot: Update call flow diagram.
+
+	* magick/pixel_cache.c: Eliminate use of internal functions
+	GetNexusIndexes(), GetNexusPixels().  Reduce usage of internal
(Continue reading)

GraphicsMagick Commits | 21 Apr 2013 03:15
Picon

GraphicsMagick: MAGICK_SSIZE_T should always be a signed type.

changeset 2cafec9ca79f in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=2cafec9ca79f
summary: MAGICK_SSIZE_T should always be a signed type.

diffstat:

 ChangeLog          |  2 ++
 configure          |  2 +-
 configure.ac       |  2 +-
 www/Changelog.html |  1 +
 4 files changed, 5 insertions(+), 2 deletions(-)

diffs (46 lines):

diff -r 153a73d6b8ea -r 2cafec9ca79f ChangeLog
--- a/ChangeLog	Sat Apr 20 20:10:35 2013 -0500
+++ b/ChangeLog	Sat Apr 20 20:15:00 2013 -0500
 <at>  <at>  -1,5 +1,7  <at>  <at> 
 2013-04-20  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

+	* configure.ac: MAGICK_SSIZE_T should always be a signed type.
+
 	* coders/jpeg.c (WriteXMPProfile): Add support for writing 'XMP'
 	profile in JPEG.
 	(WriteJPEGImage): Restructure/tidy JPEG profile writing code.
diff -r 153a73d6b8ea -r 2cafec9ca79f configure
--- a/configure	Sat Apr 20 20:10:35 2013 -0500
+++ b/configure	Sat Apr 20 20:15:00 2013 -0500
 <at>  <at>  -20764,7 +20764,7  <at>  <at> 
   # Normal case for LP32 and LP64
(Continue reading)

GraphicsMagick Commits | 21 Apr 2013 03:10
Picon

GraphicsMagick: Restructure/tidy JPEG profile writing code.

changeset 153a73d6b8ea in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=153a73d6b8ea
summary: Restructure/tidy JPEG profile writing code.

diffstat:

 ChangeLog          |    1 +
 coders/jpeg.c      |  289 +++++++++++++++++++++++++++++-----------------------
 www/Changelog.html |    3 +-
 3 files changed, 166 insertions(+), 127 deletions(-)

diffs (truncated from 521 to 300 lines):

diff -r 25bc5cad7040 -r 153a73d6b8ea ChangeLog
--- a/ChangeLog	Sat Apr 20 18:27:12 2013 -0500
+++ b/ChangeLog	Sat Apr 20 20:10:35 2013 -0500
 <at>  <at>  -2,6 +2,7  <at>  <at> 

 	* coders/jpeg.c (WriteXMPProfile): Add support for writing 'XMP'
 	profile in JPEG.
+	(WriteJPEGImage): Restructure/tidy JPEG profile writing code.

 2013-04-16  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

diff -r 25bc5cad7040 -r 153a73d6b8ea coders/jpeg.c
--- a/coders/jpeg.c	Sat Apr 20 18:27:12 2013 -0500
+++ b/coders/jpeg.c	Sat Apr 20 20:10:35 2013 -0500
 <at>  <at>  -230,7 +230,8  <at>  <at> 
       if (image->logging)
 	{
(Continue reading)

GraphicsMagick Commits | 21 Apr 2013 01:27
Picon

GraphicsMagick: Add support for writing 'XMP' profile in JPEG.

changeset 25bc5cad7040 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=25bc5cad7040
summary: Add support for writing 'XMP' profile in JPEG.

diffstat:

 ChangeLog                              |    5 +
 VisualMagick/installer/inc/version.isx |    4 +-
 coders/jpeg.c                          |  101 ++++++++++++++++++++++++++++++--
 magick/version.h                       |    4 +-
 www/Changelog.html                     |    7 ++
 5 files changed, 108 insertions(+), 13 deletions(-)

diffs (214 lines):

diff -r 2403db8291f5 -r 25bc5cad7040 ChangeLog
--- a/ChangeLog	Tue Apr 16 21:57:38 2013 -0500
+++ b/ChangeLog	Sat Apr 20 18:27:12 2013 -0500
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2013-04-20  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* coders/jpeg.c (WriteXMPProfile): Add support for writing 'XMP'
+	profile in JPEG.
+
 2013-04-16  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

 	* coders/tiff.c (ReadTIFFImage): Return DirectClass images by
diff -r 2403db8291f5 -r 25bc5cad7040 VisualMagick/installer/inc/version.isx
--- a/VisualMagick/installer/inc/version.isx	Tue Apr 16 21:57:38 2013 -0500
+++ b/VisualMagick/installer/inc/version.isx	Sat Apr 20 18:27:12 2013 -0500
(Continue reading)

GraphicsMagick Commits | 17 Apr 2013 04:57
Picon

GraphicsMagick: Return DirectClass images by default for MINISWH...

changeset 2403db8291f5 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=2403db8291f5
summary: Return DirectClass images by default for MINISWHITE and MINISBLACK TIFF formats.

diffstat:

 ChangeLog                              |  5 +++++
 VisualMagick/installer/inc/version.isx |  4 ++--
 coders/tiff.c                          |  7 ++++---
 magick/version.h                       |  4 ++--
 www/Changelog.html                     |  7 +++++++
 5 files changed, 20 insertions(+), 7 deletions(-)

diffs (71 lines):

diff -r 99cd840356ea -r 2403db8291f5 ChangeLog
--- a/ChangeLog	Sun Apr 07 16:46:41 2013 -0500
+++ b/ChangeLog	Tue Apr 16 21:57:38 2013 -0500
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2013-04-16  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* coders/tiff.c (ReadTIFFImage): Return DirectClass images by
+	default for MINISWHITE and MINISBLACK TIFF formats.
+
 2013-04-07  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

 	* coders/wpg.c, magick/attribute.c, magick/map.c, magick/render.c,
diff -r 99cd840356ea -r 2403db8291f5 VisualMagick/installer/inc/version.isx
--- a/VisualMagick/installer/inc/version.isx	Sun Apr 07 16:46:41 2013 -0500
+++ b/VisualMagick/installer/inc/version.isx	Tue Apr 16 21:57:38 2013 -0500
(Continue reading)

GraphicsMagick Commits | 7 Apr 2013 23:46
Picon

GraphicsMagick: Reduce compilation warnings.

changeset 99cd840356ea in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=99cd840356ea
summary: Reduce compilation warnings.

diffstat:

 ChangeLog                              |   6 ++++++
 VisualMagick/installer/inc/version.isx |   4 ++--
 coders/wpg.c                           |   4 +++-
 magick/attribute.c                     |   2 ++
 magick/map.c                           |   1 +
 magick/render.c                        |  11 ++++++-----
 magick/version.h                       |   4 ++--
 magick/widget.c                        |  24 ++++++++++++++++++++----
 magick/xwindow.c                       |  14 ++------------
 www/Changelog.html                     |   8 ++++++++
 10 files changed, 52 insertions(+), 26 deletions(-)

diffs (229 lines):

diff -r 26b57e42827d -r 99cd840356ea ChangeLog
--- a/ChangeLog	Sun Apr 07 11:57:01 2013 -0500
+++ b/ChangeLog	Sun Apr 07 16:46:41 2013 -0500
 <at>  <at>  -1,3 +1,9  <at>  <at> 
+2013-04-07  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* coders/wpg.c, magick/attribute.c, magick/map.c, magick/render.c,
+	magick/widget.c, magick/xwindow.c: Fixes to reduce warnings with
+	GCC 4.8.0 at -O3 optimimization level, and for clang 3.2.
+
(Continue reading)

GraphicsMagick Commits | 7 Apr 2013 18:57
Picon

GraphicsMagick: Use ThumbnailImage() rather than SampleImage() w...

changeset 26b57e42827d in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=26b57e42827d
summary: Use ThumbnailImage() rather than SampleImage() when creating the panner image to ipmrove the
quality of the image.

diffstat:

 ChangeLog                              |  6 ++++++
 VisualMagick/installer/inc/version.isx |  4 ++--
 magick/effect.c                        |  1 +
 magick/version.h                       |  4 ++--
 magick/xwindow.c                       |  4 ++--
 www/Changelog.html                     |  8 ++++++++
 6 files changed, 21 insertions(+), 6 deletions(-)

diffs (86 lines):

diff -r 32b26ceb0a19 -r 26b57e42827d ChangeLog
--- a/ChangeLog	Sun Mar 31 11:18:38 2013 -0500
+++ b/ChangeLog	Sun Apr 07 11:57:01 2013 -0500
 <at>  <at>  -1,3 +1,9  <at>  <at> 
+2013-04-03  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* magick/xwindow.c (MagickXMakeImage): Use ThumbnailImage() rather
+	than SampleImage() when creating the panner image to improve the
+	quality of the image.
+
 2013-03-31  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

 	* magick/attribute.c (tag_table): Add support for SubjectArea EXIF
(Continue reading)

GraphicsMagick Commits | 31 Mar 2013 18:18
Picon

GraphicsMagick: 2 new changesets

changeset 33e8a33bcc69 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=33e8a33bcc69
summary: Fix some more SourceForge links.

changeset 32b26ceb0a19 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=32b26ceb0a19
summary: Add support for SubjectArea EXIF tag.

diffstat:

 ChangeLog                              |  6 ++++++
 VisualMagick/installer/inc/version.isx |  4 ++--
 magick/attribute.c                     |  3 ++-
 magick/version.h                       |  4 ++--
 www/Changelog.html                     |  8 ++++++++
 www/project.html                       |  4 ++--
 www/project.rst                        |  4 ++--
 7 files changed, 24 insertions(+), 9 deletions(-)

diffs (114 lines):

diff -r 4703013a0b05 -r 32b26ceb0a19 ChangeLog
--- a/ChangeLog	Sun Mar 31 10:34:39 2013 -0500
+++ b/ChangeLog	Sun Mar 31 11:18:38 2013 -0500
 <at>  <at>  -1,3 +1,9  <at>  <at> 
+2013-03-31  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* magick/attribute.c (tag_table): Add support for SubjectArea EXIF
+	tag.  Resolves SourceForge issue #229 "Cannot Parse the
+	SubjectArea EXIF Info".
(Continue reading)

GraphicsMagick Commits | 31 Mar 2013 17:34
Picon

GraphicsMagick: Change "me" to "the developer responsible for th...

changeset 4703013a0b05 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=4703013a0b05
summary: Change "me" to "the developer responsible for this role".

diffstat:

 magick/common.h |  2 +-
 www/Hg.html     |  9 +++++----
 www/Hg.rst      |  9 +++++----
 3 files changed, 11 insertions(+), 9 deletions(-)

diffs (48 lines):

diff -r 525f0afe5d11 -r 4703013a0b05 magick/common.h
--- a/magick/common.h	Sat Mar 30 14:35:45 2013 -0500
+++ b/magick/common.h	Sun Mar 31 10:34:39 2013 -0500
 <at>  <at>  -1,5 +1,5  <at>  <at> 
 /*
-  Copyright (C) 2009 GraphicsMagick Group
+  Copyright (C) 2009-2013 GraphicsMagick Group

   This program is covered by multiple licenses, which are described in
   Copyright.txt. You should have received a copy of Copyright.txt with this
diff -r 525f0afe5d11 -r 4703013a0b05 www/Hg.html
--- a/www/Hg.html	Sat Mar 30 14:35:45 2013 -0500
+++ b/www/Hg.html	Sun Mar 31 10:34:39 2013 -0500
 <at>  <at>  -179,10 +179,11  <at>  <at> 
 </ol>
 <blockquote>
 The stable repository is available via http at
(Continue reading)

GraphicsMagick Commits | 30 Mar 2013 20:35
Picon

GraphicsMagick: Fix wrong text about how one can clone from Sour...

changeset 525f0afe5d11 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=525f0afe5d11
summary: Fix wrong text about how one can clone from SourgeForge's Mercurial web site since they broke that
with their 'upgrade'.

diffstat:

 www/Hg.html |  4 +---
 www/Hg.rst  |  4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diffs (28 lines):

diff -r 7c75de00d583 -r 525f0afe5d11 www/Hg.html
--- a/www/Hg.html	Sat Mar 30 13:50:25 2013 -0500
+++ b/www/Hg.html	Sat Mar 30 14:35:45 2013 -0500
 <at>  <at>  -77,9 +77,7  <at>  <at> 
 <h1><a class="toc-backref" href="#id2">Web Access</a></h1>
 <p>The <a class="reference external"
href="http://sourceforge.net/p/graphicsmagick/code/">GraphicsMagick repository at
SourceForge</a> web interface is
 available which may be used to interactively view the latest versions
-of files, or the changes to files, using your web browser.  Due to the
-way that <a class="reference external" href="http://mercurial.selenic.com/">Mercurial</a>
works, you may also clone a new repository from
-this interface via the same URL.</p>
+of files, or the changes to files, using your web browser.</p>
 </div>
 <div class="section" id="cloning-the-mercurial-repository">
 <h1><a class="toc-backref" href="#id3">Cloning the Mercurial Repository</a></h1>
(Continue reading)


Gmane