Skip to content

Commit

Permalink
cups-browsed 2.1.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Jan 8, 2025
1 parent f6bf616 commit 0894503
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# CHANGES - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
# CHANGES - OpenPrinting cups-browsed v2.1.1 - 2025-01-08

## CHANGES IN V2.1.1 (8th January 2025)

- Do not use global HTTP connection to local CUPS
cups-browsed used a simgle HTTP connection to CUPS and preserved it
in a global variable throughout its whole life. With the addition of
multi-threading this caused race-conditions and especially
cups-browsed getting stuck in a busy loop. Now we create separate
HTTP connections each time we need one, to eliminate this problem
(Ubuntu bugs #2049315, #2067918, and #2073504, CUPS Issue #879).

- Fix uninitialized make_model in create_queue()
Initialized the buffer by putting a terminating zero to its
beginning, also removed a wrong use of sizeof() (applying to pointer
no to buffer, Issue #42).


## CHANGES IN V2.1.0 (17th October 2024)

Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
INSTALL - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
INSTALL - OpenPrinting cups-browsed v2.1.1 - 2025-01-08
-------------------------------------------------------

This file describes how to compile and install OpenPrinting
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.1.0 - 2024-10-17
# OpenPrinting cups-browsed v2.1.1 - 2025-01-08

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.1.0], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
AC_INIT([cups-browsed], [2.1.1], [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 0894503

Please sign in to comment.