Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5d09e301c404025a951371415559c3688765f7c9 (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
<!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</h1>
Eclipse Build Input June 6th 2002

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

<h3>
API changes</h3>

<h3>
API Additions</h3>
New constant CompareUI.PLUGIN_ID

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=13949">#13949</a>: DBCS: bogus at text compare<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=19013">#19013</a>: backgronud color: is it honored?<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=19216">#19216</a>: Accessibility in Workbench > Compare > Text Compare<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=19371">#19371</a>: Java & Compare editor's Next/Previous toolbar buttons shouldn't be retargetable<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input June 1st 2002

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

<h3>
API changes</h3>

<h3>
API Additions</h3>
Made class NavigationAction public.

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=8004">#8004</a>: Ctrl+E beeps every time<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14800">#14800</a>: Compare View eats tabs<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=18200">#18200</a>: Both sets of arrows say "Select Next Change"<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=18206">#18206</a>: Casing, wording issue on "Last Resource reached" prompt<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=16285">#16285</a>: Add from Local History needs a description label<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17431">#17431</a>: Accessibility issues<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=18148">#18148</a>: Using combinations of No and Next file button break wrapping<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=18151">#18151</a>: Next File button does not ding when on last file<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=16570">#16570</a>: Compare refuses to show further differences if not ignoring whitespaces<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=10790">#10790</a>: Patch does not apply if file not found locally<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=12643">#12643</a>: Expand all does not disable when there is no selection<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input May 31st 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=18116">#18116</a>: Compare view does not inherit Java editor background color<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=13190">#13190</a>: Compare with Patch does not apply Patch, if single file selected<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input May 30th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17699">#17699</a>: Java Editor: Local Histroy menu entries are enabled for read-only files<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=16283">#16283</a>: Add from Local History items are unsorted<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=16288">#16288</a>: Add from Local History: list of available editions flashes<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17664">#17664</a>: Applying a patch with deleted package fails<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input May 29th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14040">#14040</a>: Platform interoperability issue w.r.t. Compare With Patch<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17790">#17790</a>: Missing mnemonics in patch selection dialog<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=10917">#10917</a>: Patch support does not use mnemonics<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input May 28th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17889">#17889</a>: Should not assume type of PropertyChangeEvent values<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17678">#17678</a>: Applying a patch does many compiles<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17536">#17536</a>: NPE in compare<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17121">#17121</a>: Casing of message when end of changes needs to be sentence style<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=17648">#17648</a>: Can't apply patch w/o ignoring whitespace<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=16936">#16936</a>: Compare with patch requires "Ignore Whitespace" to be turned off<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input May 18th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14371">#14371</a>: TextMergeViewer.sameDoc() is broken<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14378">#14378</a>: CompareEditorInput never resets dirtyness flag (detailed)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14680">#14680</a>: Compare unreadable in high contrast black<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14952">#14952</a>: Diff Browser Opens Too Small / Not Easily Resizable<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14742">#14742</a>: Ignore whitespace preference<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14624">#14624</a>: No visual cue when compared file wraps<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=13606">#13606</a>: Support multiple selection in Add from local history<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input May 16th 2002

<h2>
What's new in this drop</h2>
Bumped plugin version number to 2.0.0<br>
Adapted to new findEditor methods<br>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=8373">#8373</a>: Compare With->Patch... missing mnemonic<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=12719">#12719</a>: "Show Pseudo-Conflicts" setting is problematic<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input April 30th 2002

<h2>
What's new in this drop</h2>
All strings NLSed.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14515">#14515</a>: java compare uses internal jcore scanner<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=14782">#14782</a>: Add from Local History missing mnemonic<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input April 18th 2002

<h2>
What's new in this drop</h2>
All strings NLSed.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=13152">#13152</a>: Internal error in "Add from Local History..." on packages<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input April 9th 2002

<h2>
What's new in this drop</h2>
New context menu action 'Add From Local History'. Just select any resource container and
'Add From Local History' presents all files that were deleted from the workspace but are
still in the local history. 

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>
The new 'Add From Local History' suffers from #12915. It works if the files were deleted
within the same session. However if you shut down and restart a workspace some deleted
files are nor listed.

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11578">#11578</a>: Patch: Missing resource on dialog<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11579">#11579</a>: Compare with Patch should be disabled on closed projects<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11907">#11907</a>: clicking in bird's eye view spots does nothing if panes not synched<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11536">#11536</a>: Option to turn off structured comparison<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=10682">#10682</a>: Need better UI for recovering deletions from local history<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11446">#11446</a>: provide "add from local history" for compilation units<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=8615">#8615</a>: Styled Text widget does not respond to system color change<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9673">#9673</a>: editor background color - no effect on other viewers<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11642">#11642</a>: Compare editors not using default background colors<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=10434">#10434</a>: Compare browser fails silently and does not give result<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input March 18th 2002

<h2>
What's new in this drop</h2>
First cut of a birdseyeview for the text compare viewer.<br>
'Compare which Each other' for Java elements.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=3641">#3641</a>: DCR: Can't compare from outliner (1GDHJKK)<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input March 14th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=11305">#11305</a>: Can't compare a "C" file<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input March 12th 2002

<h2>
What's new in this drop</h2>
Structure Compare viewers are enabled by default.<br>

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=10379">#10379</a>: Compare with Local History Dialog: lower pane is missing a bordeer<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9768">#9768</a>: (empty-menu) in compare view<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9842">#9842</a>: Expand All action needed in structure compare view<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input March 5th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9869">#9869</a>: Need more support for creating/deleting resources<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input February 26th 2002

<h2>
What's new in this drop</h2>
Patch: for every rejected file a task marker is added<br>
Compare preference page shows options in a preview<br>
New preference option for additional compare status line information

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9540">#9540</a>: Compare with patch: it should not be possible to check items that could not be applied<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9532">#9532</a>: Compare with patch: next disabled although clipboard specified<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=7681">#7681</a>: Structured results expands import statements<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9572">#9572</a>: Debugging trace left in status bar<br>


<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input February 12th 2002

<h2>
What's new in this drop</h2>
The patch wizard no longer opens a Compare Editor but applies the
patch directly to the workspace. This will be the default.
In the future the old behavior of opening the Compare Editor will be
an additional option when finishing the wizard.
<br>
Patch wizard has a 'Reverse' option for applying a "reversed" patch.
This option can be used to 'undo' a patch.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9153">#9153</a>: NPE when closing synchronize view<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9331">#9331</a>: NPE during compare with stream version<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6346">#6346</a>: Problems with Patch<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6727">#6727</a>: Patch: *.rej file must be saved in workspace<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=7358">#7358</a>: Internal Error in Compare with Patch with new files<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input February 5th 2002

<h2>
What's new in this drop</h2>
The structure compare pane opens when a resource is selected.
In previous version a double click was required.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5063">#5063</a>: Should not have to double-click to open Structure Compare<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2602">#2602</a>: Compare FW accessibility issues (1GK79UB)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2707">#2707</a>: Merge viewer should ask for save before releasing (1GI9JXS)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2772">#2772</a>: DCR: Automatic structure compare (1GJ6EUY)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=3829">#3829</a>: Smart rename button enabled when no smartness is available (1GEUVHN)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=9089">#9089</a>: Local history - Selecting item in structured compare has no effect<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input January 29th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6271">#6271</a>: Can't tell which file is which in Compare browser<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2519">#2519</a>: next/prev arrows active when only one difference in compare (1GFIQX3)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=8363">#8363</a>: NPE comparing two resources in the navigator.<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2501">#2501</a>: Empty menu in compare browser (1GFBQKE)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2854">#2854</a>: Compare: Save code path problematic (1GJYGAX)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=8574">#8574</a>: Not structure compare in compare with local history<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input January 23th 2002

<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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=8089">#8089</a>: Replace from local history: parse error<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input January 22th 2002

<h2>
What's new in this drop</h2>
Fixed an inconsistency in the binary compare viewer:
info message didn't match +/-icon in the resource compare pane.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=3859">#3859</a>: replace from history does not work for elements with error (1GEYIZ6)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6177">#6177</a>: Double click action dangerous in 'Restore from Local History'<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=7821">#7821</a>: Team 2.0 CVS synchronze bug 'no-name' dirs..<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2773">#2773</a>: Java structure compare should give better indication when no changes (1GJ6ENE)<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input January 15th 2002

<h2>
What's new in this drop</h2>
Fixed a problem in DiffNode.getName()and the DiffTreeViewer's label provider
where the left and right half of a DiffNode label would be reversed because
the "leftIsLocal" property of a CompareConfiguration wasn't obeyed.

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=1893">#1893</a>: Compare Viewer doesn't scroll to last line (1GBB34N)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5839">#5839</a>: Usability: Initial diff is sometimes not horizontally aligned<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5325">#5325</a>: Compare always scroll the text pane to the extreme limit<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=7048">#7048</a>: First element not selected<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2548">#2548</a>: Project compare should open viewing selected file (1GFMRP6)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2938">#2938</a>: Replace from local history should show busy cursor (1GKU0P3)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=7594">#7594</a>: Menu entry "Replace with Previous" shouldn't have a "..."<br>
Workaround added for:<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=7320">#7320</a>: Next diff scrolls when going into current diff<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input January 8th 2002

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

<h3>
API changes</h3>

<h3>
API Additions</h3>
Added methods to CompareUI plugin for adding and removing aliases
for the file extension to StructureCompareViewer mapping
(addStructureViewerAlias, removeStructureViewerAlias).

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6828">#6828</a>: Support with replace with previous<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=2396">#2396</a>: Save in compare editors needs progress bar (1GEYF58)<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5271">#5271</a>: JARs compared as source in release browser<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5121">#5121</a>: Replace with Previous (from local history)<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input December 11th 2001

<h2>
What's new in this drop</h2>
Keyboard shortcuts for 'Goto next Difference' and 'Goto previous Difference'
changed to Control-E and Control-Shift-E.<br>
Better NLS support.<br>
Updated file "about.html".

<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 Build Input December 4th 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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=4381">#4381</a>: Replace from local histroy - workspace element included <br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse Build Input November 27th 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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6298">#6298</a>: Replace with Local History: Workbench -> Workspace<br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5238">#5238</a>: Compare fails if takes more than 20 seconds<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 210, November 12th, 2001

<h2>
What's new in this drop</h2>
First cut for 'rejected hunk' support.

<h3>
API changes</h3>

<h3>
API Additions</h3>
new classes CompareViewerPane and CompareViewerSwitchingPane<br>

<h3>
Other highlights</h3>
Improved Patch wizard.<br>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5723">#5723</a>: Apply Patch dialog has no radio selection<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 207, November 1st, 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>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5334">#5334: Internal errors using patch tool</a><br>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=5150">#5150: Compare with patch cannot read VCM's CVS patch file</a><br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 204, October 12th, 2001

<h2>
What's new in this drop</h2>
First cut of patch support.

<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 202, September 27th, 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>
1GKKUA5: ITPUI:WINNT - Severe: memory leak in sync view<br>
1GKKGGS: ITPJUI:WIN2000 - (136) compares zips as source<br>

<h2>
Problem reports closed</h2>

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

<h2>
What's new in this drop</h2>
removed direction icon in TextMergeViewer for two-way compare

<h3>
API changes</h3>

<h3>
API Additions</h3>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GJURWJ: ITPUI:WIN2000 - Hebrew + Japanese: compare view defaults to binary<br>
1GK0388: ITPJCORE:WIN2000 - replace with local history: selecting (workspace) deletes source<br>
1GITG2V: ITPUI:WIN2000 - Comparing html files uses binary compare<br>
1GJW2TP: ITPJUI:WIN2000 - java compare: why beep every time?<br>

<h2>
Problem reports closed</h2>

<h1>
<hr WIDTH="100%"></h1>
Eclipse SDK Build 200, September 13th, 2001

<h2>
What's new in this drop</h2>
If not specified otherwise Compare viewer font is taken from workbench text font<br>
The shortcut for "Goto Next/Previous Difference" is Ctrl-D/Ctrl-Shift-D
to avoid a clash with Ctrl-P of the Print command.

<h3>
API changes</h3>

<h3>
API Additions</h3>
new method EditionSelectionDialog.setHideIdenticalEntries(boolean)<br>
new method EditionSelectionDialog.setTargetIsRight(boolean)<br>
new method EditionSelectionDialog.setAddMode(boolean)<br>
new method CompareEditorInput.saveChanges(...)<br>
new method TextMergeViewer.createLineComparator(IDocument document, IRegion region, boolean ignoreWhiteSpace)<br>

<h3>
Other highlights</h3>

<h2>
Known deficiencies</h2>

<h2>
Problem reports fixed</h2>
1GFMLFB: ITPUI:WIN2000 - files that are out of sync with the file system appear as empty<br>
1GG0ELM: ITPVCM:ALL - Local history displayed some of Today's items as Yesterday<br>
1GGNKHN: ITPJUI:ALL - No progress during replace with local history<br>
1GF2JNI: ITPUI:ALL - (minor)Compare failed title should be title case<br>
1GHBPA1: ITPVCM:WINNT - Compare - next change arrow switches to wrong file<br>
1GGQQH3: ITPJUI:WINNT - Compare hightlights a non-change instead of the change<br>
1GI5DN9: ITPUI:WIN2000 - Conflicting token deletions don't show up in text compare viewer<br>
1GI3KUR: ITPJUI:WIN2000 - Compare: double-click in versions list closes view<br>
1GFFR4B: ITPUI:WIN98 - local history is misleading<br>
1GBM0IL: ITPUI:WINNT - CompareEditorInput#save should throw CoreException<br>
1GI99LE: ITPUI:ALL - Compare viewer does not show last line when horizontal scroll bar is present<br>
1GBB34N: ITPJUI:WIN2000 - Compare Viewer doesn't scroll to last line<br>
1GGZ8DO: ITPJUI:WIN - MergeViewer invalid selection range<br>
1GIIBHM: ITPUI:WIN2000 - Problems when comparing zip files<br>
1GIKKOZ: ITPUI:ALL - alt copyright text in html doc needs update<br>
1GIURNB: ITPUI:ALL - property file of EditionSelectionDialog contains configuration options<br>
1GIUS6L: ITPUI:ALL - TextMergeViewer uses deprecated Thread.stop()<br>
1GI3HDZ: ITPJUI:ALL - Compare: conflicts with no ancestor does not show differences<br>
1GEUX0D: ITPJUI:ALL - not state aware toolbar button in compare<br>

<h2>
Problem reports closed</h2>
1GF9Y9C: ITPUI:WIN2000 - DCR: only get ancestor pane contents if pane is visible<br>

</body>
</html>

Back to the top