Skip to content

Commit a511705

Browse files
committed
libppd 2.0rc1 Release
1 parent 481170d commit a511705

4 files changed

Lines changed: 34 additions & 5 deletions

File tree

CHANGES.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1-
# CHANGES - libppd v2.0b4 - 2023-02-22
1+
# CHANGES - libppd v2.0rc1 - 2023-04-11
2+
3+
## CHANGES IN V2.0rc1 (11th April 2023)
4+
5+
- PPD file generator: Set default color mode when printer attrs say "auto"
6+
Actual printer default color mode did not get set and the often "Gray"
7+
gots set for color printers. No we always choode the "best" mode.
8+
9+
https://bugs.launchpad.net/bugs/2014976
10+
11+
- ppdLoadAttributes(): Find default page size also by dimensions
12+
Some PPDs can contain the same page size twice with different names,
13+
whereas the PWG cache created from the PPD contains each size only
14+
once. This could make the default size not being found when the
15+
PPD is converted to IPP attributes. Now we search also by size and
16+
not only by name.
17+
18+
https://bugs.launchpad.net/bugs/2013131
19+
20+
- PPD generator for driverless printers: Add "*LandscapeOrientation:"
21+
according to the landscape-orientation-requested-preferred printer
22+
IPP attribute.
23+
24+
- ppdFilterLoadPPD(): Corrected PPD attribute name so that for printers
25+
which receive PWG Raster a sample Raster header gets created.
26+
27+
- Make the testppdfile utility getting built and installed by default
28+
29+
- Improved formatting of reports generated by ppdTest()
30+
231

332
## CHANGES IN V2.0b4 (22nd February 2023)
433

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
INSTALL - OpenPrinting libppd v2.0b4 - 2023-02-22
2-
-------------------------------------------------
1+
INSTALL - OpenPrinting libppd v2.0rc1 - 2023-04-11
2+
--------------------------------------------------
33

44
This file describes how to compile and install OpenPrinting libppd
55
from source code. For more information on OpenPrinting libppd see the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenPrinting libppd v2.0b4 - 2023-02-22
1+
# OpenPrinting libppd v2.0rc1 - 2023-04-11
22

33
Looking for compile instructions? Read the file "INSTALL"
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.0b4], [https://github.com/OpenPrinting/libppd/issues], [libppd], [https://github.com/OpenPrinting/libppd/])
8+
AC_INIT([libppd], [2.0rc1], [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)