Skip to content

Commit

Permalink
libppd 2.0rc1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Apr 11, 2023
1 parent 481170d commit a511705
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 5 deletions.
31 changes: 30 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@
# CHANGES - libppd v2.0b4 - 2023-02-22
# CHANGES - libppd v2.0rc1 - 2023-04-11

## CHANGES IN V2.0rc1 (11th April 2023)

- PPD file generator: Set default color mode when printer attrs say "auto"
Actual printer default color mode did not get set and the often "Gray"
gots set for color printers. No we always choode the "best" mode.

https://bugs.launchpad.net/bugs/2014976

- ppdLoadAttributes(): Find default page size also by dimensions
Some PPDs can contain the same page size twice with different names,
whereas the PWG cache created from the PPD contains each size only
once. This could make the default size not being found when the
PPD is converted to IPP attributes. Now we search also by size and
not only by name.

https://bugs.launchpad.net/bugs/2013131

- PPD generator for driverless printers: Add "*LandscapeOrientation:"
according to the landscape-orientation-requested-preferred printer
IPP attribute.

- ppdFilterLoadPPD(): Corrected PPD attribute name so that for printers
which receive PWG Raster a sample Raster header gets created.

- Make the testppdfile utility getting built and installed by default

- Improved formatting of reports generated by ppdTest()


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

Expand Down
4 changes: 2 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
INSTALL - OpenPrinting libppd v2.0b4 - 2023-02-22
-------------------------------------------------
INSTALL - OpenPrinting libppd v2.0rc1 - 2023-04-11
--------------------------------------------------

This file describes how to compile and install OpenPrinting libppd
from source code. For more information on OpenPrinting libppd see the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OpenPrinting libppd v2.0b4 - 2023-02-22
# OpenPrinting libppd v2.0rc1 - 2023-04-11

Looking for compile instructions? Read the file "INSTALL"
instead...
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ AC_PREREQ([2.65])
# ====================
# Version informations
# ====================
AC_INIT([libppd], [2.0b4], [https://github.com/OpenPrinting/libppd/issues], [libppd], [https://github.com/OpenPrinting/libppd/])
AC_INIT([libppd], [2.0rc1], [https://github.com/OpenPrinting/libppd/issues], [libppd], [https://github.com/OpenPrinting/libppd/])
libppd_version="AC_PACKAGE_VERSION"
libppd_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
libppd_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"
Expand Down

0 comments on commit a511705

Please sign in to comment.