Skip to content

Commit 2b37a73

Browse files
committed
libppd 2.1.1 Release
1 parent 8df86e0 commit 2b37a73

4 files changed

Lines changed: 23 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
# CHANGES - libppd v2.1.0 - 2024-10-17
1+
# CHANGES - libppd v2.1.1 - 2025-02-19
2+
3+
## CHANGES IN V2.1.1 (19th February 2025)
4+
5+
- pdftops: Use Poppler for a few old Epson laser printers
6+
This works around documents being printed off-centre, shifted
7+
towards the top right. Affected are printers using epsoneplijs:
8+
EPL-5700L, EPL-5800L, EPL-5900L, EPL-6100L, EPL-6200L (Pull request
9+
#53).
10+
11+
- Fixed bugs discovered by static analyzer OpenScanHub
12+
Possible buffer overflows, uninitialized memory, format string
13+
issues and resource leaks, ... (Pull request #54)
14+
15+
- Fix crash bugs in `ppdLoadAttributes()`
16+
When parsing the "*cupsFilter(2): ..." lines in the PPD file use
17+
`memmove()` instead of `strcpy()` as the latter does not support
18+
handling overlapping memory portions and do not move running pointer
19+
beyond the end of the input string (Pull request #51).
20+
221

322
## CHANGES IN V2.1.0 (17th October 2024)
423

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenPrinting libppd v2.1.0 Installation Guide
1+
# OpenPrinting libppd v2.1.1 Installation Guide
22

33

44
## Overview

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenPrinting libppd v2.1.0 - 2024-10-17
1+
# OpenPrinting libppd v2.1.1 - 2025-02-19
22

33
Looking for compile instructions? Read the file "INSTALL.md"
44
instead...

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AC_PREREQ([2.65])
55
# ====================
66
# Version informations
77
# ====================
8-
AC_INIT([libppd], [2.1.0], [https://github.com/OpenPrinting/libppd/issues], [libppd], [https://github.com/OpenPrinting/libppd/])
8+
AC_INIT([libppd], [2.1.1], [https://github.com/OpenPrinting/libppd/issues], [libppd], [https://github.com/OpenPrinting/libppd/])
99
libppd_version="AC_PACKAGE_VERSION"
1010
libppd_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
1111
libppd_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"

0 commit comments

Comments
 (0)