-
Notifications
You must be signed in to change notification settings - Fork 33
/
Change.log
6420 lines (4037 loc) · 209 KB
/
Change.log
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
Note: this file is not updated anymore. Please use "git log" instead.
The git repository can be found at
https://github.com/eserte/perl-tk.git
------------------------------------------------------------------------
r14067 | srezic | 2010-05-27 21:16:53 +0200 (Thu, 27 May 2010) | 1 line
* inc'd versions
------------------------------------------------------------------------
r14066 | srezic | 2010-05-27 21:16:43 +0200 (Thu, 27 May 2010) | 1 line
* preparing 804.029
------------------------------------------------------------------------
r14065 | srezic | 2010-05-27 21:16:33 +0200 (Thu, 27 May 2010) | 1 line
* made after.t a TODO test on Windows, because of RT #57009
------------------------------------------------------------------------
r13983 | srezic | 2010-05-13 01:58:01 +0200 (Thu, 13 May 2010) | 1 line
* added xt/rt7474.t to MANIFEST
------------------------------------------------------------------------
r13981 | srezic | 2010-05-13 01:41:05 +0200 (Thu, 13 May 2010) | 1 line
* update
------------------------------------------------------------------------
r13980 | srezic | 2010-05-13 01:38:17 +0200 (Do, 13. Mai 2010) | 1 Zeile
* inc'd version
------------------------------------------------------------------------
r13979 | srezic | 2010-05-13 01:38:04 +0200 (Do, 13. Mai 2010) | 1 Zeile
* inc'd Tk version
------------------------------------------------------------------------
r13978 | srezic | 2010-05-13 01:37:52 +0200 (Do, 13. Mai 2010) | 1 Zeile
* release preparations (for 804.028_503)
------------------------------------------------------------------------
r13974 | srezic | 2010-05-10 21:14:54 +0200 (Mo, 10. Mai 2010) | 2 Zeilen
* fixed Strawberry Perl builds
(informal patch by Eduard Wulff)
------------------------------------------------------------------------
r13873 | srezic | 2010-03-22 21:43:53 +0100 (Mo, 22. Mär 2010) | 1 Zeile
* updated Changes
------------------------------------------------------------------------
r13830 | srezic | 2010-02-18 12:02:25 +0100 (Do, 18. Feb 2010) | 2 Zeilen
* get rid of all computed $VERSIONs
https://rt.cpan.org/Ticket/Display.html?id=54745
------------------------------------------------------------------------
r13813 | srezic | 2010-02-06 18:29:59 +0100 (Sa, 06. Feb 2010) | 1 Zeile
* a missing rgb.txt on X11 systems is not anymore an error
------------------------------------------------------------------------
r13812 | srezic | 2010-02-06 18:29:50 +0100 (Sa, 06. Feb 2010) | 3 Zeilen
* removed special lddlflags setting on Darwin systems, which might
cause bus errors
http://rt.cpan.org/Public/Bug/Display.html?id=39593
------------------------------------------------------------------------
r13811 | srezic | 2010-02-06 18:29:39 +0100 (Sa, 06. Feb 2010) | 1 Zeile
* avoid installing fix_4_os2.pl
------------------------------------------------------------------------
r13810 | srezic | 2010-02-06 18:29:31 +0100 (Sa, 06. Feb 2010) | 1 Zeile
* removed probably outdated RedHat-specific warning from Makefile.PL
------------------------------------------------------------------------
r13809 | srezic | 2010-02-06 18:29:22 +0100 (Sa, 06. Feb 2010) | 1 Zeile
* check_display_harness now outputs a formally correct TAP skip
------------------------------------------------------------------------
r13808 | srezic | 2010-02-06 18:29:11 +0100 (Sa, 06. Feb 2010) | 2 Zeilen
* the test case for RT #7474 (segfault after placing a destroyed
widget)
------------------------------------------------------------------------
r13805 | srezic | 2010-02-03 14:25:00 +0100 (Mi, 03. Feb 2010) | 2 Zeilen
* added test case for RT #42043 (combining -size and -weight does not
work in font specs)
------------------------------------------------------------------------
r13804 | srezic | 2010-02-03 14:24:49 +0100 (Mi, 03. Feb 2010) | 2 Zeilen
* fixed minor typo in ProgressBar documentation
spotted in https://rt.cpan.org/Ticket/Display.html?id=39182
------------------------------------------------------------------------
r13803 | srezic | 2010-02-03 14:24:39 +0100 (Mi, 03. Feb 2010) | 1 Zeile
* update Changes
------------------------------------------------------------------------
r13802 | srezic | 2010-02-03 08:52:38 +0100 (Mi, 03. Feb 2010) | 3 Zeilen
* fixed display of Unicode characters in Windows toplevel menus
https://rt.cpan.org/Ticket/Display.html?id=50681
applied original Tk changeset (with changes) from Mon May 3 22:40:30 2004
------------------------------------------------------------------------
r13801 | srezic | 2010-02-03 08:52:26 +0100 (Mi, 03. Feb 2010) | 1 Zeile
* avoid installing reindex.pl
------------------------------------------------------------------------
r13800 | srezic | 2010-02-03 08:52:16 +0100 (Mi, 03. Feb 2010) | 1 Zeile
* added SEE ALSO section in Tk::FileSelect documentation
------------------------------------------------------------------------
r13799 | srezic | 2010-02-02 22:01:28 +0100 (Di, 02. Feb 2010) | 3 Zeilen
* tied Text widgets: add WRITE method (see
https://rt.cpan.org/Ticket/Display.html?id=45818)
* add tests for tied Text widgets in text2.t
------------------------------------------------------------------------
r13798 | srezic | 2010-02-02 22:01:13 +0100 (Di, 02. Feb 2010) | 2 Zeilen
* document that -width and -height do not work with NoteBook widgets
https://rt.cpan.org/Ticket/Display.html?id=52609
------------------------------------------------------------------------
r13797 | srezic | 2010-02-02 16:03:47 +0100 (Di, 02. Feb 2010) | 4 Zeilen
* MMtry improvements
* VERBOSE is now even more verbose by showing all of compiler stderr
output
* use $Config{ldflags} when trying to compile things
------------------------------------------------------------------------
r13796 | srezic | 2010-02-02 14:29:12 +0100 (Di, 02. Feb 2010) | 3 Zeilen
* documentation fix for Tk::Text::FindNext (-backwards vs. -reverse),
see https://rt.cpan.org/Ticket/Display.html?id=51552
* added a new test file t/text2.t
------------------------------------------------------------------------
r13795 | srezic | 2010-02-02 14:28:55 +0100 (Di, 02. Feb 2010) | 2 Zeilen
* added an example to chooseDirectory.pod, similar to the one found in
Tcl/Tk docs
------------------------------------------------------------------------
r13789 | srezic | 2010-01-31 13:18:39 +0100 (So, 31. Jan 2010) | 1 Zeile
* entry.t: placeholder workaround also used for KDE's kwin
------------------------------------------------------------------------
r13788 | srezic | 2010-01-31 13:18:29 +0100 (So, 31. Jan 2010) | 1 Zeile
* fixed all interactive placement issues in test suite
------------------------------------------------------------------------
r13787 | srezic | 2010-01-31 13:18:18 +0100 (So, 31. Jan 2010) | 2 Zeilen
* ptked: make sure that invisible mainwindow works well with WMs with
interactive placement (i.e. twm)
------------------------------------------------------------------------
r13786 | srezic | 2010-01-31 13:18:09 +0100 (So, 31. Jan 2010) | 2 Zeilen
* added -geometry option to ptked
* documented ptked's options in SYNOPSIS
------------------------------------------------------------------------
r13785 | srezic | 2010-01-31 13:18:00 +0100 (So, 31. Jan 2010) | 1 Zeile
* DirTreeDialog is now marked as transient
------------------------------------------------------------------------
r13784 | srezic | 2010-01-31 13:17:49 +0100 (So, 31. Jan 2010) | 2 Zeilen
* made entry.t behave better on fluxbox by creating a placeholder
widget
------------------------------------------------------------------------
r13782 | srezic | 2010-01-30 18:26:37 +0100 (Sa, 30. Jan 2010) | 1 Zeile
* update
------------------------------------------------------------------------
r13781 | srezic | 2010-01-30 18:25:01 +0100 (Sa, 30. Jan 2010) | 1 line
* release preparations
------------------------------------------------------------------------
r13780 | srezic | 2010-01-30 18:24:51 +0100 (Sa, 30. Jan 2010) | 1 line
* release preparations (version inc)
------------------------------------------------------------------------
r13766 | srezic | 2010-01-22 21:46:27 +0100 (Fr, 22. Jan 2010) | 2 lines
* patch for mingw-w64 gcc compiler by kmx
http://rt.cpan.org/Public/Bug/Display.html?id=53467
------------------------------------------------------------------------
r13765 | srezic | 2010-01-22 21:46:14 +0100 (Fr, 22. Jan 2010) | 1 line
* document the change for perl 5.11.x in Changes file
------------------------------------------------------------------------
r13764 | srezic | 2010-01-22 21:41:32 +0100 (Fr, 22. Jan 2010) | 2 lines
* use UTF8_MAXBYTES_CASE instead of not anymore existent
UTF8_MAXLEN_UCLC (was removed in perl 5.11.2 or so)
------------------------------------------------------------------------
r13763 | srezic | 2010-01-22 21:41:08 +0100 (Fr, 22. Jan 2010) | 1 line
* updated MANIFEST
------------------------------------------------------------------------
r13479 | srezic | 2009-11-10 08:17:09 +0100 (Di, 10. Nov 2009) | 2 lines
* Tk::BrowseEntry and destroy
https://rt.cpan.org/Ticket/Display.html?id=50882
------------------------------------------------------------------------
r13478 | srezic | 2009-11-09 00:39:01 +0100 (Mo, 09. Nov 2009) | 1 line
* earth.gif in demo was corrupted
------------------------------------------------------------------------
r13428 | srezic | 2009-10-26 22:38:15 +0100 (Mo, 26. Okt 2009) | 1 line
* SVt_RV/IV check probably never worked, but hopefully now
------------------------------------------------------------------------
r13427 | srezic | 2009-10-24 22:59:38 +0200 (Sa, 24. Okt 2009) | 1 line
* get rid of conditional declarations
------------------------------------------------------------------------
r13404 | srezic | 2009-10-17 12:14:50 +0200 (Sa, 17. Okt 2009) | 4 lines
* canvas grids: -color was documented, but only -fill was implemented.
https://rt.cpan.org/Ticket/Display.html?id=47132
* support now both
* added also a new test
------------------------------------------------------------------------
r13403 | srezic | 2009-10-17 11:33:46 +0200 (Sa, 17. Okt 2009) | 2 lines
* modified shebangs in scripts located in demos to use /usr/bin/env
(this was spotted in Debian's bug tracker: Bug#543663: perl-tk)
------------------------------------------------------------------------
r13402 | srezic | 2009-10-17 11:33:26 +0200 (Sa, 17. Okt 2009) | 2 lines
* check with _is_in_path whether window manager is at all available on
local system, to avoid "Can't exec ..." errors in remote operation
------------------------------------------------------------------------
r13401 | srezic | 2009-10-17 10:29:34 +0200 (Sa, 17. Okt 2009) | 1 line
* small Pod fix (Tree.pod), submitted by H.Merijn Brand
------------------------------------------------------------------------
r13400 | srezic | 2009-10-17 10:29:23 +0200 (Sa, 17. Okt 2009) | 1 line
* mw_segfault test runs long, output a comment about this fact
------------------------------------------------------------------------
r13399 | srezic | 2009-10-17 10:29:12 +0200 (Sa, 17. Okt 2009) | 2 lines
* fixed a buffer overflow (CVE-2006-4484)
patch is 1.40..1.41 from original Tcl/Tk CVS repo
------------------------------------------------------------------------
r13398 | srezic | 2009-10-17 10:29:00 +0200 (Sa, 17. Okt 2009) | 3 lines
* added (adapted) test case from
https://bugzilla.redhat.com/show_bug.cgi?id=235666
(segfault when destroying and re-creating MainWindows)
------------------------------------------------------------------------
r13397 | srezic | 2009-10-17 10:28:46 +0200 (Sa, 17. Okt 2009) | 1 line
* Changes update
------------------------------------------------------------------------
r13396 | srezic | 2009-10-16 20:27:37 +0200 (Fr, 16. Okt 2009) | 1 line
* ignore .prove file
------------------------------------------------------------------------
r13395 | srezic | 2009-10-16 20:27:28 +0200 (Fr, 16. Okt 2009) | 2 lines
* another TODO for a failure under MacOSX
reported in https://rt.cpan.org/Ticket/Display.html?id=48760
------------------------------------------------------------------------
r13394 | srezic | 2009-10-16 20:23:06 +0200 (Fr, 16. Okt 2009) | 2 lines
* fix compile errors with gcc version 4.3.2 (format related)
patch by MWARD: https://rt.cpan.org/Ticket/Display.html?id=49499
------------------------------------------------------------------------
r13393 | srezic | 2009-10-16 19:58:43 +0200 (Fr, 16. Okt 2009) | 4 lines
* fix for rt.cpan.org #49515 (reported by Michael Parker)
* made RecolorTree implementation as close as possible to Tcl/Tk
implementation
* new test for RecolorTree
------------------------------------------------------------------------
r13392 | srezic | 2009-10-16 16:12:42 +0200 (Fr, 16. Okt 2009) | 1 line
* documentation for "cget" was accidentally titled as "delete" (RT #50253)
------------------------------------------------------------------------
r13391 | srezic | 2009-10-16 16:12:24 +0200 (Fr, 16. Okt 2009) | 1 line
* ignore for git checkout
------------------------------------------------------------------------
r13386 | srezic | 2009-10-10 21:37:19 +0200 (Sa, 10. Okt 2009) | 1 line
* fixed some nroff(?) leftover
------------------------------------------------------------------------
r12772 | srezic | 2009-05-17 23:07:43 +0200 (So, 17. Mai 2009) | 1 line
* getpwuid not available on Windows systems (patch by Ch Lamprecht)
------------------------------------------------------------------------
r12756 | srezic | 2009-05-07 22:47:48 +0200 (Do, 07. Mai 2009) | 3 lines
* Control-X/Y/C now also works if Caps Lock is active
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=205895
(applied a variation of the patch in the bugreport)
------------------------------------------------------------------------
r12755 | srezic | 2009-05-07 22:20:27 +0200 (Do, 07. Mai 2009) | 1 line
* use fvwm -version instead of --version for compat with 2.4.x
------------------------------------------------------------------------
r12754 | srezic | 2009-05-07 22:20:17 +0200 (Do, 07. Mai 2009) | 2 lines
* bugfix: copy/paste operations between KDE and Perl/Tk applications
on 64bit system did not work, patch by Petr Pajas
------------------------------------------------------------------------
r12753 | srezic | 2009-05-07 22:20:03 +0200 (Do, 07. Mai 2009) | 1 line
* Changes update
------------------------------------------------------------------------
r12752 | srezic | 2009-05-07 21:21:39 +0200 (Do, 07. Mai 2009) | 1 line
* minor documentation fixes
------------------------------------------------------------------------
r12609 | srezic | 2009-03-14 14:54:49 +0100 (Sa, 14. Mär 2009) | 1 line
* link directly to Encode/TERMINOLOGY
------------------------------------------------------------------------
r12608 | srezic | 2009-03-14 14:54:39 +0100 (Sa, 14. Mär 2009) | 2 lines
* implemented some mostly stylistic suggestions by David Haller
Message-ID: <6unl86-3s5.ln1@ID-1222.user.individual.de>
------------------------------------------------------------------------
r12607 | srezic | 2009-03-14 14:54:26 +0100 (Sa, 14. Mär 2009) | 1 line
* first sketch on section "Perl/Tk and Unicode"
------------------------------------------------------------------------
r12589 | srezic | 2009-03-08 22:19:34 +0100 (So, 08. Mär 2009) | 1 line
* XIM event filtering
------------------------------------------------------------------------
r12588 | srezic | 2009-03-08 22:19:22 +0100 (So, 08. Mär 2009) | 2 lines
* fixed an warning in traceVdelete (seen when destroying a
progressbar widget)
------------------------------------------------------------------------
r12587 | srezic | 2009-03-08 22:19:10 +0100 (So, 08. Mär 2009) | 2 lines
* minor change in ProgressBar's Pod: swap the values for -length and
-width in the SYNOPSIS, which seems to be more sensible
------------------------------------------------------------------------
r12564 | srezic | 2009-03-02 21:47:00 +0100 (Mo, 02. Mär 2009) | 1 line
* also test the ->value method
------------------------------------------------------------------------
r12503 | srezic | 2009-02-14 15:27:23 +0100 (Sa, 14. Feb 2009) | 1 line
* pod fix: focusLast is correctly spelled focusLastfor
------------------------------------------------------------------------
r12502 | srezic | 2009-02-14 15:23:16 +0100 (Sa, 14. Feb 2009) | 1 line
* minor typo fix
------------------------------------------------------------------------
r12501 | srezic | 2009-02-14 15:23:05 +0100 (Sa, 14. Feb 2009) | 1 line
* test case for core dump if -data is used inappropriately
------------------------------------------------------------------------
r12500 | srezic | 2009-02-14 15:22:50 +0100 (Sa, 14. Feb 2009) | 2 lines
* fix for attaching balloons to items of scrolled widgets
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=246363
------------------------------------------------------------------------
r12184 | srezic | 2008-12-19 09:21:35 +0100 (Fr, 19. Dez 2008) | 1 line
* another rgb.txt location, by h.m.brand
------------------------------------------------------------------------
r12178 | srezic | 2008-12-17 13:19:21 +0100 (Mi, 17. Dez 2008) | 2 lines
* svn ignore Makefile.old and other generated files
------------------------------------------------------------------------
r12177 | srezic | 2008-12-17 13:09:05 +0100 (Mi, 17. Dez 2008) | 2 lines
* missing dTHX declaration in new FixBuggyUTF8String
------------------------------------------------------------------------
r12176 | srezic | 2008-12-17 00:35:32 +0100 (Mi, 17. Dez 2008) | 2 lines
* workaround for http://rt.cpan.org/Public/Bug/Display.html?id=41436
(SvREADONLY issue with 5.8.x?), including test
------------------------------------------------------------------------
r12172 | srezic | 2008-12-16 23:41:51 +0100 (Di, 16. Dez 2008) | 3 lines
* fixing some regular expression-related and other errors, patch by
Alexander Krasnorutsky, see
http://rt.cpan.org/Public/Bug/Display.html?id=41068
------------------------------------------------------------------------
r12171 | srezic | 2008-12-16 23:41:40 +0100 (Di, 16. Dez 2008) | 1 line
* $is_maintainer
------------------------------------------------------------------------
r12170 | srezic | 2008-12-16 23:25:56 +0100 (Di, 16. Dez 2008) | 1 line
* better diagnostics if rgb.txt could not be found
------------------------------------------------------------------------
r12169 | srezic | 2008-12-16 23:25:42 +0100 (Di, 16. Dez 2008) | 1 line
* use XFT=1 by default
------------------------------------------------------------------------
r12143 | srezic | 2008-12-09 12:32:50 +0100 (Di, 09. Dez 2008) | 2 lines
* no check for PERL_DEBUGGING_MSTATS needed anymore
------------------------------------------------------------------------
r12136 | srezic | 2008-12-04 22:31:41 +0100 (Do, 04. Dez 2008) | 3 lines
* in order to fix http://rt.cpan.org/Ticket/Display.html?id=41435 the
Perl/Tk documentation was re-ordered according the current Tcl/Tk
documentation and slightly proof-read
------------------------------------------------------------------------
r12135 | srezic | 2008-12-04 22:31:30 +0100 (Do, 04. Dez 2008) | 1 line
* a ticket number changed
------------------------------------------------------------------------
r12098 | srezic | 2008-11-22 01:16:21 +0100 (Sa, 22. Nov 2008) | 1 line
* changes update
------------------------------------------------------------------------
r12097 | srezic | 2008-11-22 01:12:12 +0100 (Sa, 22. Nov 2008) | 1 line
* fixed mode of trace1.t
------------------------------------------------------------------------
r12096 | srezic | 2008-11-22 01:12:03 +0100 (Sa, 22. Nov 2008) | 3 lines
* avoid autovivifying %TRACE values, fixes
http://rt.cpan.org/Ticket/Display.html?id=41069 and makes Tk::Gauge
work (patch by Steve Lidie)
------------------------------------------------------------------------
r12095 | srezic | 2008-11-22 01:11:53 +0100 (Sa, 22. Nov 2008) | 2 lines
* freetype lib does not need to be necessarily in $xlib, check also in
/usr/local/lib
------------------------------------------------------------------------
r12079 | srezic | 2008-11-16 19:36:59 +0100 (So, 16. Nov 2008) | 1 line
* fix: exit() cannot be used in Makefile.libpng.maybe!
------------------------------------------------------------------------
r12077 | srezic | 2008-11-15 14:04:21 +0100 (Sa, 15. Nov 2008) | 1 line
* Changes towards Tk-804.028_502
------------------------------------------------------------------------
r12076 | srezic | 2008-11-15 14:04:13 +0100 (Sa, 15. Nov 2008) | 3 lines
* new function try_configure
* fixing build on IRIX64
http://rt.cpan.org/Ticket/Display.html?id=40820
------------------------------------------------------------------------
r12075 | srezic | 2008-11-15 14:04:03 +0100 (Sa, 15. Nov 2008) | 2 lines
* realclean now also cleans files which are created when using
libpng's configure
------------------------------------------------------------------------
r12074 | srezic | 2008-11-15 14:03:54 +0100 (Sa, 15. Nov 2008) | 1 line
* workaround for perl bug under Windows (when using japanese? locale)
------------------------------------------------------------------------
r12073 | srezic | 2008-11-15 14:03:44 +0100 (Sa, 15. Nov 2008) | 1 line
* exit gracefully if X11 library could not be found
------------------------------------------------------------------------
r12055 | srezic | 2008-11-06 21:44:02 +0100 (Do, 06. Nov 2008) | 2 lines
* Tk doesn't support more than 32 fds on 64bit machines
http://rt.cpan.org/Ticket/Display.html?id=40688
------------------------------------------------------------------------
r12046 | srezic | 2008-11-05 22:32:59 +0100 (Mi, 05. Nov 2008) | 1 line
* PNG does not build under aix, unchecked fix
------------------------------------------------------------------------
r12045 | srezic | 2008-11-05 22:32:47 +0100 (Mi, 05. Nov 2008) | 1 line
* mailing list cannot be used without registration, it seems
------------------------------------------------------------------------
r12043 | srezic | 2008-11-04 23:16:07 +0100 (Di, 04. Nov 2008) | 2 lines
* update
* re-generated log, using English dates now
------------------------------------------------------------------------
r12042 | srezic | 2008-11-04 23:11:24 +0100 (Tue, 04 Nov 2008) | 1 line
* inc'd versions
------------------------------------------------------------------------
r12041 | srezic | 2008-11-04 23:07:10 +0100 (Tue, 04 Nov 2008) | 1 line
* update for Tk-804.028_501
------------------------------------------------------------------------
r12040 | srezic | 2008-11-04 23:07:01 +0100 (Tue, 04 Nov 2008) | 1 line
* coredumps also happen on other (non-freebsd) systems
------------------------------------------------------------------------
r12039 | srezic | 2008-11-04 23:06:51 +0100 (Tue, 04 Nov 2008) | 1 line
* update for Tk804.028_501
------------------------------------------------------------------------
r12038 | srezic | 2008-11-04 23:06:41 +0100 (Tue, 04 Nov 2008) | 1 line
* ups, typo
------------------------------------------------------------------------
r12026 | srezic | 2008-11-02 22:42:43 +0100 (Sun, 02 Nov 2008) | 1 line
* the forthcoming Tk-804.028_501 release
------------------------------------------------------------------------
r12025 | srezic | 2008-11-02 22:42:33 +0100 (Sun, 02 Nov 2008) | 2 lines
* try harder to make the existing .t/.m file writable (after
experiencing problems with Strawberry Perl 5.10.0.3)
------------------------------------------------------------------------
r11963 | srezic | 2008-10-12 19:46:05 +0200 (Sun, 12 Oct 2008) | 1 line
* the menubug problem also happens in Tcl/Tk 8.5.4, documented
------------------------------------------------------------------------
r11962 | srezic | 2008-10-12 19:45:53 +0200 (Sun, 12 Oct 2008) | 4 lines
* check_Tk_version not needed anymore
(instead a more generic script is used, see cpan_check_versions in CVS repository
srezic.cvs.sourceforge.net:/cvsroot/srezic module srezic-misc/scripts)
* moved tkfontsel to examples
------------------------------------------------------------------------
r11960 | srezic | 2008-10-11 17:47:21 +0200 (Sat, 11 Oct 2008) | 1 line
* do not run Event tests if there is no DISPLAY (to force UNKNOWN reports)
------------------------------------------------------------------------
r11959 | srezic | 2008-10-11 16:59:22 +0200 (Sat, 11 Oct 2008) | 3 lines
r2174@biokovo: eserte | 2008-10-11 16:57:18 +0200
* moved example scripts to new examples/ directory
------------------------------------------------------------------------
r11958 | srezic | 2008-10-11 16:57:32 +0200 (Sat, 11 Oct 2008) | 3 lines
r2173@biokovo: eserte | 2008-10-11 10:03:37 +0200
* bindtest script fix (-highlight* options forbidden)
------------------------------------------------------------------------
r11938 | srezic | 2008-10-05 18:18:15 +0200 (Sun, 05 Oct 2008) | 3 lines
r2170@biokovo: eserte | 2008-10-05 18:17:55 +0200
* fileevent2 test marked as TODO on cygein
------------------------------------------------------------------------
r11937 | srezic | 2008-10-05 18:18:06 +0200 (Sun, 05 Oct 2008) | 3 lines
r2169@biokovo: eserte | 2008-10-05 17:58:01 +0200
* described additional ROText bindings in Pod
------------------------------------------------------------------------
r11936 | srezic | 2008-10-05 16:13:52 +0200 (Sun, 05 Oct 2008) | 5 lines
r2166@biokovo: eserte | 2008-10-05 16:13:27 +0200
* patch by Reini Urban to compile under cygwin/MSWin32, but event handling
still does not work (see https://rt.cpan.org/Ticket/Display.html?id=31792)
* changed again default to cygwin/x
------------------------------------------------------------------------
r11935 | srezic | 2008-10-05 16:13:35 +0200 (Sun, 05 Oct 2008) | 3 lines
r2165@biokovo: eserte | 2008-10-05 15:51:04 +0200
* added README for Strawberry Perl
------------------------------------------------------------------------
r11931 | srezic | 2008-10-04 21:48:19 +0200 (Sat, 04 Oct 2008) | 3 lines
r2163@biokovo: eserte | 2008-10-04 21:48:04 +0200
* update of README file, removing references to oldish perl and OS versions
------------------------------------------------------------------------
r11930 | srezic | 2008-10-04 17:31:35 +0200 (Sat, 04 Oct 2008) | 3 lines
r2159@biokovo: eserte | 2008-10-04 17:29:51 +0200
* add -I. for MSWin32 builds
------------------------------------------------------------------------
r11929 | srezic | 2008-10-04 17:31:26 +0200 (Sat, 04 Oct 2008) | 3 lines
r2158@biokovo: eserte | 2008-10-04 12:56:42 +0200
* minor test fixes: 'skip:' -> 'skip '
------------------------------------------------------------------------
r11928 | srezic | 2008-10-04 17:31:13 +0200 (Sat, 04 Oct 2008) | 3 lines
r2157@biokovo: eserte | 2008-10-04 12:41:26 +0200
* be optimistic, do not skip the JP and KR tests
------------------------------------------------------------------------
r11927 | srezic | 2008-10-04 12:00:38 +0200 (Sat, 04 Oct 2008) | 3 lines
r2152@biokovo: eserte | 2008-10-04 11:51:54 +0200
* prepared SendNetWMClientMessage method
------------------------------------------------------------------------
r11926 | srezic | 2008-10-04 12:00:26 +0200 (Sat, 04 Oct 2008) | 3 lines
r2151@biokovo: eserte | 2008-10-04 11:40:33 +0200
* realclean now also cleans Makefile* in libpng and zlib subdirs
------------------------------------------------------------------------
r11925 | srezic | 2008-10-04 12:00:16 +0200 (Sat, 04 Oct 2008) | 3 lines
r2150@biokovo: eserte | 2008-10-04 11:39:45 +0200
* prepared for 804.028_501
------------------------------------------------------------------------
r11924 | srezic | 2008-10-04 12:00:00 +0200 (Sat, 04 Oct 2008) | 3 lines
r2149@biokovo: eserte | 2008-10-04 11:38:50 +0200
* added release date
------------------------------------------------------------------------
r11919 | srezic | 2008-10-03 09:00:43 +0200 (Fri, 03 Oct 2008) | 3 lines
r2147@biokovo: eserte | 2008-10-03 09:00:34 +0200
* protect from more possible failures under fluxbox
------------------------------------------------------------------------
r11918 | srezic | 2008-10-02 21:33:58 +0200 (Thu, 02 Oct 2008) | 3 lines
r2144@biokovo: eserte | 2008-10-02 21:33:46 +0200
* the fbox.t segfaults seem to happen elsewhere, too
------------------------------------------------------------------------
r11910 | srezic | 2008-10-01 23:41:06 +0200 (Wed, 01 Oct 2008) | 3 lines
r2142@biokovo: eserte | 2008-10-01 23:40:58 +0200
* better diagnostics in fileevent test
------------------------------------------------------------------------
r11909 | srezic | 2008-10-01 23:39:59 +0200 (Wed, 01 Oct 2008) | 3 lines
r2140@biokovo: eserte | 2008-10-01 23:39:51 +0200
* problematic fbox tests with multiple mainwindows marked as TODO
------------------------------------------------------------------------
r11908 | srezic | 2008-10-01 23:04:04 +0200 (Wed, 01 Oct 2008) | 3 lines
r2138@biokovo: eserte | 2008-10-01 23:03:57 +0200
* update of Change.log
------------------------------------------------------------------------
r11907 | srezic | 2008-10-01 22:56:05 +0200 (Wed, 01 Oct 2008) | 3 lines
r2136@biokovo: eserte | 2008-10-01 22:55:57 +0200
* skip correctly the leak test
------------------------------------------------------------------------
r11875 | srezic | 2008-09-23 23:01:08 +0200 (Tue, 23 Sep 2008) | 3 lines
r2134@biokovo: eserte | 2008-09-23 23:00:54 +0200
* more fbox tests protected by catch_grabs
------------------------------------------------------------------------
r11874 | srezic | 2008-09-23 22:18:29 +0200 (Tue, 23 Sep 2008) | 3 lines
r2132@biokovo: eserte | 2008-09-23 22:18:21 +0200
* added -delay option to fbox test
------------------------------------------------------------------------
r11862 | srezic | 2008-09-22 22:49:15 +0200 (Mon, 22 Sep 2008) | 4 lines
r2130@biokovo: eserte | 2008-09-22 22:48:36 +0200
* hack to force a fully visible listbox in the tests
http://rt.cpan.org/Ticket/Display.html?id=31290
------------------------------------------------------------------------
r11861 | srezic | 2008-09-22 22:36:22 +0200 (Mon, 22 Sep 2008) | 3 lines
r2128@biokovo: eserte | 2008-09-22 22:36:12 +0200
* heuristics for KWin version
------------------------------------------------------------------------
r11860 | srezic | 2008-09-22 21:41:07 +0200 (Mon, 22 Sep 2008) | 3 lines
r2126@biokovo: eserte | 2008-09-22 21:40:59 +0200
* modeline for emacs
------------------------------------------------------------------------
r11859 | srezic | 2008-09-22 21:40:41 +0200 (Mon, 22 Sep 2008) | 3 lines
r2124@biokovo: eserte | 2008-09-22 21:40:28 +0200
* modeline for emacs
------------------------------------------------------------------------
r11853 | srezic | 2008-09-21 22:49:44 +0200 (Sun, 21 Sep 2008) | 3 lines
r2121@biokovo: eserte | 2008-09-21 22:49:24 +0200
* another -xscrollcommand related possible failure in entry test
------------------------------------------------------------------------
r11852 | srezic | 2008-09-21 22:49:31 +0200 (Sun, 21 Sep 2008) | 3 lines
r2120@biokovo: eserte | 2008-09-21 22:48:45 +0200
* catch_grabs: another possible 'grab failed' error message
------------------------------------------------------------------------
r11851 | srezic | 2008-09-21 22:24:05 +0200 (Sun, 21 Sep 2008) | 3 lines
r2118@biokovo: eserte | 2008-09-21 22:23:57 +0200
* more for 804.028_500
------------------------------------------------------------------------
r11850 | srezic | 2008-09-21 22:10:40 +0200 (Sun, 21 Sep 2008) | 3 lines
r2116@biokovo: eserte | 2008-09-21 22:10:18 +0200
* VERSION update
------------------------------------------------------------------------
r11849 | srezic | 2008-09-21 22:09:22 +0200 (Sun, 21 Sep 2008) | 3 lines
r2114@biokovo: eserte | 2008-09-21 22:09:11 +0200
* skip a problematic xscrollcommand-related listbox test on some wms
------------------------------------------------------------------------
r11848 | srezic | 2008-09-21 21:39:42 +0200 (Sun, 21 Sep 2008) | 3 lines
r2112@biokovo: eserte | 2008-09-21 21:39:33 +0200
* ups, syntax error
------------------------------------------------------------------------
r11847 | srezic | 2008-09-21 21:33:57 +0200 (Sun, 21 Sep 2008) | 3 lines
r2110@biokovo: eserte | 2008-09-21 21:33:44 +0200
* use libpng's configure also on sun4-solaris
------------------------------------------------------------------------
r11846 | srezic | 2008-09-21 20:24:34 +0200 (Sun, 21 Sep 2008) | 4 lines
r2108@biokovo: eserte | 2008-09-21 20:24:25 +0200
* workaround for failing text.t test with compiz wm (position +0+0 was
not preserved)
------------------------------------------------------------------------
r11845 | srezic | 2008-09-21 20:05:54 +0200 (Sun, 21 Sep 2008) | 3 lines
r2106@biokovo: eserte | 2008-09-21 20:05:22 +0200
* workaround for MacOSX mainwindow width problems in the canvas test
------------------------------------------------------------------------
r11844 | srezic | 2008-09-21 16:33:55 +0200 (Sun, 21 Sep 2008) | 3 lines
r2104@biokovo: eserte | 2008-09-21 16:33:48 +0200
* again disabled wm-related entry tests - seems to work only on kwin
------------------------------------------------------------------------
r11843 | srezic | 2008-09-21 16:31:04 +0200 (Sun, 21 Sep 2008) | 3 lines
r2102@biokovo: eserte | 2008-09-21 16:30:56 +0200
* make sure fileselect check works on MacOSX where /tmp is hardlinked to /private/tmp
------------------------------------------------------------------------
r11842 | srezic | 2008-09-21 16:10:55 +0200 (Sun, 21 Sep 2008) | 4 lines
r2098@biokovo: eserte | 2008-09-21 16:10:22 +0200
* enabled wmtest for all wms
* made some xscrollcommand-related tests TODO tests on some WMs
------------------------------------------------------------------------
r11841 | srezic | 2008-09-21 16:10:45 +0200 (Sun, 21 Sep 2008) | 4 lines
r2097@biokovo: eserte | 2008-09-21 11:31:20 +0200
* update
* removed duplicated changelog entries (artifact from svn repo movement)
------------------------------------------------------------------------
r11840 | srezic | 2008-09-21 16:10:32 +0200 (Sun, 21 Sep 2008) | 3 lines
r2096@biokovo: eserte | 2008-09-20 22:34:49 +0200
* added another -xscrollcommand check
------------------------------------------------------------------------
r11839 | srezic | 2008-09-20 22:10:21 +0200 (Sat, 20 Sep 2008) | 4 lines
r2094@biokovo: eserte | 2008-09-20 22:10:12 +0200
* more heuristics for wm version
* fix for zero byte in Xfwm4 window manager name
------------------------------------------------------------------------
r11838 | srezic | 2008-09-20 00:18:48 +0200 (Sat, 20 Sep 2008) | 4 lines
r2091@biokovo: eserte | 2008-09-20 00:18:27 +0200
* ErrorDialog fix for Windows
http://rt.cpan.org/Ticket/Display.html?id=39417
------------------------------------------------------------------------
r11837 | srezic | 2008-09-20 00:18:38 +0200 (Sat, 20 Sep 2008) | 3 lines
r2090@biokovo: eserte | 2008-09-20 00:12:02 +0200
* added method SelectButton for programmatic button selection
------------------------------------------------------------------------
r11836 | srezic | 2008-09-19 22:35:03 +0200 (Fri, 19 Sep 2008) | 3 lines
r2086@biokovo: eserte | 2008-09-19 22:34:29 +0200
* new test for Tk::ErrorDialog
------------------------------------------------------------------------
r11835 | srezic | 2008-09-19 22:34:54 +0200 (Fri, 19 Sep 2008) | 3 lines
r2085@biokovo: eserte | 2008-09-19 22:34:12 +0200
* new test for Tk::ErrorDialog
------------------------------------------------------------------------
r11834 | srezic | 2008-09-19 22:34:44 +0200 (Fri, 19 Sep 2008) | 3 lines
r2084@biokovo: eserte | 2008-09-19 22:33:50 +0200
* better variable name
------------------------------------------------------------------------
r11809 | srezic | 2008-09-18 08:56:57 +0200 (Thu, 18 Sep 2008) | 4 lines
r2080@biokovo: eserte | 2008-09-18 08:56:30 +0200
* fix for: skips lines when arrowing down in a window not exactly sized to
a text line (http://rt.cpan.org/Ticket/Display.html?id=39343)
------------------------------------------------------------------------
r11808 | srezic | 2008-09-18 08:56:48 +0200 (Thu, 18 Sep 2008) | 3 lines
r2079@biokovo: eserte | 2008-09-14 23:23:50 +0200
* more fluxbox failures
------------------------------------------------------------------------
r11807 | srezic | 2008-09-18 08:56:39 +0200 (Thu, 18 Sep 2008) | 3 lines
r2078@biokovo: eserte | 2008-09-14 23:15:36 +0200
* ignore wm-related failures under fluxbox
------------------------------------------------------------------------
r11789 | srezic | 2008-09-14 20:35:37 +0200 (Sun, 14 Sep 2008) | 3 lines
r2076@biokovo: eserte | 2008-09-14 20:35:24 +0200
* do not fail if exceeding expected_max, may happen easily on loaded machines
------------------------------------------------------------------------
r11788 | srezic | 2008-09-14 08:23:03 +0200 (Sun, 14 Sep 2008) | 5 lines
r2074@biokovo: eserte | 2008-09-14 08:22:53 +0200
* new test function is_float_pair
* canvas.t test uses is_float_pair tests (see
http://www.nntp.perl.org/group/perl.cpan.testers/2008/09/msg2204594.html)
------------------------------------------------------------------------
r11781 | srezic | 2008-09-13 11:41:03 +0200 (Sat, 13 Sep 2008) | 4 lines
r2072@biokovo: eserte | 2008-09-13 11:40:50 +0200
* fixed movement of cursor on insertations in Tk::TextUndo
(http://rt.cpan.org/Ticket/Display.html?id=34513)
------------------------------------------------------------------------
r11780 | srezic | 2008-09-12 23:38:32 +0200 (Fri, 12 Sep 2008) | 3 lines
r2070@biokovo: eserte | 2008-09-12 23:27:00 +0200
* regexp support for perl 5.11.0
------------------------------------------------------------------------
r11779 | srezic | 2008-09-12 22:39:53 +0200 (Fri, 12 Sep 2008) | 3 lines
r2067@biokovo: eserte | 2008-09-12 22:39:31 +0200
* fixed number of tests
------------------------------------------------------------------------
r11778 | srezic | 2008-09-12 22:39:43 +0200 (Fri, 12 Sep 2008) | 3 lines
r2066@biokovo: eserte | 2008-09-12 21:39:14 +0200
* help emacs with utf-8
------------------------------------------------------------------------
r11773 | srezic | 2008-09-12 20:42:07 +0200 (Fri, 12 Sep 2008) | 3 lines
r2064@biokovo: eserte | 2008-09-12 20:41:57 +0200
* minor typo
------------------------------------------------------------------------
r11754 | srezic | 2008-09-08 21:24:58 +0200 (Mon, 08 Sep 2008) | 3 lines
r2062@biokovo: eserte | 2008-09-08 21:24:48 +0200
* fix for RT #39096, including test
------------------------------------------------------------------------
r11750 | srezic | 2008-09-07 18:44:48 +0200 (Sun, 07 Sep 2008) | 3 lines
r2060@biokovo: eserte | 2008-09-07 18:44:38 +0200
* RT #39038 (permissions of MANIFEST.SKIP)
------------------------------------------------------------------------
r11717 | srezic | 2008-09-01 21:32:08 +0200 (Mon, 01 Sep 2008) | 3 lines
r2057@biokovo: eserte | 2008-09-01 21:31:47 +0200
* corrected ticket number of last change
------------------------------------------------------------------------
r11716 | srezic | 2008-09-01 21:31:56 +0200 (Mon, 01 Sep 2008) | 3 lines
r2056@biokovo: eserte | 2008-09-01 21:29:49 +0200
* Fixed event handling for newer X servers (RT 38745)
------------------------------------------------------------------------
r11523 | srezic | 2008-07-12 16:16:10 +0200 (Sat, 12 Jul 2008) | 3 lines
r2054@biokovo: eserte | 2008-07-12 15:30:19 +0200
* Tk::After::Cancelled needs also a dummy cancel() method
------------------------------------------------------------------------
r11045 | srezic | 2008-04-02 20:00:33 +0200 (Wed, 02 Apr 2008) | 5 lines
r2043@biokovo: eserte | 2008-04-02 19:59:01 +0200
* KDE defines properties on the mainwindow, so removed the empty
property list test (spotted by Christoph Lamprecht)
------------------------------------------------------------------------
r11044 | srezic | 2008-04-02 20:00:22 +0200 (Wed, 02 Apr 2008) | 3 lines
r2042@biokovo: eserte | 2008-03-29 16:51:16 +0100
* added Test::More as prerequisite
------------------------------------------------------------------------
r11043 | srezic | 2008-04-02 20:00:11 +0200 (Wed, 02 Apr 2008) | 3 lines
r2041@biokovo: eserte | 2008-03-23 22:30:04 +0100
* clipboardGet change
------------------------------------------------------------------------
r11042 | srezic | 2008-04-02 20:00:01 +0200 (Wed, 02 Apr 2008) | 5 lines
r2040@biokovo: eserte | 2008-03-23 22:29:04 +0100
* clipboardGet was documented, but did not work (though clipboard('get')
always worked)
* fixed typo in clipboardGet documentation (SelectionGet, not selectionGet)
------------------------------------------------------------------------
r11041 | srezic | 2008-04-02 19:59:48 +0200 (Wed, 02 Apr 2008) | 4 lines
r2039@biokovo: eserte | 2008-03-12 21:48:22 +0100
* larger intervals permitted in after test
------------------------------------------------------------------------
r11040 | srezic | 2008-04-02 19:59:36 +0200 (Wed, 02 Apr 2008) | 4 lines
r2038@biokovo: eserte | 2008-03-01 22:55:50 +0100
* include parameter changed again, to make it working with Tk and Tk-TableMatrix
patch provided by Ch Lamprecht
------------------------------------------------------------------------
r11039 | srezic | 2008-04-02 19:59:23 +0200 (Wed, 02 Apr 2008) | 4 lines
r2037@biokovo: eserte | 2008-03-01 19:04:38 +0100
* use hires times, if available, for faster tests (0.3s instead of 3s)
------------------------------------------------------------------------
r11038 | srezic | 2008-04-02 19:59:11 +0200 (Wed, 02 Apr 2008) | 4 lines
r2036@biokovo: eserte | 2008-02-29 00:27:55 +0100
* doc fix for header(size)
------------------------------------------------------------------------
r10821 | srezic | 2008-02-22 23:44:00 +0100 (Fri, 22 Feb 2008) | 5 lines
r2034@biokovo-amd64: eserte | 2008-02-22 23:43:50 +0100
* handle now <Motion> and <<ListboxSelect>> events
* vertical filling of listbox
------------------------------------------------------------------------
r10816 | srezic | 2008-02-22 00:22:52 +0100 (Fri, 22 Feb 2008) | 3 lines
r2032@biokovo-amd64: eserte | 2008-02-22 00:22:37 +0100
* changed again cygwin's default to MSWin32, there's hope to get it running
------------------------------------------------------------------------
r10812 | srezic | 2008-02-20 18:39:56 +0100 (Wed, 20 Feb 2008) | 4 lines
r2027@biokovo-amd64: eserte | 2008-02-20 18:19:47 +0100
* removed unused "use Tk::Pretty"
------------------------------------------------------------------------
r10811 | srezic | 2008-02-20 18:39:46 +0100 (Wed, 20 Feb 2008) | 4 lines
r2026@biokovo-amd64: eserte | 2008-02-20 18:17:19 +0100
* removed unused "use Tk::Pretty"
------------------------------------------------------------------------
r10810 | srezic | 2008-02-20 18:39:35 +0100 (Wed, 20 Feb 2008) | 4 lines
r2025@biokovo-amd64: eserte | 2008-02-20 18:16:00 +0100
* removed unused "use Tk::Pretty"
------------------------------------------------------------------------
r10809 | srezic | 2008-02-20 18:39:24 +0100 (Wed, 20 Feb 2008) | 4 lines
r2024@biokovo-amd64: eserte | 2008-02-20 18:14:00 +0100
* make sure Tk::Pretty is loaded before using it
------------------------------------------------------------------------
r10740 | srezic | 2008-02-15 23:34:10 +0100 (Fri, 15 Feb 2008) | 5 lines
r2022@biokovo-amd64: eserte | 2008-02-15 23:33:45 +0100
* ROText: added ConfigSpecs for foreground/background
Should hopefully fix the wrong default colors under Windows
* new test rotext.t