From 91a99f02a6cbc834a2bc57ac252d15a892101cf1 Mon Sep 17 00:00:00 2001 From: Till Kamppeter Date: Wed, 24 Aug 2022 14:35:56 +0200 Subject: [PATCH] cups-filters 1.28.16 Release --- INSTALL | 2 +- NEWS | 14 +++++++++++++- README | 2 +- configure.ac | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/INSTALL b/INSTALL index f861d1617..bd69d1e35 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ -INSTALL - OpenPrinting CUPS Filters v1.28.15 - 2022-04-11 +INSTALL - OpenPrinting CUPS Filters v1.28.16 - 2022-08-24 --------------------------------------------------------- This file describes how to compile and install OpenPrinting CUPS diff --git a/NEWS b/NEWS index 003514858..e810978c6 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,18 @@ -NEWS - OpenPrinting CUPS Filters v1.28.15 - 2022-04-11 +NEWS - OpenPrinting CUPS Filters v1.28.16 - 2022-08-24 ------------------------------------------------------ +CHANGES IN V1.28.16 + + - imagetoraster, imagetopdf, libcupsfilters: Added support for + reading the resolution of an image from its EXIF data when + loading it. This way we get the image reproduced in its + original size with "print-scaling=none" (Issue #362). + - libcupsfilters: Replaced deprecated data types uint16 and + uint32. The function to read TIFF image files via libtiff in + cupsfilters/image-tiff.c uses the deprecated types uint16 + and uint32. The replacements for these types are uint16_t + and uint32_t. + CHANGES IN V1.28.15 - pdftops: In pdftops identify old LaserJets more precisely diff --git a/README b/README index e3cb51f73..14d8f522b 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -README - OpenPrinting CUPS Filters v1.28.15 - 2022-04-11 +README - OpenPrinting CUPS Filters v1.28.16 - 2022-08-24 -------------------------------------------------------- Looking for compile instructions? Read the file "INSTALL.txt" diff --git a/configure.ac b/configure.ac index cff1aedc9..c1b108fa3 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_PREREQ([2.65]) # ==================== m4_define([cups_filters_version_major],[1]) m4_define([cups_filters_version_minor],[28]) -m4_define([cups_filters_version_micro],[15]) +m4_define([cups_filters_version_micro],[16]) m4_define([cups_filters_version],[cups_filters_version_major.cups_filters_version_minor.cups_filters_version_micro]) # =============