Skip to content

Commit

Permalink
libcupsfilters 2.0rc2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Jun 20, 2023
1 parent 545a049 commit 9c0d252
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
24 changes: 23 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
@@ -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
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 libcupsfilters v2.0rc1 - 2023-04-11
# OpenPrinting libcupsfilters v2.0rc2 - 2023-06-20

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([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);}'`"
Expand Down

0 comments on commit 9c0d252

Please sign in to comment.