GraphicsMagick: Update VisualMagick configure welcome text based...

GraphicsMagick Commits <[email protected]> Sun, 17 Sep 2023 11:47:30 -0500
Newsgroups gmane.comp.video.graphicsmagick.cvs
Message-ID <mailman.1296.1694969258.1462.graphicsmagick-commit@lists.sourceforge.net>
changeset 9289a384e55a in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=9289a384e55a
summary: Update VisualMagick configure welcome text based on my current understanding

diffstat:

 ChangeLog                               |   7 ++++-
 VisualMagick/configure/welcome_page.cpp |  46 +++++++++++++++++++-------------
 VisualMagick/installer/inc/version.isx  |   4 +-
 magick/version.h                        |   4 +-
 www/Changelog.html                      |  16 +++++++++++
 5 files changed, 53 insertions(+), 24 deletions(-)

diffs (130 lines):

diff -r b2b0efbb0e26 -r 9289a384e55a ChangeLog
--- a/ChangeLog	Sun Sep 17 11:39:23 2023 +0200
+++ b/ChangeLog	Sun Sep 17 11:47:28 2023 -0500
@@ -1,5 +1,10 @@
+2023-09-17  Bob Friesenhahn  <[email protected]>
+
+	* VisualMagick/configure/welcome_page.cpp: Update configure
+	welcome text based on my current understanding.
+
 2023-09-17  Fojtik Jaroslav  <[email protected]>
-	* VisualMagick/configure/welcome_page.cpp Notify user that MSVC 
+	* VisualMagick/configure/welcome_page.cpp Notify user that MSVC
 	older than 2008 is not supported.
 
 	* VisualMagick/magick/magick_config.h.in Expose ENABLE_SVG_WRITER.
diff -r b2b0efbb0e26 -r 9289a384e55a VisualMagick/configure/welcome_page.cpp
--- a/VisualMagick/configure/welcome_page.cpp	Sun Sep 17 11:39:23 2023 +0200
+++ b/VisualMagick/configure/welcome_page.cpp	Sun Sep 17 11:47:28 2023 -0500
@@ -47,28 +47,27 @@
 {
 	CPropertyPage::OnInitDialog();
 
-	m_welcomeText  = "Welcome!\n\n";
-	
-	m_welcomeText += "This is the VisualMagick configuration wizard. It will help you set up ";
-	m_welcomeText += "your build environment and customize the build process for your needs. ";
-	m_welcomeText += "It's purpose is to create Visual Studio 6.0 project (DSP) and ";
- 	m_welcomeText += "workspace (DSW) files, or Visual Studio 7.0 solution (SLN) and ";
- 	m_welcomeText += "project files (VCPROJ).\n\n";
-
-	m_welcomeText += "When the build environment has been created you can build the system in ";
-	m_welcomeText += "the Visual Studio IDE.\n\n";
-
-	m_welcomeText += "NOTE: You cannot compile GraphicsMagick with Visual Studio older than 2008. ";
-	m_welcomeText += "Support for Visual Studio 6.0 is not possible. ";
-	m_welcomeText += "VS7 has been out for a year now and all current work takes place in this";
-	m_welcomeText += "environment.\n\n";
-
-	m_welcomeText += "Good Luck - and thanks for all the fish!";
+	m_welcomeText  =
+	"Welcome!\n"
+	"\n"
+	"This is the VisualMagick configuration wizard. It will set up your "
+	"GraphicsMagick build environment and customize the build process "
+	"for your needs. It's purpose is to create Visual Studio 2003 solution "
+	"(SLN) and project files (VCPROJ) which are upgraded using the version "
+	"of Visual Studio actually used.\n"
+	"\n"
+	"When the build environment has been created and upgraded, you can build "
+	"the system in the Visual Studio IDE.\n"
+	"\n"
+	"NOTE: You cannot compile GraphicsMagick with Visual Studio older than "
+	"2008 and Visual Studio 2013 or later is required to compile 64 bit code.\n"
+	"\n"
+	"Good Luck - and thanks for all the fish!";
 
 	UpdateData(FALSE);
-	
+
 	return TRUE;  // return TRUE unless you set the focus to a control
-	              // EXCEPTION: OCX Property Pages should return FALSE
+	// EXCEPTION: OCX Property Pages should return FALSE
 }
 
 BOOL CWelcomePage::OnSetActive() 
@@ -78,3 +77,12 @@
 	
 	return CPropertyPage::OnSetActive();
 }
+
+// vim: set ts=8 sts=8 sw=8 noet:
+
+// Local Variables:
+// mode: c
+// c-basic-offset: 8
+// fill-column: 78
+// indent-tabs-mode: true
+// End:
diff -r b2b0efbb0e26 -r 9289a384e55a VisualMagick/installer/inc/version.isx
--- a/VisualMagick/installer/inc/version.isx	Sun Sep 17 11:39:23 2023 +0200
+++ b/VisualMagick/installer/inc/version.isx	Sun Sep 17 11:47:28 2023 -0500
@@ -10,5 +10,5 @@
 
 #define public MagickPackageName "GraphicsMagick"
 #define public MagickPackageVersion "1.4"
-#define public MagickPackageVersionAddendum ".020230916"
-#define public MagickPackageReleaseDate "snapshot-20230916"
+#define public MagickPackageVersionAddendum ".020230917"
+#define public MagickPackageReleaseDate "snapshot-20230917"
diff -r b2b0efbb0e26 -r 9289a384e55a magick/version.h
--- a/magick/version.h	Sun Sep 17 11:39:23 2023 +0200
+++ b/magick/version.h	Sun Sep 17 11:47:28 2023 -0500
@@ -38,8 +38,8 @@
 #define MagickLibVersion  0x272403
 #define MagickLibVersionText  "1.4"
 #define MagickLibVersionNumber 27,24,3
-#define MagickChangeDate   "20230916"
-#define MagickReleaseDate  "snapshot-20230916"
+#define MagickChangeDate   "20230917"
+#define MagickReleaseDate  "snapshot-20230917"
 
 /*
   The MagickLibInterfaceNewest and MagickLibInterfaceOldest defines
diff -r b2b0efbb0e26 -r 9289a384e55a www/Changelog.html
--- a/www/Changelog.html	Sun Sep 17 11:39:23 2023 +0200
+++ b/www/Changelog.html	Sun Sep 17 11:47:28 2023 -0500
@@ -37,7 +37,23 @@
 </div>
 
 <div class="document">
+<p>2023-09-17  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><p>VisualMagick/configure/welcome_page.cpp: Update configure
+welcome text based on my current understanding.</p></li>
+</ul>
+</blockquote>
 <dl class="simple">
+<dt>2023-09-17  Fojtik Jaroslav  &lt;<a class="reference external" href="mailto:JaFojtik&#37;&#52;&#48;yandex&#46;com">JaFojtik<span>&#64;</span>yandex<span>&#46;</span>com</a>&gt;</dt>
+<dd><ul class="simple">
+<li><p>VisualMagick/configure/welcome_page.cpp Notify user that MSVC
+older than 2008 is not supported.</p></li>
+<li><p>VisualMagick/magick/magick_config.h.in Expose ENABLE_SVG_WRITER.
+For debugging purpose this should be always enabled. Only for
+final release you can disable it.</p></li>
+</ul>
+</dd>
 <dt>2023-09-16  Fojtik Jaroslav  &lt;<a class="reference external" href="mailto:JaFojtik&#37;&#52;&#48;yandex&#46;com">JaFojtik<span>&#64;</span>yandex<span>&#46;</span>com</a>&gt;</dt>
 <dd><ul class="simple">
 <li><p>coders/mat.c Cleanup one unneeded warning.</p></li>