Skip to content

Commit

Permalink
Merge pull request #781 from tecnickcom/fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
nicolaasuni authored Jan 26, 2025
2 parents 79bfbb4 + 45b1470 commit f7a7810
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/.gitattributes export-ignore
/tests export-ignore
/scripts export-ignore
/examples export-ignore
/phpstan.neon.dist export-ignore
6 changes: 5 additions & 1 deletion CHANGELOG.TXT
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.8.1
6.8.2
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.8.1",
"version": "6.8.2",
"license": "LGPL-3.0-or-later",
"authors": [
{
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.8.1';
private static $tcpdf_version = '6.8.2';

/**
* String alias for total number of pages.
Expand Down
12 changes: 6 additions & 6 deletions tcpdf.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 6.8.1
// Version : 6.8.2
// Begin : 2002-08-03
// Last Update : 2024-12-23
// 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.8.1
* @version 6.8.2
*/

// 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.8.1
* @version 6.8.2
* @author Nicola Asuni - [email protected]
* @IgnoreAnnotation("protected")
* @IgnoreAnnotation("public")
Expand Down Expand Up @@ -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: {
Expand Down

0 comments on commit f7a7810

Please sign in to comment.