Skip to content

Commit b2c10dd

Browse files
committed
cpdb-backend-cups 2.0b5 Release
1 parent 036953b commit b2c10dd

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CHANGES.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
# CHANGES - Common Print Dialog Backends - CUPS Backend - v2.0b4 - 2023-03-21
1+
# CHANGES - Common Print Dialog Backends - CUPS Backend - v2.0b5 - 2023-08-02
2+
3+
## CHANGES IN V2.0b5 (2nd August 2023)
4+
5+
- Remove CPDB backend info file
6+
The frontend libraries now use only the D-Bus to find available
7+
backends. This makes sure that everything works also if the frontend
8+
and/or any of the backends are installed via sanboxed packaging
9+
(like Snap for example) where the components cannot read each
10+
other's file systems (PR #26).
11+
12+
- `get_all_media()`: Do not crash on custom page size range entries
13+
The media-col-database IPP attribute contains one entry for each
14+
valid combination of page size dimensions, margins, and in some
15+
cases also media source and media type. Entries for custom page
16+
sizes contain ranges instead of single values. `get_all_media()`
17+
crashed on these. Now we let the function simply skip them.
18+
19+
- Build system: Removed unnecessary lines in `tools/Makefile.am`
20+
Removed the `TESTdir` and `TEST_SCRIPTS` entries in
21+
`tools/Makefile.am`. They are not needed and let `make install` try
22+
to install `run-tests.sh` in the source directory, where it already
23+
is, causing an error.
24+
225

326
## CHANGES IN V2.0b4 (21th March 2023)
427

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([cpdb-backend-cups], [2.0b4], [https://github.com/OpenPrinting/cpdb-backend-cups/issues/], [cpdb-backend-cups], [https://github.com/OpenPrinting/cpdb-backend-cups])
5+
AC_INIT([cpdb-backend-cups], [2.0b5], [https://github.com/OpenPrinting/cpdb-backend-cups/issues/], [cpdb-backend-cups], [https://github.com/OpenPrinting/cpdb-backend-cups])
66
AC_CONFIG_AUX_DIR([build-aux])
77
AC_CONFIG_SRCDIR([src/print_backend_cups.c])
88
AM_INIT_AUTOMAKE([-Wall dist-xz dist-bzip2 foreign])

0 commit comments

Comments
 (0)