Skip to content

Commit 9c40967

Browse files
committed
cups-browsed 2.0.0 Release
1 parent 93285f8 commit 9c40967

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGES.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
# CHANGES - OpenPrinting cups-browsed v2.0rc2 - 2023-06-20
1+
# CHANGES - OpenPrinting cups-browsed v2.0.0 - 2023-09-22
2+
3+
## CHANGES IN V2.0.0 (22th September 2023)
4+
5+
- Ensure we always send a valid name to `remove_bad_chars()`
6+
In case the found queue is a CUPS remote queue shared via DNS-SD,
7+
the `rp_value` can be without '/', which leads to `cups-browsed`
8+
crash if it is set to create the local queue based on the remote
9+
name (Pull request #13, Fedora Bugzilla #2150035).
10+
11+
- Use description/location from server if available, otherwise from client
12+
When we create a local queue we first check whether we actually got
13+
description and location strings from the remote server/printer, if
14+
they are empty we do not set empty strings but use the IPP
15+
attributes saved locally for our local queue. This way, if the
16+
server does not provide description/location and the user sets their
17+
own, that one is conserved through reboots and daemon restarts
18+
(Issue #323).
19+
220

321
## CHANGES IN V2.0rc2 (20th June 2023)
422

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.0rc2 - 2023-06-20
2-
--------------------------------------------------------
1+
INSTALL - OpenPrinting cups-browsed v2.0.0 - 2023-09-22
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.0rc2 - 2023-06-20
1+
# OpenPrinting cups-browsed v2.0.0 - 2023-09-22
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.0rc2], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
8+
AC_INIT([cups-browsed], [2.0.0], [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)