GraphicsMagick: Fix UTF-8 encoding errors in some text and sourc...

GraphicsMagick Commits <[email protected]>
Newsgroups gmane.comp.video.graphicsmagick.cvs
Message-ID <mailman.1462.1660591054.21789.graphicsmagick-commit@lists.sourceforge.net>
changeset 6983b5d4a18f in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=6983b5d4a18f
summary: Fix UTF-8 encoding errors in some text and source files.

diffstat:

 ChangeLog                              |  5 +++++
 ChangeLog.2009                         |  4 ++--
 NEWS.txt                               |  6 +++---
 VisualMagick/installer/inc/version.isx |  4 ++--
 magick/cdl.c                           |  2 +-
 magick/cdl.h                           |  2 +-
 magick/version.h                       |  4 ++--
 www/ChangeLog-2009.html                |  2 +-
 www/Changelog.html                     |  7 +++++++
 www/NEWS.html                          |  2 +-
 www/authors.html                       |  2 +-
 www/authors.rst                        |  2 +-
 12 files changed, 27 insertions(+), 15 deletions(-)

diffs (174 lines):

diff -r 88699a41798c -r 6983b5d4a18f ChangeLog
--- a/ChangeLog	Sat Aug 13 09:51:50 2022 -0500
+++ b/ChangeLog	Mon Aug 15 14:17:25 2022 -0500
@@ -1,3 +1,8 @@
+2022-08-15  Bob Friesenhahn  <[email protected]>
+
+	* Fix UTF-8 encoding errors in some text and source files.  A few
+	more issues remain.  Assistance is appreciated.
+
 2022-08-13  Bob Friesenhahn  <[email protected]>
 
 	* coders/svg.c (ReadSVGImage): Address concern from SourceForge
diff -r 88699a41798c -r 6983b5d4a18f ChangeLog.2009
--- a/ChangeLog.2009	Sat Aug 13 09:51:50 2022 -0500
+++ b/ChangeLog.2009	Mon Aug 15 14:17:25 2022 -0500
@@ -930,7 +930,7 @@
 2009-07-05  Bob Friesenhahn  <[email protected]>
 
 	* magick/cdl.c (CdlImage): New function to apply an ASC CDL
-	transform to the image.  Original implementation by Clément Follet
+	transform to the image.  Original implementation by Clément Follet
 	from Workflowers but considerably re-worked by Bob Friesenhahn.
 	Available as -asc-cdl via the `convert` and `mogrify` subcommands.
 
@@ -1127,7 +1127,7 @@
 	on any number of images.  The algorithm is accessed by the
 	-hald-clut option of `convert` and `mogrify`.  The original
 	algorithm is by Eskil Steenberg and was adapted for GraphicsMagick
-	by Clément Follet from Workflowers with support from Cédric
+	by Clément Follet from Workflowers with support from Cédric
 	Lejeune of Workflowers.
 
 2009-06-05  Bob Friesenhahn  <[email protected]>
diff -r 88699a41798c -r 6983b5d4a18f NEWS.txt
--- a/NEWS.txt	Sat Aug 13 09:51:50 2022 -0500
+++ b/NEWS.txt	Mon Aug 15 14:17:25 2022 -0500
@@ -2424,7 +2424,7 @@
     provided test files which allowed us to find and fix security
     problems in the software.
 
-  * Hanno Böck provided test files which allowed us to find and fix
+  * Hanno Böck provided test files which allowed us to find and fix
     security problems in the software.
 
   * Tobias Ospelt provided test files and advice which allowed us to
@@ -4225,12 +4225,12 @@
     color transformation to be easily created and replicated on any
     number of images.  The algorithm is accessed by the -hald-clut
     option of 'convert' and 'mogrify'.  Original algorithm by Eskil
-    Steenberg and adapted for GraphicsMagick by Clément Follet, with
+    Steenberg and adapted for GraphicsMagick by Clément Follet, with
     additional work by Bob Friesenhahn.
 
   * Added support for the ASC CDL transform.  Available as -asc-cdl
     via the 'convert' and 'mogrify' subcommands.  Original
-    implementation by Clément Follet but considerably re-worked by Bob
+    implementation by Clément Follet but considerably re-worked by Bob
     Friesenhahn.  Implementation passes the +/- 1 count accuracy
     requirement required by the ASC CDL SOP tests.
 
diff -r 88699a41798c -r 6983b5d4a18f VisualMagick/installer/inc/version.isx
--- a/VisualMagick/installer/inc/version.isx	Sat Aug 13 09:51:50 2022 -0500
+++ b/VisualMagick/installer/inc/version.isx	Mon Aug 15 14:17:25 2022 -0500
@@ -10,5 +10,5 @@
 
 #define public MagickPackageName "GraphicsMagick"
 #define public MagickPackageVersion "1.4"
-#define public MagickPackageVersionAddendum ".020220813"
-#define public MagickPackageReleaseDate "snapshot-20220813"
+#define public MagickPackageVersionAddendum ".020220815"
+#define public MagickPackageReleaseDate "snapshot-20220815"
diff -r 88699a41798c -r 6983b5d4a18f magick/cdl.c
--- a/magick/cdl.c	Sat Aug 13 09:51:50 2022 -0500
+++ b/magick/cdl.c	Mon Aug 15 14:17:25 2022 -0500
@@ -4,7 +4,7 @@
  * American Society of Cinematographers Color Decision List (ASC-CDL)
  * implementation.
  *
- * Original implementation by Clément Follet.  Additional work by Bob
+ * Original implementation by Clément Follet.  Additional work by Bob
  * Friesenhahn.
  */
 
diff -r 88699a41798c -r 6983b5d4a18f magick/cdl.h
--- a/magick/cdl.h	Sat Aug 13 09:51:50 2022 -0500
+++ b/magick/cdl.h	Mon Aug 15 14:17:25 2022 -0500
@@ -4,7 +4,7 @@
  * American Society of Cinematographers Color Decision List (ASC-CDL)
  * implementation.
  *
- * Original implementation by Clément Follet.
+ * Original implementation by Clément Follet.
  */
 
 #ifndef _MAGICK_CDL_H
diff -r 88699a41798c -r 6983b5d4a18f magick/version.h
--- a/magick/version.h	Sat Aug 13 09:51:50 2022 -0500
+++ b/magick/version.h	Mon Aug 15 14:17:25 2022 -0500
@@ -38,8 +38,8 @@
 #define MagickLibVersion  0x272400
 #define MagickLibVersionText  "1.4"
 #define MagickLibVersionNumber 27,24,0
-#define MagickChangeDate   "20220813"
-#define MagickReleaseDate  "snapshot-20220813"
+#define MagickChangeDate   "20220815"
+#define MagickReleaseDate  "snapshot-20220815"
 
 /*
   The MagickLibInterfaceNewest and MagickLibInterfaceOldest defines
diff -r 88699a41798c -r 6983b5d4a18f www/ChangeLog-2009.html
--- a/www/ChangeLog-2009.html	Sat Aug 13 09:51:50 2022 -0500
+++ b/www/ChangeLog-2009.html	Mon Aug 15 14:17:25 2022 -0500
@@ -1038,7 +1038,7 @@
 <blockquote>
 <ul class="simple">
 <li>magick/cdl.c (CdlImage): New function to apply an ASC CDL
-transform to the image.  Original implementation by Clément Follet
+transform to the image.  Original implementation by Clément Follet
 from Workflowers but considerably re-worked by Bob Friesenhahn.
 Available as -asc-cdl via the <cite>convert</cite> and <cite>mogrify</cite> subcommands.</li>
 </ul>
diff -r 88699a41798c -r 6983b5d4a18f www/Changelog.html
--- a/www/Changelog.html	Sat Aug 13 09:51:50 2022 -0500
+++ b/www/Changelog.html	Mon Aug 15 14:17:25 2022 -0500
@@ -35,6 +35,13 @@
 <div class="document">
 
 
+<p>2022-08-15  Bob Friesenhahn  &lt;<a class="reference external" href="mailto:bfriesen&#37;&#52;&#48;simple&#46;dallas&#46;tx&#46;us">bfriesen<span>&#64;</span>simple<span>&#46;</span>dallas<span>&#46;</span>tx<span>&#46;</span>us</a>&gt;</p>
+<blockquote>
+<ul class="simple">
+<li>Fix UTF-8 encoding errors in some text and source files.  A few
+more issues remain.  Assistance is appreciated.</li>
+</ul>
+</blockquote>
 <p>2022-08-13  Bob Friesenhahn  &lt;<a class="reference external" href="mailto:bfriesen&#37;&#52;&#48;simple&#46;dallas&#46;tx&#46;us">bfriesen<span>&#64;</span>simple<span>&#46;</span>dallas<span>&#46;</span>tx<span>&#46;</span>us</a>&gt;</p>
 <blockquote>
 <ul class="simple">
diff -r 88699a41798c -r 6983b5d4a18f www/NEWS.html
--- a/www/NEWS.html	Sat Aug 13 09:51:50 2022 -0500
+++ b/www/NEWS.html	Mon Aug 15 14:17:25 2022 -0500
@@ -3692,7 +3692,7 @@
 color transformation to be easily created and replicated on any
 number of images.  The algorithm is accessed by the -hald-clut
 option of 'convert' and 'mogrify'.  Original algorithm by Eskil
-Steenberg and adapted for GraphicsMagick by Clément Follet, with
+Steenberg and adapted for GraphicsMagick by Clément Follet, with
 additional work by Bob Friesenhahn.</li>
 <li>Added support for the ASC CDL transform.  Available as -asc-cdl
 via the 'convert' and 'mogrify' subcommands.  Original
diff -r 88699a41798c -r 6983b5d4a18f www/authors.html
--- a/www/authors.html	Sat Aug 13 09:51:50 2022 -0500
+++ b/www/authors.html	Mon Aug 15 14:17:25 2022 -0500
@@ -146,7 +146,7 @@
 <dt>Richard Nolde</dt>
 <dd>Contributed code for converting between native floating
 point types, and short (16/24) bit float types.</dd>
-<dt>Clément Follet</dt>
+<dt>Clément Follet</dt>
 <dd>Contributed Hald CLUT and ASC-CDL implementations.</dd>
 <dt>John Sergeant</dt>
 <dd>Re-wrote the HP PCL writer to work much better,
diff -r 88699a41798c -r 6983b5d4a18f www/authors.rst
--- a/www/authors.rst	Sat Aug 13 09:51:50 2022 -0500
+++ b/www/authors.rst	Mon Aug 15 14:17:25 2022 -0500
@@ -131,7 +131,7 @@
                 Contributed code for converting between native floating
                 point types, and short (16/24) bit float types.
 
-Clément Follet
+Clément Follet
                 Contributed Hald CLUT and ASC-CDL implementations.
 
 John Sergeant
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.