diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 8e376ee..8fc1f27 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,4 +1,7 @@ -6.0.013 (2013-04-) +6.0.014 (2013-04-13) + - The signature of addTTFfont() method includes a new parameter to link existing fonts instead of copying and compressing them. + +6.0.013 (2013-04-10) - Add support for SVG dx and dy text/tspan attributes. - replace require() with require_once(). - fix some minor typos on documentation. diff --git a/README.TXT b/README.TXT index 4b0db00..010e45b 100755 --- a/README.TXT +++ b/README.TXT @@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 6.0.013 -Release date: 2013-05-10 +Version: 6.0.014 +Release date: 2013-05-13 Author: Nicola Asuni Copyright (c) 2002-2013: diff --git a/composer.json b/composer.json index 5884b51..5b70d6b 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "tecnick.com/tcpdf", - "version": "6.0.013", + "version": "6.0.014", "homepage": "http://www.tcpdf.org/", "type": "library", "description": "TCPDF is a PHP class for generating PDF documents.", diff --git a/config/lang/bul.php b/config/lang/bul.php index 180ad24..30b2a7d 100644 --- a/config/lang/bul.php +++ b/config/lang/bul.php @@ -2,11 +2,11 @@ //============================================================+ // File name : bul.php // Begin : 2004-03-03 -// Last Update : 2010-03-22 +// Last Update : 2013-05-13 // // Description : Language module for TCPDF // (contains translated texts) -// Arabic +// Bulgarian // // Author: Nicola Asuni // diff --git a/include/tcpdf_fonts.php b/include/tcpdf_fonts.php index 62953eb..3147f8d 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.012 + * @version 6.0.014 */ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { @@ -168,7 +168,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.012 + * @version 6.0.014 * @author Nicola Asuni - info@tecnick.com */ class TCPDF {