Skip to content

Commit

Permalink
libcupsfilters 2.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Sep 21, 2023
1 parent 503a754 commit a75f7e5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
16 changes: 15 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# CHANGES - OpenPrinting libcupsfilters v2.0rc2 - 2023-06-20
# CHANGES - OpenPrinting libcupsfilters v2.0.0 - 2023-09-22

## CHANGES IN V2.0.0 (22th September 2023)

- `cfFilterUniversal()`: Support `application/vnd.cups-postscript`
Some filters (like `hpps` from HPLIP) produce this MIME type, so if
the client uses a classic driver/Printer Application and the server
IPP Everywhere, jobs fail because the library is not able to find a
suitable conversion (Pull request #31).

- `CHANGES.md`: Added reference to Chromium bug report.

- `INSTALL`: We need Ghostscript 10.01.1 to get all changes for Raster
output


## CHANGES IN V2.0rc2 (20th June 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 libcupsfilters v2.0rc2 - 2023-06-20
----------------------------------------------------------
INSTALL - OpenPrinting libcupsfilters v2.0.0 - 2023-09-22
---------------------------------------------------------

This file describes how to compile and install libcupsfilters from
source code. For more information on libcupsfilters see the file
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.0rc2 - 2023-06-20
# OpenPrinting libcupsfilters v2.0.0 - 2023-09-22

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.0rc2], [https://github.com/OpenPrinting/libcupsfilters/issues], [libcupsfilters], [https://github.com/OpenPrinting/libcupsfilters/])
AC_INIT([libcupsfilters], [2.0.0], [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 a75f7e5

Please sign in to comment.