Skip to content

Commit

Permalink
Fix corrupted file
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Sep 6, 2023
1 parent 31b9389 commit 3ca051c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 21 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.TXT
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
6.6.5 (2023-09-06)
- Fix corrupted file.

6.6.4 (2023-09-06)
- Fix GitHub automation tests.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.4
6.6.5
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"barcodes"
],
"homepage": "http://www.tcpdf.org/",
"version": "6.6.4",
"version": "6.6.5",
"license": "LGPL-3.0-or-later",
"authors": [
{
Expand Down
18 changes: 3 additions & 15 deletions include/tcpdf_fonts.php
Original file line number Diff line number Diff line change
Expand Up @@ -1708,10 +1708,7 @@ public static function unichrASCII($c) {

/**
* Converts array of UTF-8 characters to UTF16-BE string.<br>
* Based permissions:
contents: read
on: http://www.faqs.org/rfcs/rfc2781.html
* Based on: http://www.faqs.org/rfcs/rfc2781.html
* <pre>
* Encoding UTF-16:
*
Expand Down Expand Up @@ -1901,10 +1898,7 @@ public static function uniord($uch) {
/**
* Converts UTF-8 character to integer value.<br>
* Invalid byte sequences will be replaced with 0xFFFD (replacement character)<br>
* Based permissions:
contents: read
on: http://www.faqs.org/rfcs/rfc3629.html
* Based on: http://www.faqs.org/rfcs/rfc3629.html
* <pre>
* Char. number range | UTF-8 octet sequence
* (hexadecimal) | (binary)
Expand All @@ -1915,13 +1909,7 @@ public static function uniord($uch) {
* 0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
* ---------------------------------------------------------------------
*
* ABFN notatipermissions:
contents: read
permissions:
contents: read
on:
* ABFN notation:
* ---------------------------------------------------------------------
* UTF8-octets = *( UTF8-char )
* UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4
Expand Down
2 changes: 1 addition & 1 deletion include/tcpdf_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class TCPDF_STATIC {
* Current TCPDF version.
* @private static
*/
private static $tcpdf_version = '6.6.4';
private static $tcpdf_version = '6.6.5';

/**
* String alias for total number of pages.
Expand Down
6 changes: 3 additions & 3 deletions tcpdf.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 6.6.4
// Version : 6.6.5
// Begin : 2002-08-03
// Last Update : 2023-09-06
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected]
Expand Down Expand Up @@ -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.6.4
* @version 6.6.5
*/

// TCPDF configuration
Expand All @@ -128,7 +128,7 @@
* 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.6.4
* @version 6.6.5
* @author Nicola Asuni - [email protected]
* @IgnoreAnnotation("protected")
* @IgnoreAnnotation("public")
Expand Down

0 comments on commit 3ca051c

Please sign in to comment.