From 57959d4027727f44b79dcc08de43f612513114eb Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Tue, 4 Jun 2013 22:06:38 +0100 Subject: [PATCH] 6.0.020 (2013-06-04) - The method addTTFfont() was fixed (Bug item #813 Undefined offset). --- CHANGELOG.TXT | 3 +++ README.TXT | 2 +- composer.json | 2 +- include/tcpdf_fonts.php | 26 +++++++++++++------------- include/tcpdf_static.php | 2 +- tcpdf.php | 6 +++--- 6 files changed, 22 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 2ec0bb0..213e479 100644 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +6.0.020 (2013-06-04) + - The method addTTFfont() was fixed (Bug item #813 Undefined offset). + 6.0.019 (2013-06-04) - The magic constant __DIR__ was replaced with dirname(__FILE__) for php 5.2 compatibility. - The exceptions raised by file_exists() function were suppressed. diff --git a/README.TXT b/README.TXT index 3a6bd27..3e1ee62 100644 --- a/README.TXT +++ b/README.TXT @@ -8,7 +8,7 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 6.0.019 +Version: 6.0.020 Release date: 2013-06-04 Author: Nicola Asuni diff --git a/composer.json b/composer.json index 28d6ea4..7a3c222 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "tecnick.com/tcpdf", - "version": "6.0.019", + "version": "6.0.020", "homepage": "http://www.tcpdf.org/", "type": "library", "description": "TCPDF is a PHP class for generating PDF documents.", diff --git a/include/tcpdf_fonts.php b/include/tcpdf_fonts.php index 86a64f1..5939395 100644 --- a/include/tcpdf_fonts.php +++ b/include/tcpdf_fonts.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 6.0.019 + * @version 6.0.020 */ // TCPDF configuration @@ -163,7 +163,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.0.019 + * @version 6.0.020 * @author Nicola Asuni - info@tecnick.com */ class TCPDF {