diff --git a/CHANGES.md b/CHANGES.md index 74f27688..30ecd911 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,26 @@ -# CHANGES - OpenPrinting libcupsfilters v2.0rc1 - 2023-04-11 +# CHANGES - OpenPrinting libcupsfilters v2.0rc2 - 2023-06-20 + +## CHANGES IN V2.0rc2 (20th June 2023) + +- Ignore unsupported resolution values when preparing a Raster header + via `cfRasterPrepareHeader()` function, to avoid rasterization with + wrong resolution (Issue #29, Ubuntu bug: #2022929). + +- `cfRasterPrepareHeader()`: When taking default resolution from + `urf-supported` printer IPP attribute, use first value (lowest) of + the list, to match the `ppdLoadAttributes()` function of libppd. + +- `cfIPPAttrResolutionForPrinter()`: List of resolutions is not + `IPP_TAG_RANGE`, corrected the search to use `IPP_TAG_ZERO`. + +- `cfIEEE1284NormalizeMakeModel()`: Do not consider "XPrinter" as made + by Xerox, only "XPrint" is (OpenPrinting CUPS pull request #506). + +- `INSTALL`: Recommend QPDF 11.4.0 as it fixes loss of content filled + into interactive forms as (Issue #28). + +- `INSTALL`: Fixed some typos. + ## CHANGES IN V2.0rc1 (11th April 2023) diff --git a/INSTALL b/INSTALL index 6c6ff466..76ce6345 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ -INSTALL - OpenPrinting libcupsfilters v2.0rc1 - 2023-04-11 +INSTALL - OpenPrinting libcupsfilters v2.0rc2 - 2023-06-20 ---------------------------------------------------------- This file describes how to compile and install libcupsfilters from diff --git a/README.md b/README.md index 6583027d..4e80126a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenPrinting libcupsfilters v2.0rc1 - 2023-04-11 +# OpenPrinting libcupsfilters v2.0rc2 - 2023-06-20 Looking for compile instructions? Read the file "INSTALL" instead... diff --git a/configure.ac b/configure.ac index 1f6464e6..030b1f06 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.65]) # ==================== # Version informations # ==================== -AC_INIT([libcupsfilters], [2.0rc1], [https://github.com/OpenPrinting/libcupsfilters/issues], [libcupsfilters], [https://github.com/OpenPrinting/libcupsfilters/]) +AC_INIT([libcupsfilters], [2.0rc2], [https://github.com/OpenPrinting/libcupsfilters/issues], [libcupsfilters], [https://github.com/OpenPrinting/libcupsfilters/]) libcupsfilters_version="AC_PACKAGE_VERSION" libcupsfilters_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`" libcupsfilters_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"