Skip to content

Commit 67443ee

Browse files
committed
remove debug line preventing comrpession
1 parent 81172e5 commit 67443ee

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.TXT

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
6.11.1 (2026-03-03)
2+
- Remove debug line preventing compression.
3+
14
6.11.0 (2026-03-01)
25
- Updated copyright year.
36
- Updated linked http urls to https.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.11.0
1+
6.11.1

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.11.0",
15+
"version": "6.11.1",
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.11.0';
58+
private static $tcpdf_version = '6.11.1';
5959

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

tcpdf.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22
//============================================================+
33
// File name : tcpdf.php
4-
// Version : 6.11.0
4+
// Version : 6.11.1
55
// Begin : 2002-08-03
6-
// Last Update : 2026-03-01
6+
// Last Update : 2026-03-03
77
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
88
// License : GNU-LGPL v3 (https://www.gnu.org/copyleft/lesser.html)
99
// -------------------------------------------------------------------
@@ -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.11.0
107+
* @version 6.11.1
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.11.0
131+
* @version 6.11.1
132132
* @author Nicola Asuni - info@tecnick.com
133133
* @IgnoreAnnotation("protected")
134134
* @IgnoreAnnotation("public")
@@ -2907,7 +2907,6 @@ public function setDisplayMode($zoom, $layout='SinglePage', $mode='UseNone') {
29072907
* @since 1.4
29082908
*/
29092909
public function setCompression($compress=true) {
2910-
$this->compress = false; return;
29112910
if (function_exists('gzcompress')) {
29122911
if ($compress) {
29132912
$this->compress = true;

0 commit comments

Comments
 (0)