-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
5286 lines (3800 loc) · 183 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
A NOTE ON THE CHANGELOG:
Starting in early 2011, Tk source code has been under the management of
fossil, hosted at http://core.tcl.tk/tk/ . Fossil presents a "Timeline"
view of changes made that is superior in every way to a hand edited log file.
Because of this, many Tk developers are now out of the habit of maintaining
this log file. You may still find useful things in it, but the Timeline is
a better first place to look now.
============================================================================
2013-08-30 Don Porter <[email protected]>
*** 8.6.1 TAGGED FOR RELEASE ***
* README: Bump version number to 8.6.1
* generic/tk.h:
* library/tk.tcl:
* unix/configure.in:
* unix/tk.spec:
* win/configure.in:
* unix/configure: autoconf-2.59
* win/configure:
2013-08-25 Kevin Walzer <[email protected]>
* macosx/tkMacOSXButton.c: Bug [3016181]: Crash after scrollbar
* macosx/tkMacOSXMenu.c: destroyed, Tk Cocoa.
* macosx/tkMacOSXScrlbr.c:
* macosx/tkMacOSXWm.c:
2012-08-15 Joe English <[email protected]>
* library/ttk/progress.tcl: Bug [c597acdab3]: Call [$pb step]
in tail position in ttk::progressbar::Autoincrement, so that
the widget is in a consistent state when any write traces on
the linked -variable are fired.
2013-08-14 Jan Nijtmans <[email protected]>
* generic/tkConfig.c: Bug [069c9e43c4]: FreeOptionInternalRep() breaks
* tests/config.test: Tk_CreateOptionTable()
2013-07-02 Jan Nijtmans <[email protected]>
* unix/tcl.m4: Bug [32afa6e256]: dirent64 check is incorrect in tcl.m4
* unix/configure: (thanks to Brian Griffin)
2012-06-28 Jan Nijtmans <[email protected]>
* library/ttk/scale.tcl: [Bug 2501278]: ttk::scale keyboard binding
problem.
2013-06-05 Jan Nijtmans <[email protected]>
* generic/ttk/ttkScroll.c: [Bug 3613759]: ttk::entry and symbolic
index names.
* generic/ttk/ttkEntry.c: [Bug 2100430]: ttk::entry widget index
must be integer
* generic/tkEntry.c: Don't set interp result when it will be
overwritten later.
2013-06-04 Jan Nijtmans <[email protected]>
* unix/tcl.m4: Eliminate NO_VIZ macro as current
zlib uses HAVE_HIDDEN in stead. One more last-moment
fix for FreeBSD by Pietro Cerutti
2013-05-23 Jan Nijtmans <[email protected]>
* unix/tcl.m4: [Bug 3613668]: XFilterEvent() hangs.
* unix/configure:
* unix/tkUnixEvent.c:
2013-05-19 Jan Nijtmans <[email protected]>
* unix/tcl.m4: Fix for FreeBSD, and remove support for older
* unix/configure: FreeBSD versions. Patch by Pietro Cerutti.
2013-04-10 Jan Nijtmans <[email protected]>
* win/makefile.vc: [Bug 3568760]: Tk documentation fails to build
2013-04-01 Don Porter <[email protected]>
* tests/window.test: Bring back test window-2.9. No longer hangs.
* generic/tkInt.h: [Bug 3607830] Runtime checks that Xkb is
* unix/tkUnixEvent.c: available in the X server before trying to
* unix/tkUnixKey.c: use. Adapted from patch from Brian Griffin.
2013-03-27 Jan Nijtmans <[email protected]>
* library/button.tcl: [Bug 3608074]: Add <<Invoke>> bindings to
* library/listbox.tcl: Button's, Listbox and Menu.
* library/menu.tcl:
* doc/event.n: Document <<Invoke>>, <<ThemeChanged>>,
* doc/ttk_panedwindow.n: <<EnteredChild>> (ttk_pandedwindow only) and
* doc/ttk_spinbox.n: <<Increment/Decrement>> (ttk_spinbox only)
2013-03-13 Jan Nijtmans <[email protected]>
* unix/tcl.m4: Patch by Andrew Shadura, providing better support for
three architectures they have in Debian.
2013-03-11 Don Porter <[email protected]>
* generic/tkListbox.c: [Bug 3607326] Stop segfault from
* tests/listbox.test: [listbox .l -listvariable $array].
2013-02-28 Donal K. Fellows <[email protected]>
* unix/tkUnixKey.c (TkpGetKeySym): [Bug 3599312]: Put the
initialization of the key mapping before the input method handling so
that Alt key handling is correct on non-OSX Unix. Thanks to Colin
McDonald for developing the fix.
2013-02-18 Jan Nijtmans <[email protected]>
* unix/tkUnixEvent.c: Call XInitThreads once before the first Xlib
call. Suggested by Brian Griffin.
2013-01-14 Jan Nijtmans <[email protected]>
* win/tcl.m4: More flexible search for win32 tclConfig.sh,
* win/configure: backported from TEA.
2013-01-13 Jan Nijtmans <[email protected]>
* library/tk.tcl: [Bug 3600390]: tk_strictMotif not tested for. Now
* library/ttk/entry.tcl: all key-bindings for Control-a,b,e,f,n,p and
their shift variants respect tk_strictMotif.
2013-01-10 Jan Nijtmans <[email protected]>
* library/text.tcl: [Bug 3600251]: Inappropriate replacement of Mac
binding.
* library/tk.tcl: [Bug 3600260]: Errors in new virtual event
definitions
2012-12-11 Don Porter <[email protected]>
*** 8.6.0 TAGGED FOR RELEASE ***
* README: Bump version number to 8.6.0
* generic/tk.h:
* library/tk.tcl:
* unix/configure.in:
* unix/tk.spec:
* win/configure.in:
* unix/configure: autoconf-2.59
* win/configure:
2012-12-04 François Vogel <[email protected]>
* generic/tkTextIndex.c: [Bug 3588824]: bug in image index handling
* tests/textIndex.test: for weird image names
2012-11-16 Joe Mistachkin <[email protected]>
* generic/tkBind.c: Add support for an 'M' binding substitution
that is replaced with the number of script-based binding patterns
matched so far for the event.
2012-11-14 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 3500545]: tk_getOpenFile -multiple 1 wrong
on windows.
[Bug 3416492]: Crash in open/save file dialog in Windows 7 libraries.
[Bug 3095112]: crash when selecting file from Win7 Library.
2012-11-11 Jan Nijtmans <[email protected]>
* win/tkWinTest.c: [Bug 3585396]: winDialog.test requires user
* tests/winDialog.test: interaction.
2012-11-07 Donal K. Fellows <[email protected]>
* generic/tkFocus.c (TkSetFocusWin): [Bug 3574708]: Move window
liveness into this function from caller sites to ensure that there are
no paths where things can trip up on setting the focus to a partially
dead window.
2012-10-24 Don Porter <[email protected]>
* macosx/tkMacOSXWm.c: [Bug 3574893] Add overlooked toplevel ref
count maintenance in the [wm manage|forget] operations that could
cause segfaults due to premature free of structs.
2012-09-19 Jan Nijtmans <[email protected]>
* win/Makefile.in: Compile win32 binaries with -DTCL_NO_DEPRECATED
* win/tkiWinWm.c: Fix gcc compiler warning.
2012-09-17 Don Porter <[email protected]>
*** 8.6b3 TAGGED FOR RELEASE ***
* macosx/tkMacOSXWm.c: [Bug 3567786] Stop segfault in [wm forget].
2012-09-15 Don Porter <[email protected]>
* macosx/tkMacOSXFont.c: [Bug 3567778] Make Tk_MeasureChars() honor
the TK_AT_LEAST_ONE flag properly.
2012-09-13 Donal K. Fellows <[email protected]>
* generic/ttk/ttkEntry.c (EntryDisplay): [Bug 3567453]: Clip regions
* generic/ttk/ttkLabel.c (TextDraw): must be cleared with XSetClipMask
* xlib/xgc.c (TkSetRegion): and not TkSetRegion, or crashes will ensue
on X11-based builds, which can't handle None for a region argument.
Added a clean panic to the non-X11 TkSetRegion to catch this case and
stop such confusion from happening again.
2012-09-13 Donal K. Fellows <[email protected]>
* win/tkWinWm.c (WmTransientCmd): [Bug 3567283]: Added missing cast.
2012-09-11 Donal K. Fellows <[email protected]>
* generic/ttk/ttkEntry.c (EntryDisplay): [Bug 3566594]: Must manually
* generic/ttk/ttkLabel.c (TextDraw): reset the clip region of GCs
when not using the Xft font renderer (well, especially on classic X11)
because the GC sharing code doesn't take into account clip handling.
Thanks to Christian Nassau for identifying the problem.
2012-09-07 Donal K. Fellows <[email protected]>
* generic/tkCanvPs.c (TkCanvPostscriptCmd): [Bug 3565533]: Purge use
of variable that was only ever checked once immediately afterwards,
except for one (buggy) case where it was checked without assignment.
2012-09-07 Don Porter <[email protected]>
* README: Bump version number to 8.6b3
* generic/tk.h:
* library/tk.tcl:
* unix/configure.in:
* unix/tk.spec:
* win/configure.in:
* unix/configure: autoconf-2.59
* win/configure:
2012-08-30 Andreas Kupries <[email protected]>
* generic/tkCanvWind.c (CanvasPsWindow): Unbreak AIX, replaced use
of C99 comments in commit [961ae24a3f] (2012-08-27) with C89-style.
* win/tkWinDialog.c: Unbreak windows problems with commit [961ae24a3f]
* win/tkWinMenu.c: as well.
* win/tkWinSend.c:
2012-08-28 Jan Nijtmans <[email protected]>
* generic/tkMenuDraw.c: [Bug 3562426]: Context menu goes out of edge of
screen.
2012-08-27 Donal K. Fellows <[email protected]>
* (very many files): Reworked the generation of error messages and
postscript so that they no longer made nearly as much use of the Tcl
interpreter's string result code, in the process substantially
reducing the amount of ad-hoc stack buffers used for message
generation. There should be no observable changes from this except
that Tk now causes the ::errorCode variable to be set meaningfully in
virtually all places where errors are generated.
2012-08-24 Donal K. Fellows <[email protected]>
* library/tkfbox.tcl (GlobFiltered): [Bug 3558535]: Factor out the
filtered-sorted globbing code into one procedure that knows how to
avoid nasty problems when non-list filters are used. This allows the
rest of the [tk_getOpenFile] implementation to be ignorant of the
considerable complexities of globbing.
2012-08-23 Don Porter <[email protected]>
* unix/tkUnixWm.c: [Bugs 3554026,3561016]: Stop crash with tearoff
menus.
2012-08-23 Jan Nijtmans <[email protected]>
* library/tk.tcl: [Bug 3555644]: Better use of virtual events,
* library/ttk/entry.tcl Add <<ToggleSelection>> virtual event.
* library/ttk/treeview.tcl
2012-08-22 Jan Nijtmans <[email protected]>
TIP #403 IMPLEMENTATION
* xlib/xcolors.c: Web Colors for Tk. New colors aqua, crimson,
* xlib/rgb.txt: fuchsia, indigo, lime, olive, silver and teal.
* unix/tkUnixColor.c: Modified RGB values for gray/grey, green,
* generic/tkInt.h: maroon and purple.
* generic/tkColor.c
2012-08-17 Jan Nijtmans <[email protected]>
* win/nmakehlp.c: Add "-V<num>" option, in order to be able to detect
partial version numbers.
2012-08-15 Jan Nijtmans <[email protected]>
* win/buildall.vc.bat: Only build the threaded builds by default
* win/rules.vc: For msvcrt static builds, allow to link
against libraries where the 'x' is missing
(generated by Makefile.in).
* win/makefile.vc: Always compile Tk with -DUSE_TCL_STUBS,
formatting.
* library/tk.tcl: [FRQ 3555324]: On Windows, re-define Ctrl-A
for Select-All., as most Windows applications
do.
2012-08-11 Jan Nijtmans <[email protected]>
* library/*.tcl: [Bug 3555644]: Better use of virtual events.
Pre-define 10 new Virtual events, and correct various bindings
according to the Mac OSX documentation.
*** POTENTIAL INCOMPATIBILITY *** for code that assumes that widget
classes are bound to literal events or that was using one of the new
virtual event names itself for other purposes.
* win/rules.vc: Sync with tcl version of rules.vc
2012-08-11 François Vogel <[email protected]>
* generic/tkTextTag.c: [Bug 3554273]: Test textDisp-32.2 failed
2012-08-09 Stuart Cassoff <[email protected]>
* generic/tkEvent.c: Remove useless (void *) casts introduced in
* unix/tkUnixEvent.c: checkin [81e50c85ed]. The warnings were false
* unix/tkUnixKey.c: flags from a faulty OpenBSD C compiler.
* unix/tkUnixRFont.c:
2012-07-31 Donal K. Fellows <[email protected]>
* unix/tkUnixKey.c (TkpSetKeycodeAndState, TkpInitKeymapInfo)
(TkpGetKeySym): [Bug 3551802]: Convert from XKeycodeToKeysym to
XkbKeycodeToKeysym to fix deprecation warning.
2012-07-31 Jan Nijtmans <[email protected]>
* win/nmakehlp.c: Backport from Tcl 8.6, but add -Q option from
sampleextension.
2012-07-17 Jan Nijtmans <[email protected]>
* win/makefile.vc: [Bug 3544932]: Visual studio compiler check fails
2012-07-05 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c (GetFileNameW): [Bug 3540127]: Better solution,
using Tcl_GetIndexFromObj in stead of Tcl_GetIndexFromObjStruct
2012-07-05 Donal K. Fellows <[email protected]>
* doc/wm.n (geometry): [Bug 3538401]: Better description of the key
difference between [wm geometry] and [winfo geometry]; the former
represents the window manager's understanding, not Tk's.
2012-07-04 Donal K. Fellows <[email protected]>
* win/tkWinDialog.c (GetFileNameW): [Bug 3540127]: Clean up the tables
of options for the file dialogs so that options are listed in error
messages in alphabetical order.
2012-07-02 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 3540127]: filebox.test fails on win32
2012-06-26 Jan Nijtmans <[email protected]>
* unix/configure.in: Link cygwin wish.exe with win32 tk.dll, only
* unix/Makefile.in: in combination with --enable-shared.
* unix/tcl.m4:
* unix/configure: autoconf-2.59
2012-06-24 Jan Nijtmans <[email protected]>
* doc/SetOptions.3: [FRQ-3536507]: clientData field in Tk_OptionSpec
* generic/tk.h: should be "const void *"
* generic/tk*.c: Eliminate many unnessessary type casts
2012-06-22 Jan Nijtmans <[email protected]>
* win/Makefile.in: [Bug 1844430]: cygwin make fails in 8.4.14-8.5b3
* unix/tcl.m4: Sync with Tcl version.
* unix/configure: autoconf-2.59
2012-06-20 Jan Nijtmans <[email protected]>
* generic/tk.decls: [FRQ 2636558] simplification. Restore forwards
* generic/tkBitmap.c: compatibility with Tk 8.5.
* generic/tkdecls.h:
* generic/tkStubInit.c:
2012-06-15 Donal K. Fellows <[email protected]>
* generic/ttk/ttkTreeview.c (unshareObj): [Bug 3535362]: Changed name
of 'unshare' internal function to avoid clash with some libc versions.
2012-06-12 Donal K. Fellows <[email protected]>
* unix/tkUnixRFont.c (Tk_DrawChars, TkUnixSetXftClipRegion): Add some
* generic/ttk/ttkEntry.c (EntryDisplay): special magic to make the
* generic/ttk/ttkLabel.c (TextDraw): text clipping work right with the
Xft-based renderer (which doesn't use the standard Tk GC except to
supply the color).
2012-06-11 Donal K. Fellows <[email protected]>
* generic/ttk/ttkLabel.c (TextDraw): [Bug 3294450]: Get the clipping
* generic/ttk/ttkEntry.c (EntryDisplay): of text in Ttk various text
elements (e.g., buttons, entries, etc.) correct. Stops a whole range
of visual problems, including loss of the second and subsequent lines
of a label when the first line doesn't entirely fit, and failing to
draw the last character of an entry at all if it doesn't all exactly
fit in the space available (a problem I've noticed in tkchat, and been
very frustrated with).
2012-06-10 Jan Nijtmans <[email protected]>
* library/*.tcl: [Bug 3534137]: $tcl_platform(platform) !=
[tk windowingsystem]
2012-06-08 Jan Nijtmans <[email protected]>
* generic/tkMain.c: Implement TkCygwinMainEx for loading
* generic/tkWindow.c: Cygwin's Tk_MainEx from the Tk dll.
* generic/tkInt.decls: Change XChangeWindowAttributes signature and
* generic/tkIntXlibDeclsDecls.h: many others to match Xorg, needed for
Cygwin.
2012-06-06 Jan Nijtmans <[email protected]>
* unix/Makefile.in: [Bug 3532186] pkgIndex.tcl file complexity
* win/Makefile.in:
2012-05-31 Jan Nijtmans <[email protected]>
* generic/tkWindow.c: Simplify determination whether we are running
* generic/tkStubInit.c: on cygwin. Export Tk_GetHINSTANCE,
* generic/tkInt.decls: TkSetPixmapColormap and TkpPrintWindowId from
the Cygwin dll, sync stub table with Tk 8.6
win32 version.
* generic/tk*Decls.h: re-generated
* win/Makefile.in: "make genstubs" when cross-compiling on UNIX
* win/stubs.c: Implement XFlush and various others for win32
* win/tkWinPort.h: as stubs, so win32 extensions using those can
run under CYGWIN as well.
* generic/tkMain.c: Allow tk86.dll to cooperate with the cygwin
console.
2012-05-29 Donal K. Fellows <[email protected]>
* generic/tkInt.decls (TkMacOSXDrawable): Added OSX-specific mechanism
to allow retrieval of the drawing surface. Allows Canvas3d to be
adapted to 8.6.
2012-05-28 François Vogel <[email protected]>
* doc/text.n: [Bug 1630251]: Doc for -endline option was wrong
2012-05-28 François Vogel <[email protected]>
* generic/tkTextDisp.c: [Bug 1630254]: missing scrolling of text widget
when from a -startline == -endline initial state it is configured to
display a non-empty part of it
2012-05-24 Jan Nijtmans <[email protected]>
* win/stubs.c: Change XSetCommand signature to match Xorg,
* win/tkWinWm.c: needed for Cygwin.
* generic/tkInt.decls
* generic/tk*Decls.h: re-generated
2012-05-09 Jan Nijtmans <[email protected]>
* win/tkWinWm.c: Change TkpWmSetState signature to match Xorg,
* generic/tkInt.decls: needed for Cygwin. (not needed for Mac)
* generic/tkIntPlatDeclsDecls.h:
* generic/tkWindow.c: Don't check for cygwin in win32 static build.
* unix/tkUnixPort.h: Some more useful #defines for Cygwin
2012-05-05 Jan Nijtmans <[email protected]>
* xlib/xcolors.c: Single "const" addition
* generic/tkWindow.c: If tk.dll loaded in cygwin, don't use the
win32 file dialogs
2012-05-04 Jan Nijtmans <[email protected]>
* library/menu.tcl: [Bug 2768586]: Menu posting on dual monitors
2012-04-29 Jan Nijtmans <[email protected]>
* library/tk.tcl: [Bug 533519]: Window placement with multiple screens
* generic/tkBind.c:
* generic/tkFocus.c:
* generic/tkMenuDraw.c:
* generic/tkWinWm.c:
2012-04-26 Donal K. Fellows <[email protected]>
* generic/tkStubInit.c (Tk_GetHINSTANCE): Ensure that this is defined
for OSX.
2012-04-26 Jan Nijtmans <[email protected]>
* generic/tk.decls: [Bug 3508771]: Implement TkClipBox, Tk*Region
* generic/tkInt.decls: and Tk_GetHINSTANCE for Cygwin
* generic/tkPlatDecls.h:
* generic/tkintDecls.h:
* generic/tkStubInit.c:
2012-04-22 Donal K. Fellows <[email protected]>
* generic/tkBind.c (ExpandPercents): [Bug 3520202]: Ensure that the
%k, %K and %N substitutions use dummy tokens with <MouseWheel> events
and that the %D subsitution is a dummy with <Key>/<KeyRelease>. This
was causing significant indigestion (and a read of goodness knows what
memory) to Tkinter/Python because of the way they map events between
languages.
2012-04-20 Donal K. Fellows <[email protected]>
* generic/tkWindow.c (commands): Ensure that all descriptions of
commands created by Tk are correct.
2012-04-20 Jan Nijtmans <[email protected]>
* generic/tk.tcl: Use vroot size in stead of screen size for clipping
window coordinates in ::tk::PlaceWindow.
* generic/dialog.tcl: Use ::tk::PlaceWindow in dialog.tcl, instead of
dumplicating the code there. (harmless part of [Bug 533519])
2012-04-13 Jan Nijtmans <[email protected]>
* win/rules.vc: [Bug 3517448]: TclKit build fails (unresolved
__strtoi64)
2012-04-07 Jan Nijtmans <[email protected]>
* generic/tkBind.c: [Bug 3176239]: control-MouseWheel causes segv
2012-03-30 Jan Nijtmans <[email protected]>
* unix/tcl.m4: [Bug 3511806]: Compiler checks too early
* unix/configure.in: This change allows to build the cygwin
* unix/configure and mingw32 ports of Tcl/Tk to build
* win/tcl.m4: out-of-the-box using a native or cross-
* win/configure.in: compiler.
* win/configure
2012-03-21 Jan Nijtmans <[email protected]>
* generic/tkColor.c: [Bug 2809525]: Abort on overlong color name.
* unix/tkUnixColor.c:
2012-03-18 Jan Nijtmans <[email protected]>
* xlib/xcolors.c: [FRQ 3503317]: XParseColor speedup
* xlib/rgb.txt: List of all colors accepted by Tk in Xorg format
* tests/color.test: Added test case for all colors in rgb.txt
2012-03-13 Donal K. Fellows <[email protected]>
* doc/*.3, doc/*.n: Minor spelling fixes.
2012-03-07 Donal K. Fellows <[email protected]>
* generic/tkObj.c (GetPixelsFromObjEx): [Bug 3497848]: Better rounding
of pixel values to integers.
2012-03-04 Jan Nijtmans <[email protected]>
* unix/tcl.m4: Patch from the cygwin folks
* unix/configure: (re-generated)
2012-02-28 François Vogel <[email protected]>
* generic/tkText.c: [Bug 1630262, Bug 1615425]: segfault
* generic/tkTextBTree.c when deleting lines or tagging outside of
* generic/tkTextDisp.c the -startline/-endline range with peer
* generic/tkTextMark.c text widgets.
* tests/text.test [Bug 3487407]: Weird text indices.
* tests/textMark.test
2012-02-28 Donal K. Fellows <[email protected]>
* doc/canvas.n: [Bug 3495198]: Corrected types of bitmap options.
2012-02-26 Jan Nijtmans <[email protected]>
* xlib/xcolors.c: Provide fallback for _strtoi64
* win/configure.in: Detect whether _strtoi64 is available
* win/configure: (regenerated)
2012-02-25 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 1913750]: tk_chooseDirectory -initialdir
internationalization problem.
2012-02-15 Jan Nijtmans <[email protected]>
* xlib/xcolors.c: [Bug 3486474]: Inconsistent color scaling
* generic/tkColor.c: new internal function TkParseColor
* generic/tkInt.h:
* generic/tk*.c: Change XParseColor() to TkParseColor() everywhere.
2012-02-10 Donal K. Fellows <[email protected]>
* win/tkWinDialog.c (GetFileName): Ensure that we do not convert a
result list to a string inadvertently, as this causes problems with
Tkinter's handling of multiple filename results. Issue was reported
via StackOverflow: http://stackoverflow.com/q/9227859/301832
2012-01-30 Joe English <[email protected]>
* library/ttk/combobox.tcl: [Bug 2925561] Don't take focus in
disabled state.
2012-01-29 Jan Nijtmans <[email protected]>
* win/tkImgPhoto.c: [Bug 3480634]: PNG Images missing in menus on Mac
2012-01-27 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 3480471]: tk_getOpenFile crashes on Win64
2012-01-26 François Vogel <[email protected]>
* generic/tkTextDisp.c: [Bug-1754043] and [Bug-2321450]: When
-blockcursor is true, the cursor appears as a blinking bar which
expands to the right edge of the widget.
2012-01-25 Jan Nijtmans <[email protected]>
* generic/tkImgPhoto.c: [Bug 2433260]: non-critical error in
Tk_PhotoPutBlock
2012-01-25 François Vogel <[email protected]>
* generic/tkText.c: Don't increase the epoch twice
2012-01-25 François Vogel <[email protected]>
* generic/tkText.c: [Bug-1630271]: segfault/infinite loop
* generic/tkTextMark.c: when a mark is before -startline
* tests/textMark.test:
2012-01-25 François Vogel <[email protected]>
* generic/tkText.c: [Bug-3475627]: Test text-31.11 fails
2012-01-22 François Vogel <[email protected]>
* generic/tkTextMark.c: [Bug-3288113,3288121]: Missing marks/endless
* tests/textMark.test: loop in text mark prev/next
2012-01-19 François Vogel <[email protected]>
* generic/tkText.c: [Bug-3021557]: Moving the cursor in
* tests/text.test: elided text freezes Tk
2011-12-22 Don Porter <[email protected]>
* win/tkWinMenu.c: [Bug 3235256] Keep menu entry IDs out of system
values. Thanks Colin McDonald.
2011-12-13 Donal K. Fellows <[email protected]>
* doc/getOpenFile.n: Make example follow best practices. Issue spotted
by Emiliano Gavilán.
2011-11-29 Donal K. Fellows <[email protected]>
* tests/safe.test: [Bug 1847925]: Update list of hidden commands.
2011-11-22 Jan Nijtmans <[email protected]>
* unix/Makefile.in: [Bug 1945073]: Demo square.tcl
* win/Makefile.in: cannot run; need package tktest
2011-11-17 Jan Nijtmans <[email protected]>
* doc/menu.n: Fix the escaping of leading dots in lines that start with
a widget name, so that nroff doesn't mistake it as a non-existing macro
and skips the entire line.
2011-11-14 Alexandre Ferrieux <[email protected]>
* generic/tkCanvas.c: [Bug 3437816]: Missing TCL_ERROR return
in [canvas lower].
2011-11-08 Reinhard Max <[email protected]>
* unix/Makefile.in: Add square to DEMOPROGS. It contains a shebang
and hence should get installed with executable bits.
* doc/label.n: Fix the escaping of leading dots in lines that
* doc/text.n: start with a widget name, so that nroff
* doc/ttk_notebook.n: doesn't mistake it as a non-existing macro
* doc/pack.n: and skips the entire line.
2011-11-01 Donal K. Fellows <[email protected]>
* generic/tkObj.c (GetPixelsFromObjEx): [Bug 3431491]: Use a bit of
type hackery to allow numbers to be interpreted as coordinates (most
notably on a canvas) without reinterpreting via a string.
2011-10-27 Kevin B. Kenny <[email protected]>
* generic/tkInt.h: [Bug 3410609]: Change the event mechanism
* unix/tkUnixEvent.c: for <KeyPress> events to use the keysym
* unix/tkUnixKey.c: returned by XLookupString in preference to
the one that appears in the raw X event at any level. This change
allows binding to ISO_Level3_Shift-ed characters, composed characters,
and similar beasts. KeyRelease events still work as they did before,
as does Tk with input methods disabled.
2011-10-13 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: Internationalization of all Windows font
* win/tkWinFont.c: handling.
2011-10-10 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 3163893]: -initialdir option bug for
tk_chooseDirectory under XP
2011-10-05 Jan Nijtmans <[email protected]>
* win/tkWinInt.h: Remove tkWinProcs, as it is no longer
* win/tkWinX.c: being used.
* win/tkWinTest.c:
2011-09-27 Donal K. Fellows <[email protected]>
* generic/tkImgPNG.c (WriteExtraChunks): [Bug 3405839]: Write the sDAT
chunk with the correct length.
2011-09-08 Jan Nijtmans <[email protected]>
* generic/tkDecls.h: Don't let tkDecls.h depend on <tchar.h> on
windows, not even in UNICODE mode.
2011-09-01 Donal K. Fellows <[email protected]>
* doc/photo.n: Correctly documented what the [$ph data] command
produces without the -format option.
2011-08-16 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 3388350]: mingw64 compiler warnings
* win/tkWinEmbed.c
* win/tkWinMenu.c
* win/tkWinTest.c
* win/tkWinWm.c
* win/tkWinX.c
2011-08-13 Jan Nijtmans <[email protected]>
* generic/tkBitmap.c: [Bug 3388350]: mingw64 compiler warnings
* generic/tkConsole.c
* win/tkWinDialog.c
* win/tkWinEmbed.c
* win/tkWinSend.c
* win/tkWinSendCom.c
2011-08-05 Don Porter <[email protected]>
*** 8.6b2 TAGGED FOR RELEASE ***
* changes: Updates for 8.6b2 release.
2011-08-03 Don Porter <[email protected]>
* win/tkWinWm.c: [Bug 2891541]: Merge of 8.5.8 fix from Pat Thoyts.
Permit normal behaviour on Windows for a grabbed toplevel when it
is the main window.
2011-08-03 Jan Nijtmans <[email protected]>
* win/tkWinDialog.c: [Bug 3314770]: regression - Windows file
dialogs not resizable
2011-07-28 Don Porter <[email protected]>
* changes: Updates for 8.6b2 release.
2011-07-28 Jan Nijtmans <[email protected]>
* xlib/X11/Xutil.h: [Bug 3380684]: XEmptyRegion prototype doesn't
match usage
2011-07-19 Donal K. Fellows <[email protected]>
* doc/*.3, doc/*.n: Many small fixes to documentation as part of
project to improve quality of generated HTML docs.
2011-07-18 Don Porter <[email protected]>
* README: Bump version number to 8.6b2
* generic/tk.h:
* library/tk.tcl:
* unix/configure.in:
* unix/tk.spec:
* win/configure.in:
* unix/configure: autoconf-2.59
* win/configure:
2011-06-29 Don Porter <[email protected]>
* generic/ttk/ttkTrace.c: [Bug 3341056]: Correct segfault due to flaw
* tests/ttk/ttk.test: in the 2011-06-17 commit.
2011-06-19 Donal K. Fellows <[email protected]>
* doc/wm.n: Added documentation of the -type attribute that was
introduced in TIP#359, and moved documentation of -alpha to common
section as it is supported on all platforms now.
2011-06-17 Don Porter <[email protected]>
* generic/ttk/ttkTrace.c: Workaround Bug 3062331.
* tests/ttk/ttk.test:
* changes: Updated
2011-06-16 Jan Nijtmans <[email protected]>
* win/tcl.m4: Sync with win/tcl.m4 from Tcl
* win/configure: (regenerated)
2011-06-10 Don Porter <[email protected]>
* generic/tkEntry.c: [Bug 3315731]: Fix [$entry -invcmd].
2011-06-10 Don Porter <[email protected]>
* README: Correct some README bitrot.
* macosx/README:
2011-06-07 Don Porter <[email protected]>
* generic/tkEntry.c: [Bug 2358545]: Restore support for values "08"
and "09" in a [spinbox] configured to use -from and -to values.
2011-06-06 Don Porter <[email protected]>
* generic/tkConsole.c: [Bug 2546087]: Restore proper NUL output to
* library/console.tcl: the [console].
2011-04-22 Peter Spjuth <[email protected]>
* generic/tkCanvPoly.c: [Bug 3291543]: There was a crash if dchars
* tests/canvas.test: removed all coordinates of a polygon.
2011-04-21 Peter Spjuth <[email protected]>
* doc/checkbutton.n: Document all variable options as global.
* doc/radiobutton.n:
* doc/listbox.n:
* doc/menu.n:
* doc/options.n:
* doc/ttk_combobox.n:
* doc/ttk_entry.n:
* doc/ttk_progressbar.n:
* doc/ttk_widget.n:
2011-04-06 Jan Nijtmans <[email protected]>
* unix/tkAppInit.c: Make symbols "main" and "Tcl_AppInit"
MODULE_SCOPE: there is absolutely no reason for exporting them.
* unix/tcl.m4: Don't use -fvisibility=hidden with static
* unix/configure libraries (--disable-shared)
2011-04-04 Peter Spjuth <[email protected]>
* tests/grid.test:
* generic/tkGrid.c: [Bug 723765]: When a slave was removed from grid,
the -in option was not remembered.
2011-04-04 Joe Mistachkin <[email protected]>
* win/tkWinDialog.c (FontchooserShowCmd): Change the CHOOSEFONT and
LOGFONT used with sizeof to CHOOSEFONTA and LOGFONTA to match their
local variable declarations (i.e. mismatch with -DUNICODE). This code
is not present in 8.4 or 8.5.
2011-04-04 Peter Spjuth <[email protected]>
* doc/labelframe.n:
* doc/frame.n:
* generic/tkFrame.c: [Bug 2997657]: Removed -container from labelframe
documentation since it does not work as expected and does not make
sense as a container. Added note to frame about restrictions when used
as a container.
2011-03-28 Donal K. Fellows <[email protected]>
* library/tk.tcl (::tk::FindAltKeyTarget): Make this handle the
traversal of the logical window manager hierarchy correctly. Based on
comments by Emiliano Gavilan.
2011-03-28 Jan Nijtmans <[email protected]>
* generic/tkTextBTree.c: [Bug 3129527]: Fix buffer overflow w/ GCC 4.5
and -D_FORTIFY_SOURCE=2. One more place where this problem could
appear.
2011-03-24 Jan Nijtmans <[email protected]>
* win/tkWinMenu.c: [Bug #3239768]: tk8.4.19 (and later) WIN32
menu font support.
2011-03-16 Jan Nijtmans <[email protected]>
* unix/tcl.m4: Make SHLIB_LD_LIBS='${LIBS}' the default and
* unix/configure: set to "" on per-platform necessary basis.
Backported from TEA, but kept all original platform code which was
removed from TEA.
2011-03-14 Jan Nijtmans <[email protected]>
* generic/tkBind.c: Eliminate some more unneeded write-only
* generic/tkCanvUtil.c: variables (discovered by gcc-4.6)
* generic/tkFocus.c:
2011-03-12 Donal K. Fellows <[email protected]>
Remove casts from uses of ckalloc/ckfree/... now that Tcl declares
them to be using useful casts internally.
2011-03-12 Jan Nijtmans <[email protected]>
* win/tkWin32Dll.c: Eliminate unneeded _TkFinalize wrapper.
2011-03-11 Jan Nijtmans <[email protected]>
* generic/ttk/ttkDefaultTheme.c: Eliminate some unneeded write-only
* generic/ttk/ttkManager.c: variables (discovered by gcc-4.6)
* generic/ttk/ttkSquare.c:
2011-03-09 Reinhard Max <[email protected]>
* unix/configure.in: Use a symbol from libXft itself for the link
test rather than one from libfreetype, because the latter doesn't
work when the linker is called with --as-needed.
2011-03-03 Alexandre Ferrieux <[email protected]>
* generic/tkCanvLine.c: [Bug 3175610]: Incomplete refresh of line items.
2011-03-02 Donal K. Fellows <[email protected]>
* doc/tk_mac.n (new file): Description of OSX-specific functionality
in Tk, contributed by Kevin Walzer.
* doc/button.n, doc/font.n, doc/menu.n: Noted which parts of these
commands are intentionally not fully supported on OSX.
2011-01-24 Joe English <[email protected]>
* generic/tkSelect.c: Fix for [Bug #3164879]: (memory allocation
bug introduced by [Patch #3129527])
2011-01-22 Joe English <[email protected]>
* generic/ttk/ttkEntry.c(ttk::combobox): Add missing
'validate' command (reported by schelte).
2011-01-13 Jan Nijtmans <[email protected]>
* library/msgbox.tcl: [Patch #3154705]: Close button has no effect
2011-01-12 Jan Nijtmans <[email protected]>
* win/tcl.m4: handle --enable-64bit=ia64 for gcc
* win/configure.in typo
* win/configure: (autoconf-2.59)
2011-01-06 Kevin Walzer <[email protected]>
* macosx/README: Added info on textured background windows.
* macosx/tkMacOSXFont.c: Fix for 2857300, improves rounding up on text
width [submitted by treectrl]
* macosx/tkMacOSXMenu.c: Fix for radiobuttons and checkbuttons not
displaying in popup menus, and disabled menu entries.
* macosx/tkMacOSXWindowEvent.c: Fix for 3086887, speeds up scrolling;
also textured background windows
* macosx/tkMacOSXWm.c: Textured background windows.
2011-01-06 Stuart Cassoff <[email protected]>
* generic/tkEvent.c: Cast some NULLs to (void *) in order to quash
* unix/tkUnixEvent.c: "missing sentinel in function call"
* unix/tkUnixKey.c: compiler warnings.