Skip to main content
summaryrefslogtreecommitdiffstats
blob: 23bc9628d9f92b71dd8c8a2f1956613efe09a0a5 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.75 [en] (WinNT; U) [Netscape]">
   <meta name="Author" content="IBM">
   <title>Eclipse Platform Release Notes - Desktop</title>
</head>
<body>

<h1>
Eclipse Platform Build Notes<br>
Compare (including example)</h1>
Eclipse SDK Build 135, September 6th, 2001

<h2>
What's new in this drop</h2>
By default the compare viewer gets its text font from the workbench's font preferences.<br>
Changed the shortcuts for "Goto Next Difference", "Goto Previous Difference" from
Ctrl-N/Ctrl-P to Ctrl-D/Ctrl-Shift-D to prevent a clash with printing shortcut.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 134, August 30th, 2001

<h2>
What's new in this drop</h2>
Updated artwork for Compare<br>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 133, August 28th, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GI3HDZ: ITPJUI:ALL - Compare: conflicts with no ancestor does not show differences<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 132, August 21st, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GIKKOZ: ITPUI:ALL - alt copyright text in html doc needs update<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 128, July 31st, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GF5RZD: ITPVCM:ALL - Missing mnemonics<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 127, July 24th, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GF0UT6: ITPVCM:WIN2000 - Compare with each other: saves files?<br>
1GFDFH2: ITPJUI:ALL - Structure compare Ctrl-P causes error when previous in an unexpanded folder<br>
1GF2JX7: ITPUI:ALL - Compare wrong for empty folders<br>
1GEV5NV: ITPVCM:ALL - Using up/down arrow keys in sync view structure tree changs focus<br>
1GH49LK: ITPJUI:ALL - NL problems in org.eclipse.compare plugin.xml<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 121 - June 8th, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GEHGTZ: ITPVCM:ALL - Compare with Version reverses additions/deletions<br>
1GEXX0D: ITPJUI:WIN2000 - Different icons in Compare and Synchronize view<br>
1GEYE24: ITPVCM:ALL - .vcm_meta is staying open<br>
1GEZ31N: ITPVCM:WIN2000 - NullPointerException: Java Source Compare<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 120 - June 7th, 2001

<h2>
What's new in this drop</h2>
Changed copyright notices for Compare Examples.<br>
Updated artwork (including basic icons)<br>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GEUVV2: ITPJUI:WINNT - exception when "ignoring whitespace" in compare with each other<br>
1GEVUXL: ITPVCM:WIN2000 - Compare with -> Each other  -- cased incorrectly<br>
1GEV8R3: ITPUI:WIN2000 - Synchronize view should use flat style for sub-components<br>
1GDVZV7: ITPVCM:WIN98 - CTRL + C does not work in Java source compare<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 118 - June 2nd, 2001

<h2>
What's new in this drop</h2>
Changed copyright notices for Compare Examples.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GEOOUI: ITPUI:WINNT - Compare results shouldn't reuse CompareEditor<br>
1GENTE1: ITPUI:WINNT - Mirrored icons for Left_Is_Local mode<br>
1GEJM57: ITPVCM:WINNT - Compare with Team Stream hides changes from user<br>
1GBZ8S9: ITPJUI:WINNT - JavaMergeViewer: scroling problems<br>
1GENHLZ: ITPUI:Linux - Differences browser: horz. difference lines drawn incorrectly<br>
1GENQT5: ITPUI:WIN2000 - Compare windows do not scroll properly<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 117 - June 1st, 2001

<h2>
What's new in this drop</h2>
Changed copyright notices for Compare Examples.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GEL43H: ITPUI:WINNT - Icon for conflicting addtion missing<br>
1GEJAJ1: ITPJUI:WIN2000 - Can't compare large files like Parser.java<br>
1GEHYZZ: ITPJUI:WIN2000 - Smoke 114: strange behaviour in "Replace from Local Histroy"<br>
1GELRZV: ITPUI:WINNT - Remove Copy actions from structure compare viewers<br>
1GEK2LR: ITPUI:ALL - Compare: stepping in one resources could take you to next<br>
1GEK2NH: ITPUI:ALL - Compare: cntrl-N for stepping<br>
1GENKOB: ITPVCM:WIN2000 - Strange Save behaviour during merge<br>

<h2>
Problem reports closed</h2>
1GDU8LA: ITPVCM:WIN - error dialog while comparing resources in history view<br>
1GEJKV2: ITPJUI:Linux - Comparison browser - lines in text too low<br>
1GAZIF2: ITPJUI:Linux - Compare viewer: lines rendered through text<br>
1GAZDJ6: ITPJUI:WINNT - SH: Show Next Diff buttons not working sometimes<br>
1GDUAP8: ITPVCM:WINNT - IllegalArgumentException in Compare (Cachup / Release)<br>
1GE2510: ITPJUI:WIN2000 - Compare usability<br>
1GE6XFM: ITPJUI:ALL - DCR: Add some new buttons to compare view to scan changes in varying granularity<br>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 115 - May 30, 2001

<h2>
What's new in this drop</h2>
Changed copyright notices for Compare Examples.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GEJPGI: ITPUI:ALL - HistoryItem.getContents doesn't return BufferedStream<br>

<h2>
Problem reports closed</h2>


<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 114 - May 29, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GE578S: ITPJUI:WINNT - Smoke 0.110 - SEVERE: NPE replacing with local history<br>
1GE6XAQ: ITPUI:ALL - Need save menu action in compare editors<br>
1GEHON5: ITPJUI:WINNT - NPE in ContentMergeViewer<br>

<h2>
Problem reports closed</h2>
1GD2FN9: ITPVCM:WIN2000 - Merge: Redraw problems in text widgets<br>
1G5YDYJ: ITPUI:WINNT - Save actions enabled in comparison browser<br>
1GE75TS: ITPUI:Linux - Compare: drawn lines around differences are not aligned<br>
1GEDBLH: ITPUI:WIN2000 - Compare: Cntrl-C etc. don't work in local text<br>
1GDRIV1: ITPJUI:WINNT - Empty Error box after 'Compare Resource History'<br>
1GEGDUK: ITPJUI:WINNT - Compare with TeamStream does not save changes<br>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 110 - May 22, 2001

<h2>
What's new in this drop</h2>
In "Compare/Add/Replace from local history" dialogs left and right sides are swapped to match the compare viewers used in Catchup/Release.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GDW637: ITPUI:ALL - javadoc errors in org.eclipse.compare<br>
1GDUAHC: ITPUI:WINNT - LocalHistory: can't use term "Edition"<br>
1GDXHOE: ITPUI:ALL - Replace from method history always shows one edition<br>
1GDVY13: ITPJUI:ALL - TextMergeViewer is using a different font than the other text editors<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 108 - May 17, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GD2FIN: ITPVCM:WIN2000 - Merge: Hoverhelp should be changed<br>
1GDUEVS: ITPUI:ALL - Error comparing class files<br>
1GD2FKK: ITPVCM:WIN2000 - Merge: Cut/Copy/Paste hotkeys don't work<br>
1GDKC6M: ITPVCM:WINNT - icons 'copy whole document' and 'copy current change' too similar<br>
1GDUXWR: ITPUI:WIN2000 - Can;t *compare* with local history state<br>
1GD9XDC: ITPUI:WIN2000 - DCR: Can't compare with local history<br>
1GD0G9I: ITPUI:ALL - DCR: Compare with Edition from local history should be a menu option.<br>


<h2>
Problem reports closed</h2>
1GBYPIH: ITPUI:ALL - DCR: CompareEditor toolbar contributions<br>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 107 - May 15, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GDRI70: ITPUI:ALL - TextMergeViewer highlight problems<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 106 - May 14, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GDDQN8: ITPVCM:WIN2000 - catchup compare does not show content if file starts with .<br>
1GD7B5D: ITPVCM:ALL - no button label when comparing<br>

<h2>
Problem reports closed</h2>
1GD3MNN: ITPVCM:WINNT - Missing icons in compare dialog<br>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 105 - May 10, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GCC8BV: ITPUI:ALL - Need icons for Compare<br>
1GD9XVG: ITPJUI:WIN2000 - Release: no busy cursor during diff computation<br>
1GCWH49: ITPVCM:WINNT - UI: If nothing to release, should not say "Compare failed"<br>
1GDIF8U: ITPUI:ALL - Compare of file with folder results in empty compare editor<br>
1GDIHZA: ITPUI:ALL - Compare shouldn't be enabled for more than 3 inputs<br>

<h2>
Problem reports closed</h2>
1G60D5W: ITPUI:ALL - Compare should not be enabled if two items not selected<br>
1G5YG2R: ITPUI:ALL - Navigator->Popup->Compare should be disabled if there is only one item selected.<br>
1GCQKGD: ITPVCM:WINNT - Viewer should close after release/catchup<br>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 104 - May 6, 2001

<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GD6YLA: ITPVCM:WINNT - Exception in release viewer<br>

<h2>
Problem reports closed</h2>


<P>
<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 103
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>
<tt>EditionSelectionDialog</tt> provides support for "Add edition" in addition
to "Replace with edition".
<br>Fixed plugin point doc (after "the big rename").
<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<P>
<h1>
<hr WIDTH="100%"></h1>
SDK Build 102
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GCPBTE: ITPVCM:WINNT - Catchup/release shouldn't show structure on multi-selection
<br>1GCP1DH: ITPJUI:WINNT - Double click on calendar dismisses replace
dialog
<br>1GCJBUT: ITPJUI:ALL - No indication when there are no editions available
<br>1GCFU1D: ITPJUI:ALL - Compare: incorrect icon Replace Java Element
Dialog
<h2>
Problem reports closed</h2>
1G8BNIK: ITPJUI:WINNT - strange naming in compare view
<h1>

<hr WIDTH="100%"></h1>
Build 0.048
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GCOZHF: ITPUI:WINNT - Error navigating stucture in release view
<br>1GCOLNU: ITPUI:WINNT - Double clicking in compare editor is slow
<br>1GCJWNF: ITPJUI:ALL - "no differences" message is not a sentence
<br>1GCHN93: ITPUI:WINNT - Walkback in DiffTreeViewer
<br>1G9UVEC: ITPJUI:WINNT - compare viewer: no syntax coloring
<br>1GAOS9R: ITPUI:WINNT - Unable to cancel compare
<br>1GBCZXK: ITPUI:WINNT - Failed assertion when java structure fails to
parse
<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 0.046
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GCDH47: ITPUI:ALL - Next and Prev buttons don't work in strcuture compare
viewers
<br>1GCBHKO: ITPUI:ALL - Illegal uses of FileImageDescriptor in Compare
plugin
<br>1GCDHNA: ITPUI:ALL - remove "..."&nbsp;&nbsp; from CompareWith and
ReplaceWith ... cascade menus
<br>1GCF6T6: ITPUI:ALL - Inconsistent contextmenu labels in TextMergeViewer
<br>1GBYOQY: ITPUI:WIN2000 - Need to configure label in EditionSelectionDialog
<br>1GCF905: ITPUI:ALL - EditionSelectionDialog must sort input array
<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 0.044
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GBBL6K: ITPUI:ALL - SH: NullPointer in StructuredDiffViewer
<h2>
Problem reports closed</h2>

<hr WIDTH="100%">
<p>Build 0.043
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<ul>
<li>
Added new constructor taking a SWT style bits to ContentMergeViewer &amp;
TextMergeViewer</li>

<li>
Added API to EditionSelectionDialog to control on which side of a compare
viewer to show the workspace and editions.</li>
</ul>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<ul>
<li>
the javadoc in package.html files is incorrect.</li>
</ul>

<h2>
Problem reports fixed</h2>
1GBPOEB: ITPJUI:WINNT - Layout trouble in the default diff editor
<br>1GBPOZE: ITPJUI:WINNT - compare: synchronize panes button disappears
<br>1GBWQ5V: ITPUI:WIN2000 - Infinite loop in BinaryCompareViewer
<br>1GBWUJ8: ITPUI:WIN2000 - Compare editor has wrong title
<br>1GBYJ41: ITPUI:WIN2000 - Need style bits for top level composite of
TextMergeViewer
<br>1GBYOJX: ITPUI:WIN2000 - Better name for ReplaceWithEditionDialog
<br>1GB0P4S: ITPVCM:WINNT - Structure viewer on jar is brutal
<br>1GBYONP: ITPUI:WIN2000 - Flipping sides of EditionSelectionDialog
<br>1GBYOQY: ITPUI:WIN2000 - Need to configure label in EditionSelectionDialog
<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 0.042
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<ul>
<li>
new method CompareEditorInput.setFocus</li>
</ul>

<h3>
Other highlights</h3>

<ul>
<li>
Adapted to new workbench UI look.</li>

<li>
Removed VCM synch stuff</li>

<li>
Clarification how to do filtering in ResourceNode.createChild(...): if
null is returned given child is not added to list of children.</li>
</ul>

<h2>
Known deficiencies</h2>

<ul>
<li>
the javadoc in package.html files is incorrect.</li>
</ul>

<h2>
Problem reports fixed</h2>
1GBPN75: ITPJUI:WINNT - Endless loop when copying diffs in diff editor
<br>1GBM7QL: ITPJUI:WINNT - replace with catchup?
<br>1GBMJ9I: ITPUI:WINNT - ResourceNode resource and children should be
protected
<br>1GBM3AQ: ITPUI:WIN2000 - Null as input for TextMergeViewer
<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 0.040
<h2>
What's new in this drop</h2>
Javadoc &amp; Incorporated API review.
<h3>
API changes</h3>

<ul>
<li>
too many</li>
</ul>

<h3>
API Additions</h3>

<ul>
<li>
none</li>
</ul>

<h3>
Other highlights</h3>

<ul>
<li>
none</li>
</ul>

<h2>
Known deficiencies</h2>

<ul>
<li>
lots</li>
</ul>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 032
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<ul>
<li>
deprecated <tt>ViewerPane</tt>; use <tt>CompareViewerSwitchingPane</tt>
instead</li>

<li>
deprecated <tt>ByteContentAccessor</tt> and <tt>IByteContentAccessor</tt>.
Use <tt>IStreamContentAccessor </tt>instead<tt>.</tt></li>

<li>
deprecated <tt>IDiffParent</tt>; Use <tt>IDiffElement</tt> instead<tt>.</tt></li>

<li>
Moved more classes to internal package.</li>

<li>
removed byte[] argument from <tt>IEditable.replace</tt>. Replace only handles
add, remove, and copy contents. For setting a contents use <tt>IEditable.setContents</tt>.</li>

<li>
Renamed <tt>IByteContentChangedListener</tt> to <tt>IContentChangedListener</tt>.</li>

<li>
removed methods <tt>addChangeListener</tt> and <tt>removeChangeListener</tt>
from <tt>IByteContentAccessor</tt>. Use <tt>IContentChangedProvider</tt>
instead.</li>

<li>
Deprecated <tt>IDiffConstants.INCOMING</tt>, <tt>IDiffConstants.OUTGOING</tt>.
Use <tt>LEFT</tt> and <tt>RIGHT</tt> instead. The interpretation of LEFT
and RIGHT (e.g. Incoming and Outgoing) is left to the client.</li>

<li>
Changed return type of&nbsp; <tt>DiffContainer.findChild(String name)</tt>
from <tt>DiffContainer</tt> to <tt>IDiffElement</tt>.</li>

<li>
Changed return type of <tt>IDiffContainer.getChildren</tt> from <tt>Iterator</tt>
to <tt>Object[]</tt>.</li>

<br>&nbsp;</ul>

<h3>
API Additions</h3>

<ul>
<li>
&nbsp;added method <tt>ResourceNode.createChild(IResource child)</tt></li>

<br>(can be used to filter children)
<li>
added method <tt>setContents(byte[] ...)</tt> to <tt>IEditable</tt></li>

<li>
added interface <tt>IContentChangedProvider.</tt></li>

<br>&nbsp;</ul>

<h3>
Other highlights</h3>

<ul>
<li>
Panes within compare editor can be resized</li>

<li>
Replace from history buffer.</li>

<li>
Support for method level editions.</li>
</ul>

<h2>
Known deficiencies</h2>

<ul>
<li>
lots</li>
</ul>

<h2>
Problem reports fixed</h2>

<ul>
<li>
yes!</li>
</ul>

<h2>
Problem reports closed</h2>

<ul>
<li>
not yet</li>
</ul>

<h1>

<hr WIDTH="100%"></h1>
Build 027
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<ul>
<li>
deprecated <tt>ViewerPane</tt>; use <tt>deprectCompareViewerSwitchingPane</tt>
instead</li>
</ul>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 026
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<ul>
<li>
changed <tt>IViewer</tt> to <tt>ICompareViewer</tt></li>

<li>
renamed <tt>AbstractViewer</tt> to <tt>AbstractCompareViewer</tt></li>

<li>
removed interface <tt>IDocumentRange</tt></li>

<li>
removed class <tt>HistoryCompareOp</tt> (Use the new command "Replace with
edition") instead</li>

<li>
removed the history mechanism of <tt>ResourceNode</tt>. Use the new class
<tt>HistoryItem</tt>
instead.</li>

<li>
removed <tt>NullViewer</tt> from API.</li>

<li>
new method <tt>IEditable.isEditable()</tt></li>
</ul>

<h3>
API Additions</h3>

<ul>
<li>
first cut of new <tt>ReplaceWithActionAction</tt></li>

<li>
new class <tt>HistoryItem</tt></li>

<li>
new constructor: <tt>DiffNode(ITypedInput left, ITypedInput right)</tt></li>
</ul>

<h3>
Other highlights</h3>

<ul>
<li>
first cut of "Replace with edition". A dialog is there but pressing "OK"
has no effect.</li>
</ul>

<h2>
Known deficiencies</h2>

<ul>
<li>
correct focus/activation handling still waiting for SWT focus/activation
fix.</li>
</ul>

<h2>
Problem reports fixed</h2>
1G8FFQ7: ITPUI:WIN2000 - Walkback
<br>1G8BRDW: ITPUI:ALL - Reference to deprecated DesktopPlugin
<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 022
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<ul>
<li>
changed visibility of <tt>ByteContentAccessor.loadContent()</tt> from public
to protected</li>
</ul>

<h3>
API Additions</h3>

<ul>
<li>
differencing engine (<tt>Differencer</tt>) supports <tt>IProgressMonitor</tt></li>
</ul>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<ul>
<li>
correct focus/activation handling is still broken.</li>
</ul>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<h1>

<hr WIDTH="100%"></h1>
Build 021
<h2>
What's new in this drop</h2>

<h3>
API changes</h3>

<ul>
<li>
Harmonized usage of the compare directions: Mine/Yours/Your, Incoming/Outgoing,
Left/Right. Everywhere <b>Left/Right </b>is used.</li>

<br>API changes: ContentMergeViewer, ImageMergeViewer, TextMergeViewer,
IMergeViewerContentProvider, MergeViewerContentProvider, ICompareConfiguration,
CompareConfiguration, IThreeWayInput, StructureDiffViewer, DiffNode, DiffTreeViewer
<li>
changed signature of <tt>IStructureCreator.save</tt> from <tt>void save(Object
input, IDocument document)</tt> to <tt>void save(Object input, IStructureComparator
structure)</tt></li>

<li>
made <tt>com.ibm.eclipse.ui.compare.structuremergeviewer.ArrayIterator</tt>
package private.</li>
</ul>

<h3>
API Additions</h3>

<ul>
<li>
Added new classes <tt>CompareOp</tt>, <tt>ResourceCompareOp, HistoryCompareOp</tt></li>

<br>All comparison operations can now be written as subclasses of <tt>CompareOp</tt>.
<tt>CompareUIPlugin.runCompareOp()</tt>
generically opens a <tt>CompareEditor</tt> for it. <tt>ResourceCompareOp</tt>
implements a universal two/threeway compare on desktop resources. <tt>HistoryCompareOp</tt>
compares a resource with its most recent edition from the history buffer.
Another example would be a <tt>RepositoryCompareOp</tt>.</ul>

<h3>
Other highlights</h3>

<ul>
<li>
background coloring in the TextMergeViewer no longer depend on StyledText
background coloring support.</li>

<li>
generic <i>copy-left-to-right</i> and <i>copy-right-to-left</i> action
now work in second and third structure panes.</li>

<br>In the resource pane they just print a message to the console but don't
do anything.
<li>
Progress is shown while a compare runs.</li>

<li>
Support for comparing jpegs.</li>

<li>
if resources with unknown types are compared the Compare Plugin tries to
guess whether they contain text and whether the TextMergeViewer can be
used.</li>
</ul>

<h2>
Known deficiencies</h2>

<ul>
<li>
correct focus/activation handling is still broken.</li>
</ul>

<h2>
Problem reports fixed</h2>

<h2>
Problem reports closed</h2>

<br>&nbsp;
<a href="hglegal.htm"><img SRC="ngibmcpy.gif" ALT="Copyright IBM Corp. 2000, 2001.  All Rights Reserved." BORDER=0 height=12 width=195></a>
<br>&nbsp;
</body>
</html>

Back to the top