...
diff --git a/MagickCore/magick.c b/MagickCore/magick.c
index dc16b72..e6e3acf 100644
--- a/MagickCore/magick.c
+++ b/MagickCore/magick.c
@@ -1500,6 +1500,9 @@
   */
   (void) ConfigureComponentGenesis();
   (void) PolicyComponentGenesis();
+#if defined(MAGICKCORE_ZERO_CONFIGURATION_SUPPORT)
+  (void) ZeroConfigurationPolicy;
+#endif
   (void) CacheComponentGenesis();
   (void) ResourceComponentGenesis();
   (void) CoderComponentGenesis();
diff --git a/MagickCore/policy-private.h b/MagickCore/policy-private.h
index 63683b5..b81adec 100644
--- a/MagickCore/policy-private.h
+++ b/MagickCore/policy-private.h
@@ -22,6 +22,18 @@
 extern "C" {
 #endif
 
+#if defined(MAGICKCORE_ZERO_CONFIGURATION_SUPPORT)
+/*
+  Zero configuration security policy.  Discussion @
+  https://www.imagemagick.org/script/security-policy.php.
+*/
+static const char
+  *ZeroConfigurationPolicy = \
+"<policymap> \
+  <policy domain=\"system\" name=\"precision\" value=\"6\"/> \
+</policymap>";
+#endif
+
 extern MagickPrivate MagickBooleanType
   PolicyComponentGenesis(void);
 
diff --git a/configure b/configure
index 7eff410..7666197 100755
--- a/configure
+++ b/configure
@@ -4519,7 +4519,7 @@
 
 MAGICK_VERSION=7.0.5-7
 
-MAGICK_GIT_REVISION=20041:16a4635:20170513
+MAGICK_GIT_REVISION=20043:448775d:20170514
 
 
 # Substitute library versioning
diff --git a/www/ImageMagickObject.html b/www/ImageMagickObject.html
index a528aa6..2f79c7d 100644
--- a/www/ImageMagickObject.html
+++ b/www/ImageMagickObject.html
@@ -130,4 +130,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:54 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index 5cb34b4..0b4a078 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -78,7 +78,7 @@
 
 <p>The configure script looks at your environment and decides what it can cobble together to get ImageMagick compiled and installed on your system.  This includes finding a compiler, where your compiler header files are located (e.g. stdlib.h), and if any delegate libraries are available for ImageMagick to use (e.g. JPEG, PNG, TIFF, etc.).  If you are willing to accept configure's default options, and build from within the source directory, you can simply type:</p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-4</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>./configure</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-6</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>./configure</span></pre>
 <p>Watch the configure script output to verify that it finds everything that
  you think it should.  Pay particular attention to the last lines of the script output.  For example, here is a recent report from our system:</p>
 
@@ -534,7 +534,7 @@
 
 	  <p><a href="download.html">Download</a> the ImageMagick source distribution and verify the distribution against its <a href="https://www.imagemagick.org/download/digest.rdf">message digest</a>.</p>
 	  <p>Unpack and change into the top-level ImageMagick directory:</p>
-		<pre><span class="crtprompt"> </span><span class='crtin'>tar xvzf ImageMagick-7.0.5-4.tar.gz</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-4</span></pre>	  <p>Configure ImageMagick:</p>
+		<pre><span class="crtprompt"> </span><span class='crtin'>tar xvzf ImageMagick-7.0.5-6.tar.gz</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-6</span></pre>	  <p>Configure ImageMagick:</p>
 <pre>
 ./configure --prefix=/opt --with-quantum-depth=16 \
   --disable-dependency-tracking --with-x=yes \
@@ -566,7 +566,7 @@
 
 <p>Although you can download and install delegate libraries yourself, many are already available in the <a href="http://gnuwin32.sourceforge.net/">GnuWin32</a> distribution.  Download and install whichever delegate libraries you require such as JPEG, PNG, TIFF, etc.  Make sure you specify the development headers when you install a package.  Next type,</p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>tar jxvf ImageMagick-7.0.5-?.tar.bz2</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-4</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>./configure --without-perl</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>make</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>sudo make install</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>tar jxvf ImageMagick-7.0.5-?.tar.bz2</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-6</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>./configure --without-perl</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>make</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>sudo make install</span></pre>
 <h2 class="magick-header"><a id="problems"></a>Dealing with Unexpected Problems</h2>
 
 <p>Chances are the download, configure, build, and install of ImageMagick went flawlessly as it is intended, however, certain systems and environments may cause one or more steps to fail.  We discuss a few problems we've run across and how to take corrective action to ensure you have a working release of ImageMagick</p>
@@ -636,4 +636,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:32 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index c177f7c..1d365c0 100644
--- a/www/advanced-windows-installation.html
+++ b/www/advanced-windows-installation.html
@@ -331,7 +331,7 @@
 
 	<ol>
 	<li>Double-click on
-	<code>VisualMagick/bin/ImageMagick-7.0.5-4-Q16-windows-dll.exe</code>
+	<code>VisualMagick/bin/ImageMagick-7.0.5-6-Q16-windows-dll.exe</code>
 	to launch the ImageMagick binary distribution.</li>
 	<li>Complete the installer screens to install ImageMagick on your system.</li>
 	</ol>
@@ -401,4 +401,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:26 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/animate.html b/www/animate.html
index 6d2e994..0509be8 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -532,4 +532,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/architecture.html b/www/architecture.html
index 7b1863a..a2cbad5 100644
--- a/www/architecture.html
+++ b/www/architecture.html
@@ -135,7 +135,7 @@
 
 <p>When the pixel cache is initialized, pixels are scaled from whatever bit depth they originated from to that required by the pixel cache.  For example, a 1-channel 1-bit monochrome PBM image is scaled to 8-bit gray image, if you are using the Q8 version of ImageMagick, and 16-bit RGBA for the Q16 version.  You can determine which version you have with the <a href="command-line-options.html#version">&#x2011;version</a> option: </p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>identify -version</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>Version: ImageMagick 7.0.5-4 2017-03-18 Q16 https://www.imagemagick.org</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>identify -version</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>Version: ImageMagick 7.0.5-6 2017-05-18 Q16 https://www.imagemagick.org</span></pre>
 <p>As you can see, the convenience of the pixel cache sometimes comes with a trade-off in storage (e.g. storing a 1-bit monochrome image as 16-bit is wasteful) and speed (i.e. storing the entire image in memory is generally slower than accessing one scanline of pixels at a time).  In most cases, the benefits of the pixel cache typically outweigh any disadvantages.</p>
 
 <h3><a id="authentic-pixels"></a>Access the Pixel Cache</h3>
@@ -1423,4 +1423,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/changelog.html b/www/changelog.html
index 112cbef..91039de 100644
--- a/www/changelog.html
+++ b/www/changelog.html
@@ -56,7 +56,26 @@
   </div>
 </div>
 <div class="container">
-<div class="magick-header"><dl><dt>2017-03-24  7.0.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+<div class="magick-header"><dl><dt>2017-05-12  7.0.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-6, GIT revision 20039:9371904:20170512.</li>
+<dt>2017-05-10  7.0.5-6 John Cupitt &lt;jcupitt@gmail.com&gt;</dt>
+  <li> Revise DICOM window and rescale handling (reference     https://github.com/ImageMagick/ImageMagick/pull/484)</li>
+<dt>2017-05-06  7.0.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Restore the -alpha Shape option (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31879).</li>
+  <li> Fix transient PDF bug (reference    https://github.com/ImageMagick/ImageMagick/issues/463).</li>
+  <li> The +opaque option now works on all channels (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31862).</li>
+  <li> Ensure backwards compatibility for the -combine option (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31855).</li>
+  <li> Check for EOF conditions for RLE image format.</li>
+  <li> Reset histogram page geometry (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31920).</li>
+<dt>2017-04-24  7.0.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-5, GIT revision 19915:12eec43:20170424.</li>
+<dt>2017-03-26  7.0.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Minimize buffer copies to improve OpenCL performance.</li>
+  <li> Morphology thinning is no longer a no-op (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31650).</li>
+  <li> Patch two PCD writer problems, corrupt output and dark pixels (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=3164).</li>
+  <li> Support ICC based PDF's (reference    https://github.com/ImageMagick/ImageMagick/issues/417).</li>
+  <li> Fix improper EPS clip path rendering (reference    http://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31722).</li>
+<dt>2017-03-24  7.0.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Release ImageMagick version 7.0.5-4, GIT revision 19754:350fff3:20170324.</li>
 <dt>2017-03-21  7.0.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Respect -loop option for animate -window (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31619).</li>
@@ -64,7 +83,7 @@
   <li> Release ImageMagick version 7.0.5-3, GIT revision 19741:070c3fb:20170317.</li>
 <dt>2017-03-14  7.0.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Support namespaces for the security policy.</li>
-  <li> Support the -authenticate option for PDF (reference    Counting objects: 7, done.g/discourse-server/viewtopic.html?f=3&amp;t=31530).</li>
+  <li> Support the -authenticate option for PDF (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31530).</li>
 <dt>2017-03-11  7.0.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Release ImageMagick version 7.0.5-2, GIT revision 19696:da91a7c:20170311.</li>
 <dt>2017-03-06  7.0.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
@@ -375,4 +394,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:33 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/cipher.html b/www/cipher.html
index bff28c5..83d2540 100644
--- a/www/cipher.html
+++ b/www/cipher.html
@@ -140,4 +140,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/color-management.html b/www/color-management.html
index a8357f9..6ce1862 100644
--- a/www/color-management.html
+++ b/www/color-management.html
@@ -150,4 +150,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/color.html b/www/color.html
index 9c95c0c..02ee047 100644
--- a/www/color.html
+++ b/www/color.html
@@ -4951,4 +4951,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/command-line-options.html b/www/command-line-options.html
index c51ff66..bd6ec4d 100644
--- a/www/command-line-options.html
+++ b/www/command-line-options.html
@@ -1330,6 +1330,7 @@
 
 <div style="margin: auto;">
   <h3 class="magick-header"><a id="combine"></a>-combine</h3>
+  <h3 class="magick-header">+combine <var>colorspace</var></h3>
 </div>
 
 <p class="magick-description">Combine one or more images into a single image.</p>
@@ -8094,4 +8095,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index 44316f1..ac3b192 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -688,4 +688,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:35 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 2bff4a3..2601f66 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -107,4 +107,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:36 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/compare.html b/www/compare.html
index 7265d15..e0bffaf 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -365,4 +365,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:56 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/compose.html b/www/compose.html
index 86068e5..925fece 100644
--- a/www/compose.html
+++ b/www/compose.html
@@ -644,4 +644,3 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:59 -->
\ No newline at end of file
diff --git a/www/composite.html b/www/composite.html
index ac5c8e7..268e4fa 100644
--- a/www/composite.html
+++ b/www/composite.html
@@ -526,4 +526,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/conjure.html b/www/conjure.html
index 87f149d..195c922 100644
--- a/www/conjure.html
+++ b/www/conjure.html
@@ -1138,4 +1138,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 18:20 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/connected-components.html b/www/connected-components.html
index 262c33a..0dfb001 100644
--- a/www/connected-components.html
+++ b/www/connected-components.html
@@ -121,4 +121,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/convert.html b/www/convert.html
index 55b6564..954f697 100644
--- a/www/convert.html
+++ b/www/convert.html
@@ -1322,4 +1322,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:19 -->
\ No newline at end of file
diff --git a/www/develop.html b/www/develop.html
index 936255c..2ad74cc 100644
--- a/www/develop.html
+++ b/www/develop.html
@@ -103,6 +103,7 @@
   <dt><a id="lua"></a>Lua</dt>
 
 <dd><a href="https://github.com/leafo/magick">Lua</a> bindings to ImageMagick for LuaJIT using FFI.</dd>
+<dd><a href="https://github.com/isage/lua-imagick">Lua</a> bindings to ImageMagick for Lua using pure-C.</dd>
 
   <dt><a id="neko"></a>Neko</dt>
 
@@ -185,4 +186,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:36 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/display.html b/www/display.html
index 006b22f..03475e5 100644
--- a/www/display.html
+++ b/www/display.html
@@ -569,4 +569,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/distribute-pixel-cache.html b/www/distribute-pixel-cache.html
index 6be1855..2654de4 100644
--- a/www/distribute-pixel-cache.html
+++ b/www/distribute-pixel-cache.html
@@ -89,4 +89,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/download.html b/www/download.html
index 55af15b..b028344 100644
--- a/www/download.html
+++ b/www/download.html
@@ -76,16 +76,16 @@
   </tr>
 
   <tr>
-      <td>ImageMagick-7.0.5-4.x86_64.rpm</td>
-      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-7.0.5-4.x86_64.rpm">download</a></td>
-    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-7.0.5-4.x86_64.rpm">download</a></td>
+      <td>ImageMagick-7.0.5-6.x86_64.rpm</td>
+      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-7.0.5-6.x86_64.rpm">download</a></td>
+    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-7.0.5-6.x86_64.rpm">download</a></td>
     <td>Redhat / CentOS 7.1 x86_64 RPM</td>
   </tr>
 
   <tr>
-      <td>ImageMagick-libs-7.0.5-4.x86_64.rpm</td>
-      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-4.x86_64.rpm">download</a></td>
-    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-4.x86_64.rpm">download</a></td>
+      <td>ImageMagick-libs-7.0.5-6.x86_64.rpm</td>
+      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-6.x86_64.rpm">download</a></td>
+    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-6.x86_64.rpm">download</a></td>
     <td>Redhat / CentOS 7.1 x86_64 RPM</td>
   </tr>
 
@@ -122,8 +122,8 @@
 
 <p>ImageMagick RPM's are self-installing.  Simply type the following command and you're ready to start using ImageMagick:</p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-7.0.5-4.x86_64.rpm</span></pre><p>You'll need the libraries as well:</p>
-<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-libs-7.0.5-4.x86_64.rpm</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-7.0.5-6.x86_64.rpm</span></pre><p>You'll need the libraries as well:</p>
+<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-libs-7.0.5-6.x86_64.rpm</span></pre>
 <p>For other systems, create (or choose) a directory to install the package into and change to that directory, for example:</p>
 
 <pre>
@@ -258,7 +258,7 @@
 <pre>
 ./imagemagick_compile.sh <var>VERSION</var>
 </pre>
-<p>where <var>VERSION</var> is the version of ImageMagick you want to compile (i.e.: 7.0.5-4, svn, ...)</p>
+<p>where <var>VERSION</var> is the version of ImageMagick you want to compile (i.e.: 7.0.5-6, svn, ...)</p>
 
 <p>This script compiles ImageMagick as a static library to be included in iOS projects and adds support for</p>
 <ul>
@@ -307,9 +307,9 @@
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x64-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-x64-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-x64-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-x64-dll.exe">download</a></td>
     <td>Win64 dynamic at 16 bits-per-pixel component</td>
   </tr>
 </table></div>
@@ -327,93 +327,93 @@
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x64-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-x64-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-x64-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-x64-static.exe">download</a></td>
    <td>Win64 static at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q8-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x64-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q8-x64-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q8-x64-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q8-x64-dll.exe">download</a></td>
    <td>Win64 dynamic at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q8-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x64-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q8-x64-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q8-x64-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q8-x64-static.exe">download</a></td>
     <td>Win64 static at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-HDRI-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-HDRI-x64-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x64-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x64-dll.exe">download</a></td>
     <td>Win64 dynamic at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-HDRI-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-HDRI-x64-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x64-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x64-static.exe">download</a></td>
     <td>Win64 static at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x86-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-x86-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-x86-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-x86-dll.exe">download</a></td>
     <td>Win32 dynamic at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x86-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-x86-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-x86-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-x86-static.exe">download</a></td>
     <td>Win32 static at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q8-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x86-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q8-x86-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q8-x86-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q8-x86-dll.exe">download</a></td>
     <td>Win32 dynamic at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q8-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x86-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q8-x86-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q8-x86-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q8-x86-static.exe">download</a></td>
     <td>Win32 static at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-HDRI-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-HDRI-x86-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x86-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x86-dll.exe">download</a></td>
     <td>Win32 dynamic at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-Q16-HDRI-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-6-Q16-HDRI-x86-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x86-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-Q16-HDRI-x86-static.exe">download</a></td>
     <td>Win32 static at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-portable-Q16-x86.zip</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-portable-Q16-x86.zip">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-portable-Q16-x86.zip">download</a></td>
+        <td>ImageMagick-7.0.5-6-portable-Q16-x86.zip</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-portable-Q16-x86.zip">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-portable-Q16-x86.zip">download</a></td>
     <td>Portable Win32 static at 16 bits-per-pixel component.  Just copy to your host and run (no installer, no Windows registry entries).</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-4-portable-Q16-x64.zip</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-portable-Q16-x64.zip">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-portable-Q16-x64.zip">download</a></td>
+        <td>ImageMagick-7.0.5-6-portable-Q16-x64.zip</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-6-portable-Q16-x64.zip">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-6-portable-Q16-x64.zip">download</a></td>
     <td>Portable Win64 static at 16 bits-per-pixel component.  Just copy to your host and run (no installer, no Windows registry entries).</td>
   </tr>
 </table></div>
@@ -464,4 +464,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:19 -->
\ No newline at end of file
diff --git a/www/escape.html b/www/escape.html
index 5753c6b..a80b9b9 100644
--- a/www/escape.html
+++ b/www/escape.html
@@ -887,4 +887,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/examples.html b/www/examples.html
index 46b80f0..30a17b3 100644
--- a/www/examples.html
+++ b/www/examples.html
@@ -80,4 +80,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/exception.html b/www/exception.html
index 1c0a7ae..c60489c 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -269,4 +269,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:41 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/export.html b/www/export.html
index ad09d51..e8b4452 100644
--- a/www/export.html
+++ b/www/export.html
@@ -80,4 +80,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 18:26 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/formats.html b/www/formats.html
index 70ac81c..347bc65 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -1032,7 +1032,7 @@
     <td><a href="http://www.w3.org/Graphics/SVG">SVG</a></td>
     <td>RW</td>
     <td>Scalable Vector Graphics</td>
-    <td>ImageMagick utilizes <a href="http://www.inkscape.org/">inkscape</a> if its in your execution path otherwise <a href="http://developer.gnome.org/rsvg/">RSVG</a>. If neither are available, ImageMagick reverts to its internal SVG renderer. The default resolution is 90 DPI. Use <a href="command-line-options.html#size">-size</a> command line option to specify the maximum width and height.</td>
+    <td>ImageMagick utilizes <a href="http://www.inkscape.org/">inkscape</a> if its in your execution path otherwise <a href="http://developer.gnome.org/rsvg/">RSVG</a>. If neither are available, ImageMagick reverts to its internal SVG renderer. The default resolution is 96 DPI. Use <a href="command-line-options.html#size">-size</a> command line option to specify the maximum width and height.</td>
   </tr>
 
   <tr>
@@ -1967,4 +1967,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/fx.html b/www/fx.html
index b3e8474..eb094fc 100644
--- a/www/fx.html
+++ b/www/fx.html
@@ -420,4 +420,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/gradient.html b/www/gradient.html
index c6cfb10..809356a 100644
--- a/www/gradient.html
+++ b/www/gradient.html
@@ -241,4 +241,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/high-dynamic-range.html b/www/high-dynamic-range.html
index 14c488f..ecd3060 100644
--- a/www/high-dynamic-range.html
+++ b/www/high-dynamic-range.html
@@ -107,4 +107,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/history.html b/www/history.html
index e415a73..9d698ca 100644
--- a/www/history.html
+++ b/www/history.html
@@ -97,4 +97,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 18:26 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/identify.html b/www/identify.html
index 4dd5d6d..76600c8 100644
--- a/www/identify.html
+++ b/www/identify.html
@@ -429,4 +429,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:37 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:19 -->
\ No newline at end of file
diff --git a/www/import.html b/www/import.html
index 5d2f138..e96dc1a 100644
--- a/www/import.html
+++ b/www/import.html
@@ -427,4 +427,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/index.html b/www/index.html
index 93d1c81..47bdfaf 100644
--- a/www/index.html
+++ b/www/index.html
@@ -68,7 +68,7 @@
 
 <p>The ImageMagick development process ensures a stable API and <a href="http://abi-laboratory.pro/tracker/timeline/imagemagick/">ABI</a>. Before each ImageMagick release, we perform a comprehensive security assessment that includes <a href="https://github.com/google/sanitizers/wiki/AddressSanitizer">memory error</a> and <a href="https://github.com/google/sanitizers/wiki/ThreadSanitizer">thread data race</a> detection to prevent security vulnerabilities.</p>
 
-<p>The current release is ImageMagick <a href="https://www.imagemagick.org/script/download.html">7.0.5-4</a>.  It runs on <a href="https://www.imagemagick.org/script/download.html#unix">Linux</a>, <a href="https://www.imagemagick.org/script/download.html#windows">Windows</a>, <a href="https://www.imagemagick.org/script/download.html#macosx">Mac Os X</a>, <a href="https://www.imagemagick.org/script/download.html#iOS">iOS</a>, Android OS, and others.</p>
+<p>The current release is ImageMagick <a href="https://www.imagemagick.org/script/download.html">7.0.5-6</a>.  It runs on <a href="https://www.imagemagick.org/script/download.html#unix">Linux</a>, <a href="https://www.imagemagick.org/script/download.html#windows">Windows</a>, <a href="https://www.imagemagick.org/script/download.html#macosx">Mac Os X</a>, <a href="https://www.imagemagick.org/script/download.html#iOS">iOS</a>, Android OS, and others.</p>
 
 <p>The authoritative ImageMagick web site is <a href="https://www.imagemagick.org/">https://www.imagemagick.org</a>. The authoritative source code repository is <a href="http://git.imagemagick.org/repos/ImageMagick">http://git.imagemagick.org/repos/ImageMagick</a>.  We maintain a source code mirror at <a href="https://gitlab.com/ImageMagick/ImageMagick">GitLab</a> and <a href="https://github.com/ImageMagick/ImageMagick">GitHub</a>.</p>
 
@@ -239,4 +239,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:19 -->
\ No newline at end of file
diff --git a/www/install-source.html b/www/install-source.html
index 2bad937..b52bbc1 100644
--- a/www/install-source.html
+++ b/www/install-source.html
@@ -162,4 +162,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/jp2.html b/www/jp2.html
index e5ed762..b11a781 100644
--- a/www/jp2.html
+++ b/www/jp2.html
@@ -164,4 +164,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:35 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/license.html b/www/license.html
index 5d4efef..6326654 100644
--- a/www/license.html
+++ b/www/license.html
@@ -203,4 +203,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:05 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/links.html b/www/links.html
index 3067fb6..5f33507 100644
--- a/www/links.html
+++ b/www/links.html
@@ -163,4 +163,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/magick++.html b/www/magick++.html
index 953dbf3..8737f31 100644
--- a/www/magick++.html
+++ b/www/magick++.html
@@ -88,7 +88,7 @@
 <h2 class="magick-header">Obtaining Magick++</h2>
 <a id="get"></a>
 <p>Magick++ is included as part of <a href="../index.html">ImageMagick</a>
-source releases and may be retrieved via <a href="https://www.imagemagick.org/script/mirror.html">ftp</a>
+source releases and may be retrieved via <a href="https://www.imagemagick.org/script/download.html">ftp</a>
 or <a href="http://git.imagemagick.org/repos/ImageMagick/Magick++">GIT</a>.
 </p>
 <h2 class="magick-header">Installation</h2>
@@ -187,4 +187,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 18:21 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/magick-core.html b/www/magick-core.html
index a37e156..d8e6950 100644
--- a/www/magick-core.html
+++ b/www/magick-core.html
@@ -337,4 +337,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:43 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/magick-script.html b/www/magick-script.html
index 6a30bce..637b18a 100644
--- a/www/magick-script.html
+++ b/www/magick-script.html
@@ -1282,4 +1282,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 17:02 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/magick-vector-graphics.html b/www/magick-vector-graphics.html
index 31f349b..c91f478 100644
--- a/www/magick-vector-graphics.html
+++ b/www/magick-vector-graphics.html
@@ -881,4 +881,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:17 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/magick-wand.html b/www/magick-wand.html
index bedc29a..932666b 100644
--- a/www/magick-wand.html
+++ b/www/magick-wand.html
@@ -362,7 +362,7 @@
   return(0);
 }
 </pre>
-<p><a href="http://members.shaw.ca/el.supremo/MagickWand/">MagickWand Examples in C</a> illustrates how to use the ImageMagick MagickWand API. Each example is presented as a C function, complete with headers, so that it can be copied to a file and then included in your own C project.</p>
+<p><a href="../MagickWand/index.html">MagickWand Examples in C</a> illustrates how to use the ImageMagick MagickWand API. Each example is presented as a C function, complete with headers, so that it can be copied to a file and then included in your own C project.</p>
 </div>
   <footer class="magick-footer">
     <p><a href="support.html">Donate</a> •
@@ -383,4 +383,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/magick.html b/www/magick.html
index 0a6834b..3cec1ac 100644
--- a/www/magick.html
+++ b/www/magick.html
@@ -1324,4 +1324,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:52 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/miff.html b/www/miff.html
index 92f357f..c0abab8 100644
--- a/www/miff.html
+++ b/www/miff.html
@@ -245,4 +245,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 18:07 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/mirror.html b/www/mirror.html
index d6e61cf..0da3cc7 100644
--- a/www/mirror.html
+++ b/www/mirror.html
@@ -58,7 +58,7 @@
 <div class="container">
 <div class="magick-header">
 <p class="lead magick-description">ImageMagick source and binary distributions are available from a variety of FTP and Web mirrors around the world listed below.  ImageMagick stable and development source releases are also available from <a href="http://git.imagemagick.org/repos/ImageMagick">Git</a>.  Before you download, you may want to review recent <a href="changelog.html">changes</a> to the ImageMagick distribution.  The authoritative source code repository is <a href="http://git.imagemagick.org/repos/ImageMagick">http://git.imagemagick.org/repos/ImageMagick</a>.</p>
-<p>The latest release of ImageMagick is version 7.0.5-4.</p>
+<p>The latest release of ImageMagick is version 7.0.5-6.</p>
 <dl class="dl-horizontal">
   <dt>Germany</dt>
     <dd><a href="http://mirror.checkdomain.de/imagemagick/">http://mirror.checkdomain.de/imagemagick/</a></dd>
@@ -115,4 +115,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/mogrify.html b/www/mogrify.html
index b4b5505..09179d5 100644
--- a/www/mogrify.html
+++ b/www/mogrify.html
@@ -1297,4 +1297,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:41 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/montage.html b/www/montage.html
index 1669169..588c5e2 100644
--- a/www/montage.html
+++ b/www/montage.html
@@ -638,4 +638,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/motion-picture.html b/www/motion-picture.html
index 4b1619c..487b7f9 100644
--- a/www/motion-picture.html
+++ b/www/motion-picture.html
@@ -194,4 +194,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/opencl.html b/www/opencl.html
index f31dd0f..ea8913a 100644
--- a/www/opencl.html
+++ b/www/opencl.html
@@ -122,4 +122,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/openmp.html b/www/openmp.html
index 18179e5..03a3b00 100644
--- a/www/openmp.html
+++ b/www/openmp.html
@@ -101,4 +101,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/perl-magick.html b/www/perl-magick.html
index e4a5fd7..89dfa84 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -60,7 +60,7 @@
 <p class="text-center"><a href="perl-magick.html#installation">Installation</a> • <a href="perl-magick.html#overview">Overview</a> • <a href="perl-magick.html#example">Example Script</a> • <a href="perl-magick.html#read">Read or Write an Image</a> • <a href="perl-magick.html#manipulate">Manipulate an Image</a> • <a href="perl-magick.html#set-attribute">Set an Image Attribute</a> • <a href="perl-magick.html#get-attribute">Get an Image Attribute</a> • <a href="perl-magick.html#compare">Compare an Image to its Reconstruction</a> • <a href="perl-magick.html#montage">Create an Image Montage</a> • <a href="perl-magick.html#blobs">Working with Blobs</a> • <a href="perl-magick.html#direct-access">Direct-access to Image Pixels</a> • <a href="perl-magick.html#miscellaneous">Miscellaneous Methods</a> • <a href="perl-magick.html#exceptions">Handling Exceptions</a>• <a href="perl-magick.html#constants">Constant</a> </p>
 
 <a id="introduction"></a>
-<p class="lead magick-description"><a href="mirror.html">PerlMagick</a> is an objected-oriented <a href="http://www.perl.com/perl/">Perl</a> interface to ImageMagick. Use the module to read, manipulate, or write an image or image sequence from within a Perl script. This makes it very suitable for Web CGI scripts. You must have ImageMagick 6.5.5 or above and Perl version 5.005_02 or greater installed on your system for PerlMagick to build properly.</p>
+<p class="lead magick-description"><a href="download.html">PerlMagick</a> is an objected-oriented <a href="http://www.perl.com/perl/">Perl</a> interface to ImageMagick. Use the module to read, manipulate, or write an image or image sequence from within a Perl script. This makes it very suitable for Web CGI scripts. You must have ImageMagick 6.5.5 or above and Perl version 5.005_02 or greater installed on your system for PerlMagick to build properly.</p>
 
 <p>There are a number of useful scripts available to show you the value of PerlMagick. You can do Web based image manipulation and conversion with <a href="https://www.imagemagick.org/download/perl">MagickStudio</a>, or use <a href="http://git.imagemagick.org/repos/ImageMagick/PerlMagick/demo">L-systems</a> to create images of plants using mathematical constructs, and finally navigate through collections of thumbnail images and select the image to view with the <a href="http://webmagick.sourceforge.net/">WebMagick Image Navigator</a>.</p>
 
@@ -110,7 +110,7 @@
 
 <p><b>Windows XP / Windows 2000</b></p>
 
-<p>ImageMagick must already be installed on your system. Also, the ImageMagick source distribution for <a href="mirror.html">Windows 2000</a> is required. You must also have the <code>nmake</code> from the Visual C++ or J++ development environment. Copy <code>\bin\IMagick.dll</code> and <code>\bin\X11.dll</code> to a directory in your dynamic load path such as <code>c:\perl\site\5.00502</code>.</p>
+<p>ImageMagick must already be installed on your system. Also, the ImageMagick source distribution for <a href="download.html">Windows 2000</a> is required. You must also have the <code>nmake</code> from the Visual C++ or J++ development environment. Copy <code>\bin\IMagick.dll</code> and <code>\bin\X11.dll</code> to a directory in your dynamic load path such as <code>c:\perl\site\5.00502</code>.</p>
 
 <p>Next, type</p>
 
@@ -581,8 +581,7 @@
   <tr>
     <td>ConnectedComponents</td>
     <td>connectivity=&gt;<i>integer</i>,</td>
-    <td>connected-components uniquely labeled, choose from 4 or 8 w
-ay connectivity.</td>
+    <td>connected-components uniquely labeled, choose from 4 or 8 way connectivity.</td>
   </tr>
 
   <tr>
@@ -610,13 +609,6 @@
   </tr>
 
   <tr>
-    <td>ConnectedComponents</td>
-    <td>connectivity=&gt;<i>integer</i>,</td>
-    <td>connected-components uniquely labeled, choose from 4 or 8 w
-ay connectivity.</td>
-  </tr>
-
-  <tr>
     <td>Crop</td>
     <td>geometry=&gt;<i>geometry</i>, width=&gt;<i>integer</i>, height=&gt;<i>integer</i>, x=&gt;<i>integer</i>, y=&gt;<i>integer</i>, fuzz=&gt;<i>double</i>, gravity=&gt;{NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast}</td>
     <td>crop an image</td>
@@ -2611,4 +2603,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/porting.html b/www/porting.html
index 432d636..5418c80 100644
--- a/www/porting.html
+++ b/www/porting.html
@@ -664,4 +664,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/quantize.html b/www/quantize.html
index 6d1a2a8..911bb59 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -202,4 +202,3 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 18:27 -->
\ No newline at end of file
diff --git a/www/resources.html b/www/resources.html
index a3f6f12..5c1aeb4 100644
--- a/www/resources.html
+++ b/www/resources.html
@@ -383,4 +383,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/security-policy.html b/www/security-policy.html
index cb89b9c..34c3425 100644
--- a/www/security-policy.html
+++ b/www/security-policy.html
@@ -57,12 +57,12 @@
 </div>
 <div class="container">
 <div class="magick-header">
-<p class="text-center"><a href="security-policy.html#policy">Security Policy </a> • <a href="security-policy.html#other">Other Security Considerations</a></p>
+<p class="text-center"><a href="security-policy.html#policy">Security Policy </a> • <a href="security-policy.html#zero-configuration">Zero Configuration Security Policy</a> • <a href="security-policy.html#other">Other Security Considerations</a></p>
 
 
-<p class="lead magick-description">ImageMagick includes a security policy configuration file, <code>policy.xml</code>. It is useful for limiting the resources consumed by ImageMagick and can help prevent a denial-of-service or other exploits.</p>
+<p class="lead magick-description">ImageMagick includes a security policy configuration file, <a href="https://www.imagemagick.org/source/policy.xml">policy.xml</a>. It is useful for limiting the resources consumed by ImageMagick and can help prevent a denial-of-service or other exploits.</p>
 
-<p>As an example, suppose you download an image from the internet and unbeknownst to you its been crafted to generate a 20000 by 20000 pixel image. ImageMagick attempts to allocate enough resources (memory, disk) and your system will likely deny the resource request and exit. However, its also possible that your computer might be temporarily sluggish or unavailable or ImageMagick may abort. To prevent such a scenario, you can set limits in the <code>policy.xml</code> configuration file. You may ask why ImageMagick does not already include reasonable limits? Simply because what is reasonable in your environment, might not be reasonable to someone else. For example, one user has access to a host with 1TB of memory whereas another user is running ImageMagick on an iPhone. By policy, permitting giga-pixel image processing on the large memory host makes sense, not so much for the resource constrained iPhone. If you utilize ImageMagick from a public website, you may want to increase security by preventing usage of the MVG or HTTPS coders. Only you can decide what are reasonable limits taking in consideration your environment. We provide this policy with reasonable limits and encourage you to modify it to suit your local environment:</p>
+<p>As an example, suppose you download an image from the internet and unbeknownst to you its been crafted to generate a 20000 by 20000 pixel image. ImageMagick attempts to allocate enough resources (memory, disk) and your system will likely deny the resource request and exit. However, its also possible that your computer might be temporarily sluggish or unavailable or ImageMagick may abort. To prevent such a scenario, you can set limits in the <code>policy.xml</code> configuration file. You may ask why ImageMagick does not already include reasonable limits? Simply because what is reasonable in your environment, might not be reasonable to someone else. For example, you may have ImageMagick sandboxed where security is not a concern, whereas another user may use ImageMagick to process images on their publically accessible website.  Or ImageMagick is running on a host with 1TB of memory whereas another ImageMagick instance is running on an iPhone. By policy, permitting giga-pixel image processing on the large memory host makes sense, not so much for the resource constrained iPhone. If you utilize ImageMagick from a public website, you may want to increase security by preventing usage of the MVG or HTTPS coders. Only you can decide what are reasonable limits taking in consideration your environment. We provide this policy with reasonable limits and encourage you to modify it to suit your local environment:</p>
 
 <pre class="pre-scrollable">
 &lt;policymap>
@@ -101,11 +101,12 @@
 <pre>
   &lt;policy domain="delegate" rights="none" pattern="*" />
   &lt;policy domain="coder" rights="none" pattern="*" />
-  &lt;policy domain="coder" rights="read|write" pattern="{GIF,JPEG,PNG,WEBP}" />
+  &lt;policy domain="coder" rights="read | write" pattern="{GIF,JPEG,PNG,WEBP}" />
 </pre>
 
-<p>As of ImageMagick 7.0.5-4, you can allocate the pixel cache with anonymous memory mapping rather than from heap.  As a consequence, the pixels are initialized to zero.  You can also shred any temporary files for increased security.  The value is the number of times to shred a temporary file.  For example,</p>
+<p>As of ImageMagick 7.0.5-5, you can allocate the pixel cache and some internal buffers with anonymous memory mapping rather than from heap.  As a consequence, the pixels are initialized to zero.  You can also securely delete any temporary files for increased security.  The value is the number of times to shred (replace its content with random data before deleting) a temporary file.  For example,</p>
 <pre>
+  &lt;policy domain="system" name="memory-map" value="anonymous"/>
   &lt;policy domain="cache" name="memory-map" value="anonymous"/>
   &lt;policy domain="system" name="shred" value="1"/>
 </pre>
@@ -163,6 +164,18 @@
 
 <p>For additional details about resource limits and the policy configuration file, read <a href="resources.html">Resources</a> and <a href="architecture.html">Architecture</a>.</p>
 
+<h2 class="magick-header"><a id="zero-configuration"></a>Zero Configuration Security Policy</h2>
+
+<p>A zero configuration build of ImageMagick does not permit external configuration files.  To define your security policy, you must instead edit the <code>MagickCore/policy-private.h</code> source module, add your policy statements, and then build the ImageMagick distribution.  Here is an example zero configuration security policy:</p>
+
+<pre>
+static const char
+  *ZeroConfigurationPolicy = \
+"&lt;policymap> \
+  &lt;policy domain=\"coder\" rights=\"none\" pattern=\"MVG\"/> \
+&lt;/policymap>";
+</pre>
+
 <h2 class="magick-header"><a id="other"></a>Other Security Considerations</h2>
 
 <p>If you spot a security flaw in ImageMagick, <a href="https://www.imagemagick.org/script/contact.php">contact us</a> and select Security Issue as the issue.  Alternatively, post your concern to <a href="https://github.com/ImageMagick/ImageMagick/issues">GitHub</a>.  Be sure to include how to reproduce the security flaw and a link to any images needed to reproduce the flaw.</p>
@@ -196,4 +209,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/sitemap.html b/www/sitemap.html
index 69def95..518377f 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -235,4 +235,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/stream.html b/www/stream.html
index 1e86262..0f43b23 100644
--- a/www/stream.html
+++ b/www/stream.html
@@ -272,4 +272,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:07 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/subversion.html b/www/subversion.html
index 3f91b7a..dbed130 100644
--- a/www/subversion.html
+++ b/www/subversion.html
@@ -96,4 +96,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 17:58 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/support.html b/www/support.html
index 9e16779..add7450 100644
--- a/www/support.html
+++ b/www/support.html
@@ -68,7 +68,7 @@
   <dt><a href="http://www.networkredux.com"> <img class="clearfix" src="../images/networkredux.png" width="140" height="31" alt="[Network Redux]" /></a>   We manage everything so you don't have to</dt><br/>
   <dt><a href="http://www.amd.com"> <img class="clearfix" src="../images/amd.png" width="132" height="31" alt="[AMD]" /></a> Enabling today. Inspiring tomorrow.</dt><br/>
   <dt><a href="http://www.transloadit.com"> <img class="clearfix" src="../images/transloadit.png" width="205" height="52" alt="[TransloadIt]" /></a>   The world's most versatile file uploading and processing service</dt><br/>
-  <dt><a href="http://nutrition.report"> <img class="clearfix" src="../images/nutrition.png" width="299" height="59" alt="[Nutrition Report]" /></a>The world's most most advanced nutrition &amp; health database</dt><br/>
+  <dt><a href="http://boundforhealth.com"> <img class="clearfix" src="../images/boundforhealth.png" width="342" height="105" alt="[Bound for Health]" /></a>  BoundForHealth &#8211; Change Course.  Cure disease.  Be well.</dt><br/>
 </dl>
 
 <h2 class="magick-header"><a id="contribute"></a>Contribute a Bug Fix or Enhancement</h2>
@@ -155,4 +155,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file
diff --git a/www/webp.html b/www/webp.html
index 724ce2b..6a045be 100644
--- a/www/webp.html
+++ b/www/webp.html
@@ -182,4 +182,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 26th March 2017 16:38 -->
\ No newline at end of file
+<!-- Magick Cache 14th May 2017 12:20 -->
\ No newline at end of file