diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 6b41d5a..943614f 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,7 @@ +5.9.145 (2012-01-28) + - Japanese language file was added. + - TCPDF license and README.TXT files were updated. + 5.9.144 (2012-01-12) - HTML output on barcode classes was improved. diff --git a/LICENSE.TXT b/LICENSE.TXT index 26adda0..daf21f7 100755 --- a/LICENSE.TXT +++ b/LICENSE.TXT @@ -5,9 +5,7 @@ TCPDF is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. Additionally, - YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE - GENERATED PDF DOCUMENTS. + License, or (at your option) any later version. ********************************************************************** ********************************************************************** diff --git a/README.TXT b/README.TXT index 9df8aa9..f78081f 100755 --- a/README.TXT +++ b/README.TXT @@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 5.9.144 -Release date: 2012-01-12 +Version: 5.9.145 +Release date: 2012-01-28 Author: Nicola Asuni Copyright (c) 2002-2012: @@ -64,7 +64,7 @@ Installation (full instructions on http: www.tcpdf.org): Source Code Documentation: http://www.tcpdf.org -For Additional Documentation: +Additional Documentation: http://www.tcpdf.org License @@ -73,9 +73,7 @@ License TCPDF is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. Additionally, - YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE - GENERATED PDF DOCUMENTS. + License, or (at your option) any later version. TCPDF is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -88,4 +86,12 @@ License See LICENSE.TXT file for more information. +Third party fonts + This library includes third party font files released with different licenses. + These fonts are not required by TCPDF but have been included as you convenience. + The original TTF font files have been renamed for compatibility with TCPDF and compressed using the gzcompress PHP function that uses the ZLIB data format (.z files). + To get the original distribution archives please check the information on fonts subfolders: + - DejaVu fonts 2.33 (Bitstream) - Copyright, License and other info: fonts/dejavu-fonts-ttf-2.33 + - GNU FreeFont (GNU-GPLv3) - Copyright, License and other info: fonts/freefont-20100919 + ============================================================ diff --git a/barcodes.php b/barcodes.php index 0e33f18..4027aa7 100755 --- a/barcodes.php +++ b/barcodes.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf - * @version 1.0.022 + * @version 1.0.023 * @author Nicola Asuni */ class TCPDFBarcode { @@ -145,7 +145,6 @@ class TCPDFBarcode { * @public */ public function getBarcodeHTML($w=2, $h=30, $color='black') { - $html = '
'."\n"; $html = '
'."\n"; // print bars $x = 0; diff --git a/tcpdf.php b/tcpdf.php index 376c79d..7ce0329 100755 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,11 +1,11 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 5.9.144 + * @version 5.9.145 */ // Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file. @@ -151,7 +149,7 @@ require_once(dirname(__FILE__).'/config/tcpdf_config.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 5.9.144 + * @version 5.9.145 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { @@ -162,7 +160,7 @@ class TCPDF { * Current TCPDF version. * @private */ - private $tcpdf_version = '5.9.144'; + private $tcpdf_version = '5.9.145'; // Protected properties diff --git a/tcpdf_filters.php b/tcpdf_filters.php index af48c35..f39a8fe 100644 --- a/tcpdf_filters.php +++ b/tcpdf_filters.php @@ -3,9 +3,9 @@ // File name : tcpdf_filters.php // Version : 1.0.000 // Begin : 2011-05-23 -// Last Update : 2011-06-26 +// Last Update : 2012-01-28 // Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com -// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS. +// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 // ------------------------------------------------------------------- // Copyright (C) 2011-2012 Nicola Asuni - Tecnick.com LTD // @@ -14,9 +14,7 @@ // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. Additionally, -// YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE -// GENERATED PDF DOCUMENTS. +// License, or (at your option) any later version. // // TCPDF is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/tcpdf_parser.php b/tcpdf_parser.php index 58f12ff..1226760 100644 --- a/tcpdf_parser.php +++ b/tcpdf_parser.php @@ -3,9 +3,9 @@ // File name : tcpdf_parser.php // Version : 1.0.000 // Begin : 2011-05-23 -// Last Update : 2011-07-14 +// Last Update : 2012-01-28 // Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com -// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS. +// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 // ------------------------------------------------------------------- // Copyright (C) 2011-2012 Nicola Asuni - Tecnick.com LTD // @@ -14,9 +14,7 @@ // TCPDF is free software: you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. Additionally, -// YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE -// GENERATED PDF DOCUMENTS. +// License, or (at your option) any later version. // // TCPDF is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of