From 0d1265839379fc7156ff1c54083e100df10fb388 Mon Sep 17 00:00:00 2001 From: Shyim Date: Wed, 5 Apr 2023 14:17:03 +0200 Subject: [PATCH 1/3] feat: remove examples from packaging --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 9e509a52..9ba0c928 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,4 +3,5 @@ /.gitattributes export-ignore /tests export-ignore /scripts export-ignore +/examples export-ignore /phpstan.neon.dist export-ignore From bf9f99fe7311f0f9713ff38082c7fb705a461fe3 Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Sun, 26 Jan 2025 13:51:55 +0000 Subject: [PATCH 2/3] Fix some annotation flags values. --- tcpdf.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tcpdf.php b/tcpdf.php index 156dc37d..784e71af 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -8311,15 +8311,15 @@ protected function _putannotsobjs() { break; } case 'locked': { - $fval += 1 << 8; + $fval += 1 << 7; break; } case 'togglenoview': { - $fval += 1 << 9; + $fval += 1 << 8; break; } case 'lockedcontents': { - $fval += 1 << 10; + $fval += 1 << 9; break; } default: { From 45b14703c97ba21210c9754d67cfa42139123710 Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Sun, 26 Jan 2025 13:59:45 +0000 Subject: [PATCH 3/3] Bump version --- CHANGELOG.TXT | 6 +++++- VERSION | 2 +- composer.json | 2 +- include/tcpdf_static.php | 2 +- tcpdf.php | 6 +++--- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index cec784c8..4aa9eaf2 100644 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,4 +1,8 @@ -6.8.1 (2025-01-26) +6.8.2 (2025-01-26) + - Fix some annotation flags values. + - Remove examples from packaging. + +6.8.1 (2025-01-26) - UNTAGGED - Check relative paths on SVG images. 6.8.0 (2024-12-23) diff --git a/VERSION b/VERSION index 5f6c0863..166d79d6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.8.1 +6.8.2 diff --git a/composer.json b/composer.json index 47d211e8..778910d0 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "barcodes" ], "homepage": "http://www.tcpdf.org/", - "version": "6.8.1", + "version": "6.8.2", "license": "LGPL-3.0-or-later", "authors": [ { diff --git a/include/tcpdf_static.php b/include/tcpdf_static.php index bfd28e2b..5d6554ae 100644 --- a/include/tcpdf_static.php +++ b/include/tcpdf_static.php @@ -55,7 +55,7 @@ class TCPDF_STATIC { * Current TCPDF version. * @private static */ - private static $tcpdf_version = '6.8.1'; + private static $tcpdf_version = '6.8.2'; /** * String alias for total number of pages. diff --git a/tcpdf.php b/tcpdf.php index 784e71af..ee49eb98 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,7 +1,7 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 6.8.1 + * @version 6.8.2 */ // TCPDF configuration @@ -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.
* @package com.tecnick.tcpdf * @brief PHP class for generating PDF documents without requiring external extensions. - * @version 6.8.1 + * @version 6.8.2 * @author Nicola Asuni - info@tecnick.com * @IgnoreAnnotation("protected") * @IgnoreAnnotation("public")