diff --git a/CHANGES.md b/CHANGES.md index a24eb00e..22be3d88 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) diff --git a/INSTALL b/INSTALL index eab77db3..7ba8115e 100644 --- a/INSTALL +++ b/INSTALL @@ -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 diff --git a/README.md b/README.md index b5d9380d..3b0940a6 100644 --- a/README.md +++ b/README.md @@ -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... diff --git a/configure.ac b/configure.ac index e0ee58ea..ebd072ad 100644 --- a/configure.ac +++ b/configure.ac @@ -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);}'`"