From 982d4884da104bd0363685c9894aabb3cefedb07 Mon Sep 17 00:00:00 2001 From: Till Kamppeter Date: Mon, 13 Feb 2023 23:43:36 +0100 Subject: [PATCH] cpdb-backend-cups 2.0b2 Release --- CHANGES.md | 28 +++++++++++++++++++++++++++- configure.ac | 2 +- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 740c7fc..2270789 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,30 @@ -# CHANGES - Common Print Dialog Backends - CUPS Backend - v2.0b1 - 2022-12-12 +# CHANGES - Common Print Dialog Backends - CUPS Backend - v2.0b2 - 2023-02-13 + +## CHANGES IN V2.0b2 (13th February 2023) + +- Return printer list upon activation and subscribe to cups for + updates (PR #20) + * Return printer list synchronously upon activation + * Subscribe to CUPS notifications for printer updates + * Automatically update frontends about new printers found, old + printers lost, or printer state changed + +- Added the support of cpdb-libs for translations + * Using general message string catalogs from CUPS and also message + string catalogs from individual print queues/IPP printers. + * Message catalog management done by libcupsfilters 2.x, via the + `cfCatalog...()` API functions (`catalog.h`). + +- Option group support + +- Added `billing-info` option (PR #19) + +- Log messages handled by frontend + +- Use pkg-config variables instead of hardcoded paths (PR #17) + +- Build system: Let "make dist" also create .tar.bz2 and .tar.xz + ## CHANGES IN V2.0b1 (12th December 2022) diff --git a/configure.ac b/configure.ac index e0021e1..d637813 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([cpdb-backend-cups], [2.0b1], [https://github.com/OpenPrinting/cpdb-backend-cups/issues/], [cpdb-backend-cups], [https://github.com/OpenPrinting/cpdb-backend-cups]) +AC_INIT([cpdb-backend-cups], [2.0b2], [https://github.com/OpenPrinting/cpdb-backend-cups/issues/], [cpdb-backend-cups], [https://github.com/OpenPrinting/cpdb-backend-cups]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/print_backend_cups.c]) AM_INIT_AUTOMAKE([-Wall dist-xz dist-bzip2 foreign])