diff options
author | stanton <stanton> | 1998-12-11 01:31:02 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-12-11 01:31:02 (GMT) |
commit | 36552b6299e50c35a22c3d98a654e4b46ec60423 (patch) | |
tree | 301c6d8429aa0515a3eded28f1198bc29bdd07b0 | |
parent | 13ef09285b1273d467f308cdc310b0b35fdc7240 (diff) | |
download | tk-36552b6299e50c35a22c3d98a654e4b46ec60423.zip tk-36552b6299e50c35a22c3d98a654e4b46ec60423.tar.gz tk-36552b6299e50c35a22c3d98a654e4b46ec60423.tar.bz2 |
more release engineering
-rw-r--r-- | changes | 22 | ||||
-rw-r--r-- | win/makefile.bc | 4 | ||||
-rw-r--r-- | win/makefile.vc | 4 |
3 files changed, 25 insertions, 5 deletions
@@ -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.1.4.4 1998/11/25 21:16:28 stanton Exp $ +RCS: @(#) $Id: changes,v 1.1.4.5 1998/12/11 01:31:02 stanton 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 @@ -4378,3 +4378,23 @@ XLFD (no XA_FONT attribute) would lead to dereferencing NULL. (CCS) 10/21/98 (bug fix) Tk_UnderlineChars did not handle UTF strings properly so underline indices were in bytes instead of characters. (stanton) + +11/19/98 (bug fix) Fixed menus and titles so they properly display +Unicode characters under Windows. [Bug: 819] (stanton) + +11/24/98 (bug fix) Fixed a bunch of memory leaks in the Windows menu +code. [Bug: 620] (stanton) + +11/25/98 (bug fix) Various small bug fixes: (stanton) + - hidemargin option was not honored properly in menus [Bug: 859] + - disabled menu entries were getting reenabled whenever the + mouse passed over the entry [Bug: 860] + - fixed deletion order bug where a crash would result if a + binding deleted "." + +11/30/98 (bug fix) The error result was getting lost when restoring +configuration options in buttons. [Bug: 619] (stanton) + +12/8/98 (bug fix) The Windows clipboard was not correctly traslating +multibyte characters. [Bug: 935] (stanton) + diff --git a/win/makefile.bc b/win/makefile.bc index e27362a..fd4474f 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -5,7 +5,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: makefile.bc,v 1.1.4.3 1998/11/25 21:16:42 stanton Exp $ +# RCS: @(#) $Id: makefile.bc,v 1.1.4.4 1998/12/11 01:31:04 stanton Exp $ # @@ -19,7 +19,7 @@ ROOT = .. TMPDIR = . TOOLS = c:\bc45 -TCLDIR = ..\..\tcl8.1a2 +TCLDIR = ..\..\tcl8.1b1 # uncomment the following line to compile with symbols #DEBUG=1 diff --git a/win/makefile.vc b/win/makefile.vc index 1f98001..e59953b 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -4,7 +4,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Copyright (c) 1995-1997 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.1.4.5 1998/11/25 21:16:42 stanton Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.1.4.6 1998/12/11 01:31:04 stanton Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -28,7 +28,7 @@ ROOT = .. TOOLS32 = c:\progra~1\devstudio\vc TOOLS32_rc = c:\progra~1\devstudio\sharedide -TCLDIR = ..\..\tcl8.1 +TCLDIR = ..\..\tcl8.1b1 # Set this to the appropriate value of /MACHINE: for your platform MACHINE = IX86 |