From 4dfb7254eafeae4c6cbd5648243c4d3f05ad24eb Mon Sep 17 00:00:00 2001 From: dgp Date: Tue, 7 Mar 2006 05:35:33 +0000 Subject: * READNE: Bump version number to 8.4.13 and update * changes: changes to start prep for an 8.4.13 release. * generic/tk.h: * unix/configure{.in}: * unix/tk.spec: * win/configure{.in}: --- ChangeLog | 9 +++++++++ README | 4 ++-- changes | 20 ++++++++++++++++++-- generic/tk.h | 6 +++--- unix/configure | 2 +- unix/configure.in | 4 ++-- unix/tk.spec | 6 +++--- win/configure | 2 +- win/configure.in | 4 ++-- 9 files changed, 41 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index a2fa584..7699eb8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-03-07 Don Porter + + * READNE: Bump version number to 8.4.13 and update + * changes: changes to start prep for an 8.4.13 release. + * generic/tk.h: + * unix/configure{.in}: + * unix/tk.spec: + * win/configure{.in}: + 2006-03-02 Jeff Hobbs * win/Makefile.in: convert _NATIVE paths to use / to avoid ".\" diff --git a/README b/README index cbda164..394da29 100644 --- a/README +++ b/README @@ -1,11 +1,11 @@ README: Tk - This is the Tk 8.4.12 source distribution. + This is the Tk 8.4.13 source distribution. Tcl/Tk is also available through NetCVS: http://tcl.sourceforge.net/ You can get any source release of Tcl from the file distributions link at the above URL. -RCS: @(#) $Id: README,v 1.39.2.12 2005/11/16 22:07:37 dgp Exp $ +RCS: @(#) $Id: README,v 1.39.2.13 2006/03/07 05:35:33 dgp Exp $ 1. Introduction --------------- diff --git a/changes b/changes index e4a527a..6a8dd9f 100644 --- a/changes +++ b/changes @@ -2,7 +2,7 @@ This file summarizes all changes made to Tk since version 1.0 was released on March 13, 1991. Changes that aren't backward compatible are marked specially. -RCS: @(#) $Id: changes,v 1.64.2.28 2005/12/05 22:47:47 hobbs Exp $ +RCS: @(#) $Id: changes,v 1.64.2.29 2006/03/07 05:35:33 dgp Exp $ 3/16/91 (bug fix) Modified tkWindow.c to remove Tk's Tcl commands from the interpreter when the main window is deleted (otherwise there will @@ -5871,4 +5871,20 @@ Documentation improvements [1087842,1081527,1115907,etc.] 2005-12-01 (workaround)[905830] Disable SCIM usage by Tk until properly handled (max) ---- Released 8.4.12, Decemeber 5, 2005 --- See ChangeLog for details --- +--- Released 8.4.12, December 5, 2005 --- See ChangeLog for details --- + +2005-12-12 (bug fix)[1377619] configure syntax error exposed in bash-3.1 (hobbs) + +2005-12-13 (Aqua) MouseWheel bindings; kEventMouseScroll events (steffen) + +2006-01-20 (bug fix)[905830] all events to XFilterEvent (SCIM compat) (english) + +2006-01-25 (feature enhance)[1237759] update script lib to 8.4 (fradin,porter) + +2006-02-27 (bug fix)[480862] [$img configure -data] no display change (fellows) + +2006-02-27 (bug fix)[470322] BitmapInit() thread safety (griffin,fellows) + +2006-03-02 (Aqua bug fix) image endian issue on OS X/x86 (hobbs) + +--- Released 8.4.13, March 17, 2006 --- See ChangeLog for details --- diff --git a/generic/tk.h b/generic/tk.h index 3119f3a..0099ee8 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.74.2.14 2006/02/09 19:09:43 das Exp $ + * RCS: @(#) $Id: tk.h,v 1.74.2.15 2006/03/07 05:35:33 dgp Exp $ */ #ifndef _TK @@ -48,10 +48,10 @@ extern "C" { #define TK_MAJOR_VERSION 8 #define TK_MINOR_VERSION 4 #define TK_RELEASE_LEVEL TCL_FINAL_RELEASE -#define TK_RELEASE_SERIAL 12 +#define TK_RELEASE_SERIAL 13 #define TK_VERSION "8.4" -#define TK_PATCH_LEVEL "8.4.12" +#define TK_PATCH_LEVEL "8.4.13" #ifndef _TCL # include diff --git a/unix/configure b/unix/configure index 7bd69a8..3207b18 100755 --- a/unix/configure +++ b/unix/configure @@ -557,7 +557,7 @@ fi TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL=".12" +TK_PATCH_LEVEL=".13" VERSION=${TK_VERSION} LOCALES="cs de el en en_gb eo es es_es fr it nl pl ru" diff --git a/unix/configure.in b/unix/configure.in index 4ec9216..8d63c17 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.83.2.27 2006/01/23 00:53:21 das Exp $ +# RCS: @(#) $Id: configure.in,v 1.83.2.28 2006/03/07 05:35:34 dgp Exp $ AC_INIT(../generic/tk.h) AC_PREREQ(2.13) @@ -11,7 +11,7 @@ AC_PREREQ(2.13) TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL=".12" +TK_PATCH_LEVEL=".13" VERSION=${TK_VERSION} LOCALES="cs de el en en_gb eo es es_es fr it nl pl ru" diff --git a/unix/tk.spec b/unix/tk.spec index ea92d9e..ddeef01 100644 --- a/unix/tk.spec +++ b/unix/tk.spec @@ -1,7 +1,7 @@ -# $Id: tk.spec,v 1.15.2.12 2005/11/16 22:07:37 dgp Exp $ +# $Id: tk.spec,v 1.15.2.13 2006/03/07 05:35:34 dgp Exp $ # This file is the basis for a binary Tk Linux RPM. -%define version 8.4.12 +%define version 8.4.13 %define directory /usr/local Summary: Tk graphical toolkit for the Tcl scripting language. @@ -14,7 +14,7 @@ Source: http://prdownloads.sourceforge.net/tcl/tk%{version}-src.tar.gz URL: http://www.tcl.tk/ Packager: Carina Buildroot: /var/tmp/%{name}%{version} -Requires: XFree86-libs >= 3.3.3, XFree86-devel >= 3.3.3, tcl = 8.4.12 +Requires: XFree86-libs >= 3.3.3, XFree86-devel >= 3.3.3, tcl = 8.4.13 %description The Tcl (Tool Command Language) provides a powerful platform for diff --git a/win/configure b/win/configure index abf25a8..7db12e2 100755 --- a/win/configure +++ b/win/configure @@ -536,7 +536,7 @@ fi TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL=".12" +TK_PATCH_LEVEL=".13" VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION #------------------------------------------------------------------------ diff --git a/win/configure.in b/win/configure.in index d70066d..4bd6dda 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tk installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.49.2.17 2005/11/30 00:19:01 hobbs Exp $ +# RCS: @(#) $Id: configure.in,v 1.49.2.18 2006/03/07 05:35:35 dgp Exp $ AC_INIT(../generic/tk.h) AC_PREREQ(2.13) @@ -11,7 +11,7 @@ AC_PREREQ(2.13) TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL=".12" +TK_PATCH_LEVEL=".13" VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION #------------------------------------------------------------------------ -- cgit v0.12