Skip to content

Commit f7a7810

Browse files
authored
Merge pull request #781 from tecnickcom/fixes
Fixes
2 parents 79bfbb4 + 45b1470 commit f7a7810

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
/.gitattributes export-ignore
44
/tests export-ignore
55
/scripts export-ignore
6+
/examples export-ignore
67
/phpstan.neon.dist export-ignore

CHANGELOG.TXT

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
6.8.1 (2025-01-26)
1+
6.8.2 (2025-01-26)
2+
- Fix some annotation flags values.
3+
- Remove examples from packaging.
4+
5+
6.8.1 (2025-01-26) - UNTAGGED
26
- Check relative paths on SVG images.
37

48
6.8.0 (2024-12-23)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.8.1
1+
6.8.2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"barcodes"
1313
],
1414
"homepage": "http://www.tcpdf.org/",
15-
"version": "6.8.1",
15+
"version": "6.8.2",
1616
"license": "LGPL-3.0-or-later",
1717
"authors": [
1818
{

include/tcpdf_static.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class TCPDF_STATIC {
5555
* Current TCPDF version.
5656
* @private static
5757
*/
58-
private static $tcpdf_version = '6.8.1';
58+
private static $tcpdf_version = '6.8.2';
5959

6060
/**
6161
* String alias for total number of pages.

tcpdf.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
//============================================================+
33
// File name : tcpdf.php
4-
// Version : 6.8.1
4+
// Version : 6.8.2
55
// Begin : 2002-08-03
66
// Last Update : 2024-12-23
77
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - [email protected]
@@ -104,7 +104,7 @@
104104
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
105105
* @package com.tecnick.tcpdf
106106
* @author Nicola Asuni
107-
* @version 6.8.1
107+
* @version 6.8.2
108108
*/
109109

110110
// TCPDF configuration
@@ -128,7 +128,7 @@
128128
* 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>
129129
* @package com.tecnick.tcpdf
130130
* @brief PHP class for generating PDF documents without requiring external extensions.
131-
* @version 6.8.1
131+
* @version 6.8.2
132132
* @author Nicola Asuni - [email protected]
133133
* @IgnoreAnnotation("protected")
134134
* @IgnoreAnnotation("public")
@@ -8311,15 +8311,15 @@ protected function _putannotsobjs() {
83118311
break;
83128312
}
83138313
case 'locked': {
8314-
$fval += 1 << 8;
8314+
$fval += 1 << 7;
83158315
break;
83168316
}
83178317
case 'togglenoview': {
8318-
$fval += 1 << 9;
8318+
$fval += 1 << 8;
83198319
break;
83208320
}
83218321
case 'lockedcontents': {
8322-
$fval += 1 << 10;
8322+
$fval += 1 << 9;
83238323
break;
83248324
}
83258325
default: {

0 commit comments

Comments
 (0)