...
diff --git a/coders/pcx.c b/coders/pcx.c
index f280df5..ed12378 100644
--- a/coders/pcx.c
+++ b/coders/pcx.c
@@ -337,10 +337,8 @@
     image->rows=(size_t) MagickAbsoluteValue((ssize_t) pcx_info.bottom-
       pcx_info.top)+1UL;
     if ((image->columns == 0) || (image->rows == 0) ||
-        ((pcx_info.bits_per_pixel != 1) &&
-         (pcx_info.bits_per_pixel != 2) &&
-         (pcx_info.bits_per_pixel != 4) &&
-         (pcx_info.bits_per_pixel != 8)))
+        ((pcx_info.bits_per_pixel != 1) && (pcx_info.bits_per_pixel != 2) &&
+         (pcx_info.bits_per_pixel != 4) && (pcx_info.bits_per_pixel != 8)))
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     image->depth=pcx_info.bits_per_pixel;
     image->units=PixelsPerInchResolution;
@@ -352,6 +350,8 @@
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     pcx_info.reserved=(unsigned char) ReadBlobByte(image);
     pcx_info.planes=(unsigned char) ReadBlobByte(image);
+    if (pcx_info.planes == 0)
+      ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     if ((pcx_info.bits_per_pixel*pcx_info.planes) >= 64)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     one=1;
@@ -389,7 +389,7 @@
     if (HeapOverflowSanityCheck(image->rows, (size_t) pcx_info.bytes_per_line) != MagickFalse)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     pcx_packets=(size_t) image->rows*pcx_info.bytes_per_line;
-    if (HeapOverflowSanityCheck(pcx_packets, (size_t)pcx_info.planes) != MagickFalse)
+    if (HeapOverflowSanityCheck(pcx_packets, (size_t) pcx_info.planes) != MagickFalse)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     pcx_packets=(size_t) pcx_packets*pcx_info.planes;
     if ((size_t) (pcx_info.bits_per_pixel*pcx_info.planes*image->columns) >
diff --git a/www/ImageMagickObject.html b/www/ImageMagickObject.html
index 4e110f5..a528aa6 100644
--- a/www/ImageMagickObject.html
+++ b/www/ImageMagickObject.html
@@ -130,4 +130,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:54 -->
\ No newline at end of file
diff --git a/www/Magick++/Color.html b/www/Magick++/Color.html
index 1e0047a..4a38b9f 100644
--- a/www/Magick++/Color.html
+++ b/www/Magick++/Color.html
@@ -14,9 +14,9 @@
 
 The base type used to represent color samples in ImageMagick is the Quantum type. Pixels are represented by a structure of Quantum values. For example, an RGB pixel contains red, green, and blue quantums, while an RGBA pixel contains red, green, blue, and opacity quantums. The maximum value that a Quantum can attain is specified by a constant value represented by the MaxRGB define, which is itself determined by the number of bits in a Quantum. The QuantumDepth build option determines the number of bits in a Quantum.
 
-<h4>PixelPacket</h4>
+<h4>Quantum</h4>
 
-PixelPacket is the internal representation of a pixel in ImageMagick. ImageMagick may be compiled to support 32, 64, or 128 bit pixels of type PixelPacket. This is controlled by the value of the QuantumDepth define. The default is 32 bit pixels (QuantumDepth=8), which provides the best performance and the least resource consumption. If additional color precision or range is desired, then ImageMagick may be compiled with QuantumDepth=16 or QuantumDepth=32. The following table shows the relationship between QuantumDepth, the type of Quantum, and the overall PixelPacket size.
+Quantum is the internal representation of a pixel in ImageMagick. ImageMagick may be compiled to support 32, 64, or 128 bit pixels of type Quantum. This is controlled by the value of the QuantumDepth define. The default is 32 bit pixels (QuantumDepth=8), which provides the best performance and the least resource consumption. If additional color precision or range is desired, then ImageMagick may be compiled with QuantumDepth=16 or QuantumDepth=32. The following table shows the relationship between QuantumDepth, the type of Quantum, and the overall Quantum size.
 <p align="center" style="margin-bottom: 0cm"><b>Effect Of QuantumDepth Values</b></p>
 <center>
 <table width="361" border="1" cellpadding="2" cellspacing="3">
@@ -29,7 +29,7 @@
 <td width="121">
 <p align="center"><b>Quantum Typedef</b></p></td>
 <td width="111">
-<p align="center"><b>PixelPacket Size</b></p></td></tr>
+<p align="center"><b>Quantum Size</b></p></td></tr>
 <tr>
 <td width="102">
 <p align="center">8</p></td>
@@ -53,7 +53,7 @@
 <p align="center">128 bits</p></td></tr>
 </table></center>
 <h3><a name="Color"></a>Color Class</h3>
-<p>The Color base class is not intended to be used directly. Normally a user will construct a derived class or inherit from this class. Color arguments are must be scaled to fit the Quantum size. The Color class contains a pointer to a PixelPacket, which may be allocated by the Color class, or may refer to an existing pixel in an image.</p>
+<p>The Color base class is not intended to be used directly. Normally a user will construct a derived class or inherit from this class. Color arguments are must be scaled to fit the Quantum size. The Color class contains a pointer to a Quantum, which may be allocated by the Color class, or may refer to an existing pixel in an image.</p>
 <p>An alternate way to construct the class is via an SVG-compatible color specification string (e.g. Color("red") or Color ("#FF0000")). Since the class may be constructed from a string, convenient strings may be passed in place of an explicit Color object in methods which accept a reference to Color. Color may also be converted to a std::string for convenience in user interfaces, and for saving settings to a text file.</p>
 <div class="viewport">
 class Color 
@@ -107,14 +107,14 @@
     // Return SVG color specification string 
     /* virtual */ operator std::string() const;
 
-    // Return ImageMagick PixelPacket 
-    operator PixelPacket() const;
+    // Return ImageMagick Quantum 
+    operator Quantum() const;
 
-    // Construct color via ImageMagick PixelPacket 
-    Color ( const PixelPacket &amp;color_ );
+    // Construct color via ImageMagick Quantum 
+    Color ( const Quantum &amp;color_ );
 
-    // Set color via ImageMagick PixelPacket 
-    const Color&amp; operator= ( PixelPacket &amp;color_ ); 
+    // Set color via ImageMagick Quantum 
+    const Color&amp; operator= ( Quantum &amp;color_ ); 
 };
 </div>
 <p align="center" style="margin-bottom: 0cm"><b>Color Derived Classes</b></p>
diff --git a/www/Magick++/Documentation.html b/www/Magick++/Documentation.html
index 8feb532..4076cf0 100644
--- a/www/Magick++/Documentation.html
+++ b/www/Magick++/Documentation.html
@@ -4,7 +4,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Magick++ API Documentation</title>
-<link rel="stylesheet" href="magick.css" type="text/css" />
+<link rel="stylesheet" href="http://www.imagemagick.org/Magick++/magick.css" type="text/css" />
 </head>
 <body>
 <p class="image"><img src="Magick++.png" name="Graphic1" align="bottom" width="464" height="134" border="0" /></p>
diff --git a/www/Magick++/Image++.html b/www/Magick++/Image++.html
index 32e8acc..e3f02ea 100644
--- a/www/Magick++/Image++.html
+++ b/www/Magick++/Image++.html
@@ -4,7 +4,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Magick++ API: Working with Images</title>
-<link rel="stylesheet" href="magick.css" type="text/css" />
+<link rel="stylesheet" href="http://www.imagemagick.org/Magick++/magick.css" type="text/css" />
 </head>
 <body>
 <div class="doc-section">
@@ -2947,7 +2947,7 @@
 <center>
 <h3> <a name="Raw Image Pixel Access"></a> Low-Level Image Pixel Access</h3>
 </center>
-Image pixels (of type <i><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> </i>)
+Image pixels (of type <i><a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a> </i>)
 may be accessed directly via the <i>Image Pixel Cache</i> .&#160; The
 image pixel cache is a rectangular window into the actual image pixels
 (which may be in memory, memory-mapped from a disk file, or entirely on
@@ -2993,11 +2993,11 @@
 image.type(TrueColorType);
 // Request pixel region with size 60x40, and top origin at 20x30 
 ssize_t columns = 60; 
-PixelPacket *pixel_cache = image.getPixels(20,30,columns,40); 
+Quantum *pixel_cache = image.getPixels(20,30,columns,40); 
 // Set pixel at column 5, and row 10 in the pixel cache to red. 
 ssize_t column = 5; 
 ssize_t row = 10; 
-PixelPacket *pixel = pixel_cache+row*columns+column; 
+Quantum *pixel = pixel_cache+row*columns+column; 
 *pixel = Color("red"); 
 // Save changes to underlying image .
 image.syncPixels();
@@ -3026,7 +3026,7 @@
       <td>
       <center><a name="getConstPixels"></a> <font size="-1">getConstPixels</font></center>
       </td>
-      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>
 *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
@@ -3081,7 +3081,7 @@
       <td>
       <center><a name="getPixels"></a> <font size="-1">getPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Transfers pixels from the image to the pixel
@@ -3096,7 +3096,7 @@
       <td>
       <center><a name="setPixels"></a> <font size="-1">setPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Allocates a pixel cache region to store image
diff --git a/www/Magick++/PixelPacket.html b/www/Magick++/PixelPacket.html
index 2ee56af..ca738ef 100644
--- a/www/Magick++/PixelPacket.html
+++ b/www/Magick++/PixelPacket.html
@@ -4,7 +4,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Magick++ API: PixelPacket</title>
-<link rel="stylesheet" href="https://www.imagemagick.org/Magick++/magick.css" type="text/css" />
+<link rel="stylesheet" href="http://www.imagemagick.org/Magick++/magick.css" type="text/css" />
 </head>
 <body>
 <div class="doc-section">
@@ -57,11 +57,11 @@
 <p align="center"><b>Interpretation</b></p></td></tr>
 <tr>
 <td width="102">
-<p align="center"><a href="Enumerations.html#ColorspaceType">RGBColorspace</a></p></td>
+<p align="center"><a href="http://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType">RGBColorspace</a></p></td>
 <td width="152">
-<p align="center"><a href="Enumerations.html#ColorspaceType">RGBColorspace</a> + <a href="https://www.imagemagick.org/Magick++/Image++.html#matte">matte</a></p></td>
+<p align="center"><a href="http://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType">RGBColorspace</a> + <a href="Image++.html#matte">matte</a></p></td>
 <td width="119">
-<p align="center"><a href="Enumerations.html#ColorspaceType">CMYKColorspace</a></p></td></tr>
+<p align="center"><a href="http://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType">CMYKColorspace</a></p></td></tr>
 <tr>
 <td width="58">
 <p><font size="2">red</font></p></td>
diff --git a/www/Magick++/Pixels.html b/www/Magick++/Pixels.html
index aa68971..3b38b60 100644
--- a/www/Magick++/Pixels.html
+++ b/www/Magick++/Pixels.html
@@ -10,7 +10,7 @@
 <div class="doc-section">
 <h1 align="center">Magick::Pixels</h1>
 <p>The <i>Pixels</i> class provides efficient access to raw image
-pixels. Image pixels (of type <a href="PixelPacket.html"><i>PixelPacket</i></a>)
+pixels. Image pixels (of type <a href="https://www.imagemagick.org/Magick++/Quantum.html"><i>Quantum</i></a>)
 may be accessed directly via the <i>Image Pixel Cache</i>. The image
 pixel cache is a rectangular window (a view) into the actual image
 pixels (which may be in memory, memory-mapped from a disk file, or
@@ -33,7 +33,7 @@
 image to one. If this is not done, then it is possible for a previous
 generation of the image to be modified due to the use of reference
 counting when copying or constructing an Image. </p>
-<p>The <i>PixelPacket</i>* returned by the <i>set</i> and <i>get</i>
+<p>The <i>Quantum</i>* returned by the <i>set</i> and <i>get</i>
 methods, and the <i>IndexPacket</i>* returned by the <i>indexes</i>
 method point to pixel data managed by the <i>Pixels</i> class. The <i>Pixels</i>
 class is responsible for releasing resources associated with the pixel
@@ -61,7 +61,7 @@
  // Set all pixels in region anchored at 38x36, with size 160x230 to green. 
  size_t columns = 196; size_t rows = 162; 
  Color green("green"); 
- PixelPacket *pixels = view.get(38,36,columns,rows); 
+ Quantum *pixels = view.get(38,36,columns,rows); 
  for ( ssize_t row = 0; row &lt; rows ; ++row ) 
    for ( ssize_t column = 0; column &lt; columns ; ++column ) 
      *pixels++=green; 
@@ -108,7 +108,7 @@
       <p align="center"><a name="get"></a><font size="2">get</font></p>
 		</td>
 		<td> 			
-      <p><font size="2"><a href="PixelPacket.html">PixelPacket</a>*</font></p>
+      <p><font size="2"><a href="https://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>*</font></p>
 		</td>
 		<td> 			
       <p><font size="2">const ssize_t x_, const ssize_t y_, const size_t
@@ -127,7 +127,7 @@
       <p align="center"><a name="getConst"></a><font size="2">getConst</font></p>
 		</td>
 		<td> 			
-      <p><font size="2">const <a href="PixelPacket.html">PixelPacket</a>*</font></p>
+      <p><font size="2">const <a href="https://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>*</font></p>
 		</td>
 		<td> 			
       <p><font size="2">const ssize_t x_, const ssize_t y_, const size_t
@@ -143,7 +143,7 @@
       <p align="center"><a name="set"></a><font size="2">set</font></p>
 		</td>
 		<td> 			
-      <p><font size="2"><a href="PixelPacket.html">PixelPacket</a>*</font></p>
+      <p><font size="2"><a href="https://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>*</font></p>
 		</td>
 		<td> 			
       <p><font size="2">const ssize_t x_, const ssize_t y_, const size_t
diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index b06b424..5cb34b4 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-0</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-4</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-0.tar.gz</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-0</span></pre>	  <p>Configure ImageMagick:</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>
 ./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-0</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-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>
 <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 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:32 -->
\ No newline at end of file
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index a3de7bf..c177f7c 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-0-Q16-windows-dll.exe</code>
+	<code>VisualMagick/bin/ImageMagick-7.0.5-4-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 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:26 -->
\ No newline at end of file
diff --git a/www/animate.html b/www/animate.html
index 75310ac..6d2e994 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -532,4 +532,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
diff --git a/www/api/Image++.html b/www/api/Image++.html
index 516c96e..5628a3c 100644
--- a/www/api/Image++.html
+++ b/www/api/Image++.html
@@ -608,7 +608,7 @@
       <td style="text-align: center;" rowspan="3">
       <center><a name="composite"></a> <font size="-1">composite</font></center>
       </td>
-      <td><font size="-1">const <a href="../Magick++/Image.html">Image</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Image.html">Image</a>
 &amp;compositeImage_, ssize_t xOffset_, ssize_t yOffset_, <a
  href="http://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator"> CompositeOperator</a>
 compose_ = <i>InCompositeOp</i></font></td>
@@ -617,7 +617,7 @@
 composition algorithm specified by <i>compose_</i>. </font></td>
     </tr>
     <tr>
-      <td><font size="-1">const <a href="../Magick++/Image.html">Image</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Image.html">Image</a>
 &amp;compositeImage_, const <a href="http://www.imagemagick.org/Magick++/Geometry.html">Geometry</a>
 &amp;offset_, <a href="http://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator">CompositeOperator</a>
 compose_ = <i>InCompositeOp</i></font></td>
@@ -626,7 +626,7 @@
 specified by <i>compose_</i> . </font></td>
     </tr>
     <tr>
-      <td><font size="-1">const <a href="../Magick++/Image.html">Image</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Image.html">Image</a>
 &amp;compositeImage_, <a href="http://www.imagemagick.org/Magick++/Enumerations.html#GravityType">GravityType</a>
 gravity_, <a href="http://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator">CompositeOperator</a>
 compose_ = <i>InCompositeOp</i></font></td>
@@ -2989,7 +2989,7 @@
 </div>
 <h2> <a name="Raw Image Pixel Access"></a> Low-Level Image Pixel Access</h2>
 <div class="doc-section">
-Image pixels (of type <i><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> </i>)
+Image pixels (of type <i><a href="../Magick++/PixelPacket.html">PixelPacket</a> </i>)
 may be accessed directly via the <i>Image Pixel Cache</i> .  The
 image pixel cache is a rectangular window into the actual image pixels
 (which may be in memory, memory-mapped from a disk file, or entirely on
@@ -3069,7 +3069,7 @@
       <td>
       <center><a name="getConstPixels"></a> <font size="-1">getConstPixels</font></center>
       </td>
-      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a>
+      <td><font size="-1">const <a href="../Magick++/PixelPacket.html">PixelPacket</a>
 *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
@@ -3124,7 +3124,7 @@
       <td>
       <center><a name="getPixels"></a> <font size="-1">getPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="../Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Transfers pixels from the image to the pixel
@@ -3139,7 +3139,7 @@
       <td>
       <center><a name="setPixels"></a> <font size="-1">setPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="../Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Allocates a pixel cache region to store image
diff --git a/www/api/magick++-classes.html b/www/api/magick++-classes.html
index 45d1e0d..2b80361 100644
--- a/www/api/magick++-classes.html
+++ b/www/api/magick++-classes.html
@@ -92,7 +92,7 @@
 <tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/Geometry.html">Geometry</a></td>
 <td>Geometry specification.</td>
 </tr>
-<tr><td><a class="reference external" href="../Magick++/Image.html">Image</a></td>
+<tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/Image.html">Image</a></td>
 <td>Image frame.  This is the primary object in <em>Magick++</em>.</td>
 </tr>
 <tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/Montage.html">Montage</a></td>
@@ -107,7 +107,7 @@
 </tr>
 <tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/TypeMetric.html">TypeMetric</a></td>
 <td>Container for font type metrics (use with
-<a class="reference external" href="../Magick++/Image.html#fonttypemetrics">Image::fontTypeMetrics</a>).</td>
+<a class="reference external" href="http://www.imagemagick.org/Magick++/Image.html#fonttypemetrics">Image::fontTypeMetrics</a>).</td>
 </tr>
 </tbody>
 </table>
diff --git a/www/architecture.html b/www/architecture.html
index 19e6449..7b1863a 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-0 2017-02-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-4 2017-03-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 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/changelog.html b/www/changelog.html
index 6f2d70c..112cbef 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-02-20  7.0.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+<div class="magick-header"><dl><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>
+<dt>2017-03-17  7.0.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <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>
+<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>
+  <li> Respect throttle policy (reference    https://github.com/ImageMagick/ImageMagick/issues/393).</li>
+  <li> Return proper minima / maxima (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31377).</li>
+<dt>2017-03-03  7.0.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-1, GIT revision 19662:b7f455a:20170303.</li>
+<dt>2017-02-21  7.0.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Fix Spurious memory allocation message (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31438).</li>
+  <li> Identical images should return inf for PSNR (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31487).</li>
+<dt>2017-02-20  7.0.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Release ImageMagick version 7.0.5-0, GIT revision 19616:505fea9:20170220.</li>
 <dt>2017-02-20  7.0.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Fix transient bug with -separate option (reference    https://github.com/ImageMagick/ImageMagick/issues/385).</li>
@@ -356,4 +375,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:33 -->
\ No newline at end of file
diff --git a/www/cipher.html b/www/cipher.html
index 8d11bb6..bff28c5 100644
--- a/www/cipher.html
+++ b/www/cipher.html
@@ -140,4 +140,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/color-management.html b/www/color-management.html
index 5d0e8bb..a8357f9 100644
--- a/www/color-management.html
+++ b/www/color-management.html
@@ -150,4 +150,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/color.html b/www/color.html
index cfbbb30..9c95c0c 100644
--- a/www/color.html
+++ b/www/color.html
@@ -4951,4 +4951,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
diff --git a/www/command-line-options.html b/www/command-line-options.html
index d68a0d8..c51ff66 100644
--- a/www/command-line-options.html
+++ b/www/command-line-options.html
@@ -1925,6 +1925,11 @@
   </tr>
 
   <tr>
+    <td>exr:color-type=<var>value</var></td>
+     <td>Specifies the color type for the EXR format: RGB, RGBA, YC, YCA, Y, YA, R, G, B, A).</td>
+  </tr>
+
+  <tr>
     <td>filter:option=<var>value</var></td>
      <td>Set a filter option for use with <a href="command-line-options.html#resize">-resize</a>.
     See <a href="command-line-options.html#filter">-filter</a> for details.</td>
@@ -1954,6 +1959,16 @@
   </tr>
 
   <tr>
+    <td>identify:locate=<var>minimum|maximum</var></td>
+     <td>Locates the coordinates of one or more image minimum or maximum</td>
+  </tr>
+
+  <tr>
+    <td>identify:limit=<var>number</var></td>
+     <td>Locates the coordinates for the number of minima or maxima specified</td>
+  </tr>
+
+  <tr>
     <td>jp2:layer-number=<var>value</var></td>
      <td>Sets the maximum number of quality layers to decode. Same for JPT, JC2,
     and J2K</td>
@@ -2121,6 +2136,16 @@
   </tr>
 
   <tr>
+    <td>pdf:stop-on-error=<var>true</var></td>
+    <td> </td>
+  </tr>
+
+  <tr>
+    <td>pdf:pdf:page-direction=<var>right-to-left</var></td>
+    <td> </td>
+  </tr>
+
+  <tr>
     <td>phash:colorspaces=<var>colorspace,colorspace,...</var></td>
     <td>the perceptual hash defaults to the sRGB and HCLp colorspaces.  When 
     using this define, you can specify up to six alternative colorspaces. (as 
@@ -2409,8 +2434,8 @@
   </tr>
 
   <tr>
-    <td>tiff:exif-properties=<var>false</var></td>
-    <td>Skips reading the EXIF properties.</td>
+    <td>tiff:exif-properties=<var>true</var></td>
+    <td>Enables reading the EXIF properties.</td>
   </tr>
 
   <tr>
@@ -2448,6 +2473,21 @@
     <td>type:hinting=<var>off</var></td>
     <td> </td>
   </tr>
+
+  <tr>
+    <td>txt:compliance=<var>css</var></td>
+    <td> </td>
+  </tr>
+
+  <tr>
+    <td>x:screen=<var>true</var></td>
+    <td>Obtains the image from the root window </td>
+  </tr>
+
+  <tr>
+    <td>x:silent=<var>true</var></td>
+    <td>Turns off the beep when importing an image </td>
+  </tr>
 </table>
 
 <p>For example, to create a postscript file that will render only the black
@@ -8054,4 +8094,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index 8d61a02..44316f1 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -688,4 +688,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:35 -->
\ No newline at end of file
diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 1eafd1c..2bff4a3 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -107,4 +107,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:36 -->
\ No newline at end of file
diff --git a/www/compare.html b/www/compare.html
index fa11f16..7265d15 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -365,4 +365,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:56 -->
\ No newline at end of file
diff --git a/www/compose.html b/www/compose.html
index 925fece..86068e5 100644
--- a/www/compose.html
+++ b/www/compose.html
@@ -644,3 +644,4 @@
 </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 b737158..ac5c8e7 100644
--- a/www/composite.html
+++ b/www/composite.html
@@ -526,4 +526,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/conjure.html b/www/conjure.html
index 15fd21d..87f149d 100644
--- a/www/conjure.html
+++ b/www/conjure.html
@@ -1138,4 +1138,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:20 -->
\ No newline at end of file
diff --git a/www/connected-components.html b/www/connected-components.html
index 67c22c6..262c33a 100644
--- a/www/connected-components.html
+++ b/www/connected-components.html
@@ -121,4 +121,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/convert.html b/www/convert.html
index ab92564..55b6564 100644
--- a/www/convert.html
+++ b/www/convert.html
@@ -1322,4 +1322,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
diff --git a/www/develop.html b/www/develop.html
index d6262a6..936255c 100644
--- a/www/develop.html
+++ b/www/develop.html
@@ -185,4 +185,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:36 -->
\ No newline at end of file
diff --git a/www/display.html b/www/display.html
index b21e986..006b22f 100644
--- a/www/display.html
+++ b/www/display.html
@@ -569,4 +569,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
diff --git a/www/distribute-pixel-cache.html b/www/distribute-pixel-cache.html
index a721312..6be1855 100644
--- a/www/distribute-pixel-cache.html
+++ b/www/distribute-pixel-cache.html
@@ -89,4 +89,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/download.html b/www/download.html
index f144a15..55af15b 100644
--- a/www/download.html
+++ b/www/download.html
@@ -76,16 +76,16 @@
   </tr>
 
   <tr>
-      <td>ImageMagick-7.0.5-0.x86_64.rpm</td>
-      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-7.0.5-0.x86_64.rpm">download</a></td>
-    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-7.0.5-0.x86_64.rpm">download</a></td>
+      <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>Redhat / CentOS 7.1 x86_64 RPM</td>
   </tr>
 
   <tr>
-      <td>ImageMagick-libs-7.0.5-0.x86_64.rpm</td>
-      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-0.x86_64.rpm">download</a></td>
-    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-0.x86_64.rpm">download</a></td>
+      <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>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-0.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-0.x86_64.rpm</span></pre>
+<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>
 <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-0, svn, ...)</p>
+<p>where <var>VERSION</var> is the version of ImageMagick you want to compile (i.e.: 7.0.5-4, 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-0-Q16-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x64-dll.exe">download</a></td>
+        <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>Win64 dynamic at 16 bits-per-pixel component</td>
   </tr>
 </table></div>
@@ -327,93 +327,93 @@
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x64-static.exe">download</a></td>
+        <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>Win64 static at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x64-dll.exe">download</a></td>
+        <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>Win64 dynamic at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x64-static.exe">download</a></td>
+        <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>Win64 static at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-HDRI-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-dll.exe">download</a></td>
+        <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>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-0-Q16-HDRI-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-static.exe">download</a></td>
+        <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>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-0-Q16-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x86-dll.exe">download</a></td>
+        <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>Win32 dynamic at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x86-static.exe">download</a></td>
+        <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>Win32 static at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x86-dll.exe">download</a></td>
+        <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>Win32 dynamic at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x86-static.exe">download</a></td>
+        <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>Win32 static at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-HDRI-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-dll.exe">download</a></td>
+        <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>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-0-Q16-HDRI-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-static.exe">download</a></td>
+        <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>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-0-portable-Q16-x86.zip</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-portable-Q16-x86.zip">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-portable-Q16-x86.zip">download</a></td>
+        <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>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-0-portable-Q16-x64.zip</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-portable-Q16-x64.zip">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-portable-Q16-x64.zip">download</a></td>
+        <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>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>
@@ -425,7 +425,7 @@
 <pre>
 magick logo: logo.gif
 magick identify logo.gif
-magick display logo.gif
+magick logo.gif win:
 </pre>
 
 <p>If you have any problems, you likely need <code>vcomp120.dll</code>.  To install it, download <a href="https://www.microsoft.com/en-us/download/details.aspx?id=40784">Visual C++ 2013 Redistributable Package</a>.</p>
@@ -464,4 +464,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
diff --git a/www/escape.html b/www/escape.html
index fdc6d59..5753c6b 100644
--- a/www/escape.html
+++ b/www/escape.html
@@ -887,4 +887,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
diff --git a/www/examples.html b/www/examples.html
index 759a788..46b80f0 100644
--- a/www/examples.html
+++ b/www/examples.html
@@ -80,4 +80,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
diff --git a/www/exception.html b/www/exception.html
index d7a8458..1c0a7ae 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -269,4 +269,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:41 -->
\ No newline at end of file
diff --git a/www/export.html b/www/export.html
index 528e1ab..ad09d51 100644
--- a/www/export.html
+++ b/www/export.html
@@ -80,4 +80,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:26 -->
\ No newline at end of file
diff --git a/www/formats.html b/www/formats.html
index ea5589f..70ac81c 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -724,7 +724,7 @@
     <td>PCD</td>
     <td>RW</td>
     <td>Photo CD</td>
-    <td>The maximum resolution written is 768x512 pixels since larger images require huffman compression (which is not supported).</td>
+    <td>The maximum resolution written is 768x512 pixels since larger images require huffman compression (which is not supported). Use <a href="command-line-options.html#bordercolor">-bordercolor</a> to specify the border color (e.g. <code>-bordercolor black</code>).</td>
   </tr>
 
   <tr>
@@ -1967,4 +1967,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
diff --git a/www/fx.html b/www/fx.html
index b290126..b3e8474 100644
--- a/www/fx.html
+++ b/www/fx.html
@@ -420,4 +420,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/gradient.html b/www/gradient.html
index 4fce08e..c6cfb10 100644
--- a/www/gradient.html
+++ b/www/gradient.html
@@ -241,4 +241,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/high-dynamic-range.html b/www/high-dynamic-range.html
index 863acc0..14c488f 100644
--- a/www/high-dynamic-range.html
+++ b/www/high-dynamic-range.html
@@ -107,4 +107,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
diff --git a/www/history.html b/www/history.html
index ee5df5d..e415a73 100644
--- a/www/history.html
+++ b/www/history.html
@@ -97,4 +97,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:26 -->
\ No newline at end of file
diff --git a/www/identify.html b/www/identify.html
index 9c1b1cc..4dd5d6d 100644
--- a/www/identify.html
+++ b/www/identify.html
@@ -429,4 +429,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:37 -->
\ No newline at end of file
diff --git a/www/import.html b/www/import.html
index a6f08fb..5d2f138 100644
--- a/www/import.html
+++ b/www/import.html
@@ -427,4 +427,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/index.html b/www/index.html
index e52a13d..93d1c81 100644
--- a/www/index.html
+++ b/www/index.html
@@ -66,9 +66,9 @@
 <p>ImageMagick utilizes multiple computational threads to increase performance and can read, process, or write mega-, giga-, or tera-pixel image sizes.</p>
 <p>ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under the Apache 2.0 <a href="https://www.imagemagick.org/script/license.html">license</a>.</p>
 
-<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://code.google.com/p/address-sanitizer/">memory error</a> and <a href="https://code.google.com/p/data-race-test/wiki/ThreadSanitizer">thread data race</a> detection to prevent security vulnerabilities.</p>
+<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-0</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-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 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 3rd March 2017 19:24 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
diff --git a/www/install-source.html b/www/install-source.html
index 2964d0d..2bad937 100644
--- a/www/install-source.html
+++ b/www/install-source.html
@@ -162,4 +162,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
diff --git a/www/jp2.html b/www/jp2.html
index eaf9728..e5ed762 100644
--- a/www/jp2.html
+++ b/www/jp2.html
@@ -164,4 +164,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:35 -->
\ No newline at end of file
diff --git a/www/license.html b/www/license.html
index 7b5d30d..5d4efef 100644
--- a/www/license.html
+++ b/www/license.html
@@ -203,4 +203,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:05 -->
\ No newline at end of file
diff --git a/www/links.html b/www/links.html
index 50587f1..3067fb6 100644
--- a/www/links.html
+++ b/www/links.html
@@ -163,4 +163,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
diff --git a/www/magick++.html b/www/magick++.html
index 89e8163..953dbf3 100644
--- a/www/magick++.html
+++ b/www/magick++.html
@@ -187,4 +187,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:21 -->
\ No newline at end of file
diff --git a/www/magick-core.html b/www/magick-core.html
index e784b73..a37e156 100644
--- a/www/magick-core.html
+++ b/www/magick-core.html
@@ -337,4 +337,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:24 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:43 -->
\ No newline at end of file
diff --git a/www/magick-script.html b/www/magick-script.html
index 58b9d9b..6a30bce 100644
--- a/www/magick-script.html
+++ b/www/magick-script.html
@@ -1282,4 +1282,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 17:02 -->
\ No newline at end of file
diff --git a/www/magick-vector-graphics.html b/www/magick-vector-graphics.html
index 4ff288a..31f349b 100644
--- a/www/magick-vector-graphics.html
+++ b/www/magick-vector-graphics.html
@@ -881,4 +881,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:17 -->
\ No newline at end of file
diff --git a/www/magick-wand.html b/www/magick-wand.html
index 95454b9..bedc29a 100644
--- a/www/magick-wand.html
+++ b/www/magick-wand.html
@@ -383,4 +383,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
diff --git a/www/magick.html b/www/magick.html
index f30e684..0a6834b 100644
--- a/www/magick.html
+++ b/www/magick.html
@@ -1324,4 +1324,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:52 -->
\ No newline at end of file
diff --git a/www/miff.html b/www/miff.html
index 2549007..92f357f 100644
--- a/www/miff.html
+++ b/www/miff.html
@@ -245,4 +245,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:07 -->
\ No newline at end of file
diff --git a/www/mirror.html b/www/mirror.html
index babcfe6..d6e61cf 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-0.</p>
+<p>The latest release of ImageMagick is version 7.0.5-4.</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 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
diff --git a/www/mogrify.html b/www/mogrify.html
index 9610345..b4b5505 100644
--- a/www/mogrify.html
+++ b/www/mogrify.html
@@ -1297,4 +1297,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:41 -->
\ No newline at end of file
diff --git a/www/montage.html b/www/montage.html
index cb33b0e..1669169 100644
--- a/www/montage.html
+++ b/www/montage.html
@@ -638,4 +638,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/motion-picture.html b/www/motion-picture.html
index 3eb0e7d..4b1619c 100644
--- a/www/motion-picture.html
+++ b/www/motion-picture.html
@@ -194,4 +194,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
diff --git a/www/opencl.html b/www/opencl.html
index a23ffaf..f31dd0f 100644
--- a/www/opencl.html
+++ b/www/opencl.html
@@ -122,4 +122,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/openmp.html b/www/openmp.html
index 29fa510..18179e5 100644
--- a/www/openmp.html
+++ b/www/openmp.html
@@ -101,4 +101,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
diff --git a/www/perl-magick.html b/www/perl-magick.html
index 337e4c6..e4a5fd7 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -2611,4 +2611,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
diff --git a/www/porting.html b/www/porting.html
index 3dded98..432d636 100644
--- a/www/porting.html
+++ b/www/porting.html
@@ -664,4 +664,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
diff --git a/www/quantize.html b/www/quantize.html
index 911bb59..6d1a2a8 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -202,3 +202,4 @@
 </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 5028509..a3f6f12 100644
--- a/www/resources.html
+++ b/www/resources.html
@@ -128,7 +128,7 @@
   By default any coder, delegate, filter, or file path is permitted.  Use a policy to deny access to, for example, the MPEG video delegate, or permit reading images from a file system but deny writing to that same file system.  Or use the resource policy to set resource limits.  Policies are useful for multi-user servers that want to limit the overall impact ImageMagick has on the system.  For example, to limit the maximum image size in memory to 100MB:
 
 <pre>
-&lt;policy domain="resource" name="area" value="100MB"/>
+&lt;policy domain="resource" name="area" value="100KP"/>
 </pre>
 
 Any image larger than this area limit is cached to disk rather than memory.
@@ -144,7 +144,7 @@
 <pre>
 &lt;policy domain="resource" name="time" value="300"/>
 </pre>
-Define arguments for the memory, map, area, and disk resources with SI prefixes (.e.g 100MB).  In addition, resource policies are maximums for each instance of ImageMagick (e.g. policy memory limit 1GB, the <code>-limit 2GB</code> option exceeds policy maximum so memory limit is 1GB). </dd>
+Define arguments for the memory, map, and disk resources with SI prefixes (.e.g 100MB).  In addition, resource policies are maximums for each instance of ImageMagick (e.g. policy memory limit 1GB, the <code>-limit 2GB</code> option exceeds policy maximum so memory limit is 1GB). </dd>
 
 <dt><a href="https://www.imagemagick.org/source/quantization-table.xml">quantization-table.xml</a></dt>
   <dd>Custom JPEG quantization tables. Activate with <code>-define:q-table=quantization-table.xml</code>.</dd>
@@ -383,4 +383,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
diff --git a/www/security-policy.html b/www/security-policy.html
index 1272220..cb89b9c 100644
--- a/www/security-policy.html
+++ b/www/security-policy.html
@@ -71,7 +71,7 @@
   &lt;policy domain="resource" name="map" value="512MiB"/>
   &lt;policy domain="resource" name="width" value="8KP"/>
   &lt;policy domain="resource" name="height" value="8KP"/>
-  &lt;policy domain="resource" name="area" value="128MB"/>
+  &lt;policy domain="resource" name="area" value="16KP"/>
   &lt;policy domain="resource" name="disk" value="1GiB"/>
   &lt;policy domain="resource" name="file" value="768"/>
   &lt;policy domain="resource" name="thread" value="2"/>
@@ -104,9 +104,9 @@
   &lt;policy domain="coder" rights="read|write" pattern="{GIF,JPEG,PNG,WEBP}" />
 </pre>
 
-<p>As of ImageMagick 7.0.4-10, 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-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>
 <pre>
-  &lt;policy domain="system" name="pixel-cache-memory" value="anonymous"/>
+  &lt;policy domain="cache" name="memory-map" value="anonymous"/>
   &lt;policy domain="system" name="shred" value="1"/>
 </pre>
 
@@ -138,7 +138,7 @@
     value: 256MiB
   Policy: Resource
     name: area
-    value: 128MB
+    value: 16KP
   Policy: Resource
     name: height
     value: 8KP
@@ -196,4 +196,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
diff --git a/www/sitemap.html b/www/sitemap.html
index f46e39c..69def95 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -235,4 +235,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
diff --git a/www/stream.html b/www/stream.html
index d9df78f..1e86262 100644
--- a/www/stream.html
+++ b/www/stream.html
@@ -272,4 +272,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:07 -->
\ No newline at end of file
diff --git a/www/subversion.html b/www/subversion.html
index 3353c6f..3f91b7a 100644
--- a/www/subversion.html
+++ b/www/subversion.html
@@ -96,4 +96,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 17:58 -->
\ No newline at end of file
diff --git a/www/support.html b/www/support.html
index 53eefb2..9e16779 100644
--- a/www/support.html
+++ b/www/support.html
@@ -155,4 +155,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
diff --git a/www/webp.html b/www/webp.html
index 16ae051..724ce2b 100644
--- a/www/webp.html
+++ b/www/webp.html
@@ -182,4 +182,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:38 -->
\ No newline at end of file