Skip to content

Commit

Permalink
cups-browsed 2.0rc1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Apr 12, 2023
1 parent 5de7755 commit 59672f6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
21 changes: 20 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
# CHANGES - OpenPrinting cups-browsed v2.0b4 - 2023-03-16
# CHANGES - OpenPrinting cups-browsed v2.0rc1 - 2023-04-12

## CHANGES IN V2.0rc1 (12th April 2023)

- Prefer sending jobs in Apple Raster instead of in PDF
If a destination printer supports both PDF and Apple Raster, and if
it is not a remote CUPS queue, prefer sending the job in Apple
Raster, as printers print this more reliably.

https://bugs.launchpad.net/bugs/2014976

- run-tests.sh: Let emulated printers support PDF input
To test that cups-browsed prefers Apple Raster when the printer
supports both PDF and Apple Raster as input format, we let the
printers emulated by ippeveprinter also support PDF.

- implicitclass backend: NULL-initialize filter data field for Raster header
We are running a filter chain without PPD file, so we do not have
Raster header, so initialize it to NULL.


## CHANGES IN V2.0b4 (16th March 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 cups-browsed v2.0b4 - 2023-03-16
-------------------------------------------------------
INSTALL - OpenPrinting cups-browsed v2.0rc1 - 2023-04-12
--------------------------------------------------------

This file describes how to compile and install OpenPrinting
cups-browsed from source code. For more information on cups-browsed
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 cups-browsed v2.0b4 - 2023-03-16
# OpenPrinting cups-browsed v2.0rc1 - 2023-04-12

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([cups-browsed], [2.0b4], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
AC_INIT([cups-browsed], [2.0rc1], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
cups_browsed_version="AC_PACKAGE_VERSION"
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"
Expand Down

0 comments on commit 59672f6

Please sign in to comment.