diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index f20914b..8b18c0f 100644 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,7 @@ +6.2.3 (2014-12-18) + - New comment. + - Moved the K_PATH_IMAGES definition in tcpdf_autoconfig. + 6.2.2 (2014-12-18) - Fixed mispelled words. - Fixed version number. diff --git a/README.TXT b/README.TXT index 050555a..07ed3f8 100644 --- a/README.TXT +++ b/README.TXT @@ -8,7 +8,7 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 6.2.2 +Version: 6.2.3 Release date: 2014-12-18 Author: Nicola Asuni diff --git a/composer.json b/composer.json index eab5247..1897293 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "tecnick.com/tcpdf", - "version": "6.2.2", + "version": "6.2.3", "homepage": "http://www.tcpdf.org/", "type": "library", "description": "TCPDF is a PHP class for generating PDF documents and barcodes.", diff --git a/include/tcpdf_static.php b/include/tcpdf_static.php index 458211b..da87518 100644 --- a/include/tcpdf_static.php +++ b/include/tcpdf_static.php @@ -55,7 +55,7 @@ class TCPDF_STATIC { * Current TCPDF version. * @private static */ - private static $tcpdf_version = '6.2.2'; + private static $tcpdf_version = '6.2.3'; /** * String alias for total number of pages. diff --git a/tcpdf.php b/tcpdf.php index 61c7563..92ac141 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,7 +1,7 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 6.2.2 + * @version 6.2.3 */ // TCPDF configuration @@ -128,7 +128,7 @@ require_once(dirname(__FILE__).'/include/tcpdf_static.php'); * TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.
* @package com.tecnick.tcpdf * @brief PHP class for generating PDF documents without requiring external extensions. - * @version 6.2.2 + * @version 6.2.3 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { @@ -7540,6 +7540,7 @@ class TCPDF { * The method first calls Close() if necessary to terminate the document. * @param $name (string) The name of the file when saved. Note that special characters are removed and blanks characters are replaced with the underscore character. * @param $dest (string) Destination where to send the document. It can take one of the following values: + * @return string * @public * @since 1.0 * @see Close() diff --git a/tcpdf_autoconfig.php b/tcpdf_autoconfig.php index bbf2d59..6ec9ce8 100644 --- a/tcpdf_autoconfig.php +++ b/tcpdf_autoconfig.php @@ -1,9 +1,9 @@