mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-04-20 22:12:32 +02:00
Bump version
This commit is contained in:
parent
80dbfa867c
commit
154bba45ff
@ -1,3 +1,16 @@
|
||||
6.6.0 (2022-12-06)
|
||||
- Multi-byte character support for filename during output (#561). (#562)
|
||||
- Fix garbage collection (#509)
|
||||
- FIX: PDF417 corrupt output problem, solution set bcmath scale parameter to zero (#534)
|
||||
- Fix TypeError: count() in PHP8 (#556)
|
||||
- Fix-getHTMLFontUnits (#547)
|
||||
- Improved embedded image in HTML allowing src="data:..." format (#552)
|
||||
- Fix image abscissa when in RTL (#510)
|
||||
- fix: php 8.1 notices (#548)
|
||||
- Optimize PNG files (#563)
|
||||
- Update documentation for a known issue. (#569)
|
||||
- Fix for PHP 8.1 (#571)
|
||||
|
||||
6.5.0 (2022-08-12)
|
||||
- encodeUrlQuery takes into account the port (#493)
|
||||
- Fixing undefined offset error in writeHTML() when last DOM element ha…
|
||||
|
@ -12,7 +12,7 @@
|
||||
"barcodes"
|
||||
],
|
||||
"homepage": "http://www.tcpdf.org/",
|
||||
"version": "6.5.0",
|
||||
"version": "6.6.0",
|
||||
"license": "LGPL-3.0-only",
|
||||
"authors": [
|
||||
{
|
||||
|
@ -55,7 +55,7 @@ class TCPDF_STATIC {
|
||||
* Current TCPDF version.
|
||||
* @private static
|
||||
*/
|
||||
private static $tcpdf_version = '6.5.0';
|
||||
private static $tcpdf_version = '6.6.0';
|
||||
|
||||
/**
|
||||
* String alias for total number of pages.
|
||||
|
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
//============================================================+
|
||||
// File name : tcpdf.php
|
||||
// Version : 6.4.4
|
||||
// Version : 6.6.0
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2022-08-12
|
||||
// Last Update : 2022-12-06
|
||||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
|
||||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
||||
// -------------------------------------------------------------------
|
||||
@ -104,7 +104,7 @@
|
||||
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @author Nicola Asuni
|
||||
* @version 6.5.0
|
||||
* @version 6.6.0
|
||||
*/
|
||||
|
||||
// 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.<br>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @brief PHP class for generating PDF documents without requiring external extensions.
|
||||
* @version 6.3.2
|
||||
* @version 6.6.0
|
||||
* @author Nicola Asuni - info@tecnick.com
|
||||
* @IgnoreAnnotation("protected")
|
||||
* @IgnoreAnnotation("public")
|
||||
|
Loading…
x
Reference in New Issue
Block a user