Skip to content

Commit 59672f6

Browse files
committed
cups-browsed 2.0rc1 Release
1 parent 5de7755 commit 59672f6

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGES.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
# CHANGES - OpenPrinting cups-browsed v2.0b4 - 2023-03-16
1+
# CHANGES - OpenPrinting cups-browsed v2.0rc1 - 2023-04-12
2+
3+
## CHANGES IN V2.0rc1 (12th April 2023)
4+
5+
- Prefer sending jobs in Apple Raster instead of in PDF
6+
If a destination printer supports both PDF and Apple Raster, and if
7+
it is not a remote CUPS queue, prefer sending the job in Apple
8+
Raster, as printers print this more reliably.
9+
10+
https://bugs.launchpad.net/bugs/2014976
11+
12+
- run-tests.sh: Let emulated printers support PDF input
13+
To test that cups-browsed prefers Apple Raster when the printer
14+
supports both PDF and Apple Raster as input format, we let the
15+
printers emulated by ippeveprinter also support PDF.
16+
17+
- implicitclass backend: NULL-initialize filter data field for Raster header
18+
We are running a filter chain without PPD file, so we do not have
19+
Raster header, so initialize it to NULL.
20+
221

322
## CHANGES IN V2.0b4 (16th March 2023)
423

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
INSTALL - OpenPrinting cups-browsed v2.0b4 - 2023-03-16
2-
-------------------------------------------------------
1+
INSTALL - OpenPrinting cups-browsed v2.0rc1 - 2023-04-12
2+
--------------------------------------------------------
33

44
This file describes how to compile and install OpenPrinting
55
cups-browsed from source code. For more information on cups-browsed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenPrinting cups-browsed v2.0b4 - 2023-03-16
1+
# OpenPrinting cups-browsed v2.0rc1 - 2023-04-12
22

33
Looking for compile instructions? Read the file "INSTALL"
44
instead...

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AC_PREREQ([2.65])
55
# ====================
66
# Version informations
77
# ====================
8-
AC_INIT([cups-browsed], [2.0b4], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
8+
AC_INIT([cups-browsed], [2.0rc1], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
99
cups_browsed_version="AC_PACKAGE_VERSION"
1010
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
1111
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"

0 commit comments

Comments
 (0)