From: msweet Date: Fri, 28 Sep 2007 20:17:05 +0000 (+0000) Subject: What the heck, make it the full 1.3.3 release code - we've already got all of X-Git-Tag: release-1.6.3~203 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=56ab62c60cfb18c20468bbec182c52e7dc184195;p=thirdparty%2Fcups.git What the heck, make it the full 1.3.3 release code - we've already got all of the 1.3.3 changes anyways... git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@486 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES.txt b/CHANGES.txt index 84ae8eda5c..489bfb4285 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,20 @@ -CHANGES.txt - 2007-09-18 +CHANGES.txt - 2007-09-28 ------------------------ +CHANGES IN CUPS V1.3.3 + + - The scheduler did not use the attributes-natural-language + attribute when passing the LANG environment variable to + cups-deviced or cups-driverd. + - The scheduler did not use the printer-op-policy when + modifying classes or printers (STR #2525) + - The auth-info-required attribute was not always updated + for remote queues that required authentication. + - The German web interface localization contained errors + (STR #2523) + - The Swedish localization contained errors (STR #2522) + + CHANGES IN CUPS V1.3.2 - The 1.3.1 release was incorrectly created from the diff --git a/config-scripts/cups-common.m4 b/config-scripts/cups-common.m4 index 648ed348d4..2c76b569a2 100644 --- a/config-scripts/cups-common.m4 +++ b/config-scripts/cups-common.m4 @@ -1,5 +1,5 @@ dnl -dnl "$Id: cups-common.m4 6965 2007-09-17 21:34:07Z mike $" +dnl "$Id: cups-common.m4 6981 2007-09-19 21:51:55Z mike $" dnl dnl Common configuration stuff for the Common UNIX Printing System (CUPS). dnl @@ -20,7 +20,7 @@ dnl Set the name of the config header file... AC_CONFIG_HEADER(config.h) dnl Versio number information... -CUPS_VERSION="1.3.2" +CUPS_VERSION="1.3.3" CUPS_REVISION="" #if test -z "$CUPS_REVISION" -a -d .svn; then # CUPS_REVISION="-r`svnversion . | awk -F: '{print $NF}' | sed -e '1,$s/[[a-zA-Z]]*//g'`" @@ -287,5 +287,5 @@ AC_SUBST(DEFAULT_IPP_PORT) AC_DEFINE_UNQUOTED(CUPS_DEFAULT_IPP_PORT,$DEFAULT_IPP_PORT) dnl -dnl End of "$Id: cups-common.m4 6965 2007-09-17 21:34:07Z mike $". +dnl End of "$Id: cups-common.m4 6981 2007-09-19 21:51:55Z mike $". dnl diff --git a/cups/cups.h b/cups/cups.h index a6cedb9f1c..3890ae1998 100644 --- a/cups/cups.h +++ b/cups/cups.h @@ -1,5 +1,5 @@ /* - * "$Id: cups.h 6965 2007-09-17 21:34:07Z mike $" + * "$Id: cups.h 6981 2007-09-19 21:51:55Z mike $" * * API definitions for the Common UNIX Printing System (CUPS). * @@ -59,10 +59,10 @@ extern "C" { * Constants... */ -# define CUPS_VERSION 1.0302 +# define CUPS_VERSION 1.0303 # define CUPS_VERSION_MAJOR 1 # define CUPS_VERSION_MINOR 3 -# define CUPS_VERSION_PATCH 2 +# define CUPS_VERSION_PATCH 3 # define CUPS_DATE_ANY -1 @@ -256,5 +256,5 @@ extern void cupsSetDefaultDest(const char *name, #endif /* !_CUPS_CUPS_H_ */ /* - * End of "$Id: cups.h 6965 2007-09-17 21:34:07Z mike $". + * End of "$Id: cups.h 6981 2007-09-19 21:51:55Z mike $". */