Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « MonoDevelop.VersionControl « VersionControl « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58b576f11d0767fa6e63d855e6840b5ea9bd9b14 (plain)
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
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
2010-08-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl/ChangeLogWriter.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs:
	* MonoDevelop.VersionControl.Dialogs/VersionControlPolicyPanel.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitMessageStylePanelWidget.cs:
	  Track api changes.

	* MonoDevelop.VersionControl/CreatePatchCommand.cs: Ignore
	  extensions which failed to initialize.

2010-07-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl.Views/BlameWidget.cs: Annotations
	  now use a DateTime instead of a String to represent the
	  commit date.

	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs:
	  Provide the correct path to GetTextAtRevision.

2010-07-28  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs:
	  Improved look. Show separators between extension widgets.

	* MonoDevelop.VersionControl/CommitDialogExtension.cs: The
	  Initialize method now can return a boolean indicating
	  whether the extension is enabled or not. Added some
	  comments.

2010-07-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs: Focus
	  the text view and move the insert point to the begining.
	  Makes it easier to insert a comment header.

	* MonoDevelop.VersionControl/ChangeLogWriter.cs:
	* MonoDevelop.VersionControl/CommitMessageFormat.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs: Added
	  option which allows omiting the file list in the commit
	  message when all files have the same comment.

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs:
	  Add some mnemonics.

2010-07-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/Repository.cs: Remove debug code.

2010-07-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/ChangeSetView.cs: Add
	  missing file.

2010-07-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	  Remove debug output.

2010-07-27  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl/ChangeSet.cs: New reusable widget
	  for showing change sets.

2010-07-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl.Views/DiffView.cs:
	* MonoDevelop.VersionControl/UnknownRepository.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	  Add basic support for git.

2010-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs: Use
	  delegation methods.

2010-07-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Worked
	  on version control views.

2010-07-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameView.cs:
	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/PatchWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Track
	  API changes.

2010-07-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Worked
	  on adjustments. (text editors no longer share a common
	  adjustment - instead they communicate)

2010-07-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Fixed
	  the overview renderer click position.

2010-07-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Caret
	  state is now shown.

2010-07-12  Michael Hutchinson  <mhutchinson@novell.com>

	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.Views/DiffParser.cs: Track
	  ProjectDomService/Parser API.

2010-07-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/DropDownBox.cs: fixed some
	  drop down box issues.

2010-07-08  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/DropDownBox.cs:
	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Worked
	  on version control gui.

2010-07-07  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl.Views/DropDownBox.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Added
	  drop down box for the version control views (TODO:
	  Selector).

2010-07-07  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Fixed
	  error in calculation.

2010-07-07  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs:
	  Improved the visualization of the change-diff - it's now
	  easier to see what has changed when only a part of the line
	  changed.

2010-07-06  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs:
	  Undo/Redo now works in comparison view.

2010-07-06  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs: Added
	  bounds check.

2010-07-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs: set correct
	  bounds.

2010-07-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs: Added range
	  check.

2010-07-01  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs: Worked
	  on version control views.

2010-06-30  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/PatchView.cs:
	* MonoDevelop.VersionControl.Views/BlameView.cs:
	* MonoDevelop.VersionControl.Views/PatchWidget.cs:
	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs:
	* gtk-gui/MonoDevelop.VersionControl.Views.PatchWidget.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidgetContainer.cs:
	* gtk-gui/MonoDevelop.VersionControl.Views.ComparisonWidgetContainer.cs:
	  Worked on version control gui.

2010-06-30  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs: Worked on
	  blame widget.

2010-06-30  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/BlameWidget.cs: Worked on
	  blame widget.

2010-06-30  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/BlameView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	  Worked on version control GUI.

2010-06-29  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl/AnnotateCommand.cs:
	* MonoDevelop.VersionControl.Views/BlameView.cs:
	* MonoDevelop.VersionControl/UnknownRepository.cs:
	* MonoDevelop.VersionControl.Views/BlameWidget.cs:
	* MonoDevelop.VersionControl.Views/AnnotateView.cs:
	* MonoDevelop.VersionControl.Views/ComparisonView.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidget.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	* MonoDevelop.VersionControl.Views/ComparisonWidgetContainer.cs:
	* gtk-gui/MonoDevelop.VersionControl.Views.ComparisonWidgetContainer.cs:
	  Worked on version control gui.

2010-06-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/Task.cs: Don't bring the VCS
	  monitor to the front.

2010-06-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Fixed 'Bug
	  610257 - Text editor does not redraw after toggling
	  annotations'.

2010-06-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Fix bug
	  #610262 - After hiding annotations they still refresh on
	  save.

2010-05-31  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Added
	  missing string to translation.

2010-05-31  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Fixed 'Bug
	  610257 - Text editor does not redraw after toggling
	  annotations'.

2010-05-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/CommitCommand.cs:
	* MonoDevelop.VersionControl/PublishCommand.cs:
	* MonoDevelop.VersionControl/CheckoutCommand.cs:
	* MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs:
	  Fix incorrect use of ShowCustomDialog/RunCustomDialog.

2010-05-22  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/CommitCommand.cs:
	* MonoDevelop.VersionControl/PublishCommand.cs:
	* MonoDevelop.VersionControl/CheckoutCommand.cs:
	* MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs:
	  More dialog placing.

2010-05-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Show a
	  status message while getting annotations.

2010-05-10  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Track API
	  changes.

2010-05-03  Lluis Sanchez Gual  <lluis@novell.com>

	* Policies.xml: Added attribute to explicitly allow
	  differential serialization for a policy (which is disabled
	  by default).

2010-04-22  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/BaseView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs: Use icon.

2010-04-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs: After
	  updating status, remove from the changeset the files/folders
	  which have been deleted. Fixes bug #582514 - VCS status view
	  sometimes has hidden invalid items that obstruct commit.

2010-04-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Don't show
	  an output pad when updating the status view.

	* MonoDevelop.VersionControl/Task.cs:
	* MonoDevelop.VersionControl/LockCommand.cs:
	* MonoDevelop.VersionControl/UnlockCommand.cs:
	* MonoDevelop.VersionControl/UpdateCommand.cs:
	* MonoDevelop.VersionControl/CommitCommand.cs:
	* MonoDevelop.VersionControl/RevertCommand.cs:
	* MonoDevelop.VersionControl/PublishCommand.cs:
	* MonoDevelop.VersionControl/CheckoutCommand.cs:
	* MonoDevelop.VersionControl/AddRemoveMoveCommand.cs:
	* MonoDevelop.VersionControl/RevertRevisionsCommands.cs:
	  Improve success message. Small api simplification.

2010-03-23  Lluis Sanchez Gual  <lluis@novell.com>

	* VersionControl.addin.xml: Register data files.

2010-03-22  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* VersionControl.addin.xml: Bumped MD version.

2010-03-17  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl/Task.cs:
	* MonoDevelop.VersionControl/BaseView.cs:
	* MonoDevelop.VersionControl/UpdateCommand.cs:
	* MonoDevelop.VersionControl/CommitCommand.cs:
	* MonoDevelop.VersionControl/RevertCommand.cs:
	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl/PublishCommand.cs:
	* MonoDevelop.VersionControl.Views/DiffView.cs:
	* MonoDevelop.VersionControl/AnnotateCommand.cs:
	* MonoDevelop.VersionControl/CheckoutCommand.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl/CreatePatchCommand.cs:
	* MonoDevelop.VersionControl.Views/AnnotateView.cs:
	* MonoDevelop.VersionControl/AddRemoveMoveCommand.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs:
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs:
	* MonoDevelop.VersionControl/RevertRevisionsCommands.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	* MonoDevelop.VersionControl.Dialogs/VersionControlPolicyPanel.cs:
	* MonoDevelop.VersionControl/VersionControlFileSystemExtension.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitMessageStylePanelWidget.cs:
	  Merged MD.Projects into MD.Core, and MD.Projects.Gui,
	  MD.Core.Gui and MD.Components into MD.Ide.

2010-03-08  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* version-control-16.png:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl/Task.cs: Added version control
	  icon.

	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	  Fix type reference ambiguity.

2010-03-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: fix build.

2010-02-23  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl.Views/DiffView.cs: Track moved
	  diff component.

2010-02-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs: Track
	  api changes.

2010-02-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Fix parsing
	  of command id. We are not using enums as ids anymore.

2010-02-12  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj: Move the icon resources
	  into files, which can be loaded without loading the whole
	  add-in.

2010-02-10  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* Makefile.am:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl.Views/DiffParser.cs: Add
	  quickfinder and folding support for unified diffs.

2010-02-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs: Track
	  API changes for lazy loading images.

2010-02-04  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Allow viewing
	  of historical, recursive directory diffs.

	* MonoDevelop.VersionControl/Repository.cs: Add support for
	  revision-range-based recursive diffing.

2010-02-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.VersionControl.csproj: Add indirect reference.

2010-01-28  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs:
	* gtk-gui/MonoDevelop.VersionControl.UrlBasedRepositoryEditor.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.EditRepositoryDialog.cs:
	* gtk-gui/MonoDevelop.VersionControl.CommitMessageStylePanelWidget.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs:
	  Flush.

2009-12-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Track the
	  last mouse cursor position on a child cell in the widget,
	  and clear when the cursor leaves. The cellrenderer can use
	  this an an accurate source of information whether the
	  pointer is still on this widget and where it is.

	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs: Don't
	  pick up the global cursor position, since it may just be an
	  expose from a window being dragged over. Instead, use the
	  cursor position from the parent FileTreeView.

2009-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/Task.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs:
	  Name threads to make debugging easier.

2009-11-24  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Track API
	  changes.

2009-11-20  Lluis Sanchez Gual  <lluis@novell.com>

	* VersionControl.addin.xml: Move the annotate command to a
	  more convenient location in the context menu.

2009-11-19  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Show
	  commit message on mouseover. Implements #545521.

2009-11-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Fix sort by
	  file name.

2009-11-11  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl/CreatePatchCommand.cs: Allow
	  patches for multiselected items in the solution pad.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* VersionControl.addin.xml: Bump MD version.

2009-10-29  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* MonoDevelop.VersionControl.csproj:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs:
	* gtk-gui/MonoDevelop.VersionControl.UrlBasedRepositoryEditor.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.EditRepositoryDialog.cs:
	* gtk-gui/MonoDevelop.VersionControl.CommitMessageStylePanelWidget.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs:
	  Flush.

2009-10-16  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl/VersionControlService.cs: Handled
	  icon loading errors.

2009-10-08  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.VersionControl.csproj: Use \ instead of '/'
	in the Import.

2009-10-08  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.VersionControl.csproj: Add md.targets .

2009-10-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Construct
	  Refresh and Open buttons explicitly to work around Mac GTK+
	  issue with stock buttons.

2009-10-07  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Only
	  update width in the GUI thread.

2009-10-07  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Do
	  whole-file updates asynchronously.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* VersionControl.addin.xml: Update license.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* VersionControl.addin.xml: Bump MD version.

2009-10-06  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Update
	  annotations on revert.

2009-10-06  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Update
	  annotation margin while editing.

2009-10-06  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs: Fix
	  exception when reverting with annotations visible.

2009-09-09  Christian Hergert  <chris@dronelabs.com>

	* MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs: 
	* MonoDevelop.VersionControl/CommitCommand.cs: 
	* MonoDevelop.VersionControl/PublishCommand.cs: 
	* MonoDevelop.VersionControl/CheckoutCommand.cs: Set dialogs
	  transient for the root window.

2009-09-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/CommitCommand.cs: Show an error
	  message when trying to commit a directory which has no
	  changes. Fixes bug #517699 - Monodevelop crash when
	  submitting to SVN.

2009-08-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: fixed
	  warning.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic: Update gtk# dependency.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.csproj: Updated dependencies. We
	  now depend on gtk# 2.12.8, Mono 2.4, and Mono.Addins 0.4.

2009-08-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.csproj: Don't make local copies
	  of project references.

2009-07-31  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* MonoDevelop.VersionControl.csproj: Flush.

2009-07-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs: The
	  status view now supports double clicking on a line of a diff
	  to jump to that line in the modified file.

2009-07-21  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs: Fixed
	  "Bug 470436 - Crash when using the mouse wheel to scroll
	  very fast on the diff viewer".

2009-06-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/Repository.cs: Properly detect
	  versioned directories. Allow reverting whole directories.
	  All this fixes bug #436282 - solution/project/folders should
	  have 'Revert All' option.

2009-06-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: When
	  double-clicking on a file, open it. Fixes bug #402108 -
	  Double-click on item in the Review changes dialog should
	  open the file or show the differences.

2009-06-25  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl/CreatePatchCommand.cs: 
	  Generate better initial names for created patches.

2009-06-23  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* VersionControl.addin.xml:
	  Add "Create Patch" to status view context menu.

2009-06-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/DiffView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitMessageStylePanelWidget.cs:
	  Use the new DesktopService instead of PlatformService.

2009-06-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Use
	  CreatePatchCommand to create the patch.

	* MonoDevelop.VersionControl/CreatePatchCommand.cs: Include
	  commit extensions in the generation of the patch, so
	  generated changelog entries are included.

	* MonoDevelop.VersionControl/Repository.cs: Convert absolute
	  paths to relative paths when a base path for the diff is
	  specified. Include patch index info when generating a patch.

2009-06-15  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* Makefile.am:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl/Commands.cs:
	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl/CreatePatchCommand.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	  Added "CreatePatch" command.

2009-06-05  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl/Repository.cs:
	  Unbreak SharpSvn addin build.

2009-06-05  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.VersionControl.Views/AnnotateView.cs:
	  Draw background for area after end of annotations.

2009-06-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am: Fix build by adding reference to Mono.Debugging.

2009-06-02  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.VersionControl.csproj: Add reference to
	  DesignerSupport addin.

2009-06-01  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* Makefile.am:
	* MonoDevelop.VersionControl.csproj:
	* MonoDevelop.VersionControl/Commands.cs:
	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl/UnknownRepository.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	* MonoDevelop.VersionControl/AnnotateCommand.cs:
	* MonoDevelop.VersionControl.Views/AnnotateView.cs:
	* VersionControl.addin.xml: Added "Annotate" command.

2009-05-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	  Use the new FilePath class.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl\CommitCommand.cs:
	* MonoDevelop.VersionControl\FileUpdateEventHandler.cs: Track
	  api changes.

	* MonoDevelop.VersionControl\VersionControlService.cs: Looks
	  like when deserializing, MS.NET can't resolve assemblies
	  which are not in the main assembly dir, even if those
	  assemblies are already loaded. Added a resolver which
	  handles this case.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl\ChangeSet.cs:
	* MonoDevelop.VersionControl\Repository.cs:
	* MonoDevelop.VersionControl\VersionInfo.cs:
	* MonoDevelop.VersionControl\PublishCommand.cs:
	* MonoDevelop.VersionControl.Views\StatusView.cs:
	* MonoDevelop.VersionControl\UnknownRepository.cs:
	* MonoDevelop.VersionControl\VersionControlItem.cs:
	* MonoDevelop.VersionControl.Dialogs\CommitDialog.cs:
	* MonoDevelop.VersionControl\VersionControlSystem.cs:
	* MonoDevelop.VersionControl\VersionControlItemList.cs: Use
	  the new FilePath class for handling file and directory
	  paths.

2009-04-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	* MonoDevelop.VersionControl/VersionControlCommandHandler.cs:
	  Added ParentWorkspaceObject to SystemFile and ProjectFolder,
	  which replaces the old Project property. It is required
	  because now it is possible to show hiddem folders and files
	  as children of a solution.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs: Renamed
	  PixbufService to ImageService.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs: Track
	  API changes.

2009-04-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs: Removed icon
	  service.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* VersionControl.addin.xml: Bump MD version.

2009-03-04  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Added
	  missing translation string.

2009-02-28  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.csproj: Flush.

2009-02-27  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* menu_resolve.png:
	* Makefile.am:
	* MonoDevelop.VersionControl.csproj:
	* VersionControl.addin.xml: Add "Resolve" menu icon.

2009-02-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs:
	  Translation fixes. Patch from Kriván Bálint.

2009-02-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	  Add missing null check.

2009-02-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs:
	  Changed override Destroy --> override OnDestroyed.

2009-02-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl.Views/DiffView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs: Worked
	  on ressource de-allocation.

2009-02-23  Lluis Sanchez Gual  <lluis@novell.com>

	* VersionControl.addin.xml: Track merge of the project pad
	  context menu.

2009-02-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs:
	  Correcty override member.

2009-02-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/DiffView.cs: diff widget
	  now gets disposed.

2009-02-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs: Fixed
	  "Bug 455892 - Crash when closing tabs".

2009-02-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Added some
	  strings to translation.

2009-02-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.csproj: Don't local-copy other
	  addins' dlls.

2009-02-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.mdp:
	* MonoDevelop.VersionControl.csproj: Migrated to MSBuild file
	  format.

2009-02-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/ChangeLogWriter.cs: Use the new
	  TextFormatter class.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* VersionControl.addin.xml: Bump MD version.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs:
	* gtk-gui/MonoDevelop.VersionControl.UrlBasedRepositoryEditor.cs:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.EditRepositoryDialog.cs:
	*
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs:
	  Flush.

2009-02-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs: Fix for Bug 469828
	  - SVN: the local path of the checkout directory get into
	  the log message.

2009-02-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl/CommitMessageStyle.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs: Fix
	  author info and commit message style defaults.

2009-02-01  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/ChangeLogWriter.cs:
	* MonoDevelop.VersionControl/CommitMessageFormat.cs: Add
	  mechanism for appending newlines to the message.

2009-01-30  Michael Hutchinson  <mhutchinson@novell.com>

	* VersionControl.addin.xml: Register policy panel as a default policy
	panel.

2009-01-29  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl/ChangeLogWriter.cs:
	* MonoDevelop.VersionControl.Dialogs/VersionControlPolicyPanel.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitMessageStylePanelWidget.cs:
	Rename UserInformation to AuthorInformation, and change other strings
	correspondingly.

	* MonoDevelop.VersionControl.mdp: Updated.

2009-01-29  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* Policies.xml:
	* gtk-gui/gui.stetic:
	* gtk-gui/objects.xml:
	* gtk-gui/generated.cs:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.mdp:
	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl/ChangeLogWriter.cs:
	* MonoDevelop.VersionControl/CommitMessageStyle.cs:
	* MonoDevelop.VersionControl/CommitMessageFormat.cs:
	* MonoDevelop.VersionControl/VersionControlPolicy.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs:
	* MonoDevelop.VersionControl.Dialogs/VersionControlPolicyPanel.cs:
	* MonoDevelop.VersionControl.Dialogs/CommitMessageStylePanelWidget.cs:
	* gtk-gui/MonoDevelop.VersionControl.CommitMessageStylePanelWidget.cs:
	Added version control policy, which allows setting the commit message
	style.

2009-01-27  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs:
	* MonoDevelop.VersionControl/CommitDialogExtension.cs: Add a property
	for CommitDialogExtensions to disallow committing.

	* gtk-gui/gui.stetic: Updated.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl.mdp: Flush project format changes.

2009-01-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs: Use UserInformation API.

2009-01-07  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/ChangeLogWriter.cs: If there are no
	changelog entries, generate an empty message (don't include the
	headers). Fixes bug #375668 - If no text is entered for any changed
	file, an entry with only name and e-mail is added to the ChangeLog.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.mdp: All projects now require fx 3.5.

2008-12-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.mdp: Don't require a specific version of
	Mono.Addins.

2008-12-05  Lluis Sanchez Gual  <lluis@novell.com>

	* VersionControl.addin.xml: Hide/protect add-ins.

2008-12-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Make it work for parallel build.

2008-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* AssemblyInfo.cs:
	* MonoDevelop.VersionControl.mdp: Add AssemblyInfo.cs files that are
	autogenerated from the addin manifests.

2008-11-14  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Corrected strings.

	* MonoDevelop.VersionControl/RevertCommand.cs: Unset commit messages
	after reverting.

2008-11-14  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Prevent commit message
	creation when user cancels.

2008-11-13  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Improve
	Revert[to]revision feature, adding commit messages.

2008-11-13  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Coding guidelines.

2008-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* VersionControl.addin.xml: Bump MD version.

2008-11-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl.Views/StatusView.cs: Don't crash when
	updating the status of deleted files (there isn't a VersionInfo for
	them after comitting). Fixes bug #437988 - NREs in version control
	addin after commit.

2008-10-31  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl/VersionControlFileSystemExtension.cs: Use
	CanMoveFiles to check if a directory can be moved from one SVN dir to
	another SVN dir. Fixes bug #436289.

2008-10-22  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* VersionControl.addin.xml:
	* MonoDevelop.VersionControl.mdp:
	* MonoDevelop.VersionControl/Repository.cs:
	* MonoDevelop.VersionControl/LockCommand.cs:
	* MonoDevelop.VersionControl/CommitCommand.cs:
	* MonoDevelop.VersionControl/RevertCommand.cs:
	* MonoDevelop.VersionControl/UnlockCommand.cs:
	* MonoDevelop.VersionControl.Views/LogView.cs:
	* MonoDevelop.VersionControl/UpdateCommand.cs:
	* MonoDevelop.VersionControl.Views/DiffView.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl/UnknownRepository.cs:
	* MonoDevelop.VersionControl/VersionControlItem.cs:
	* MonoDevelop.VersionControl/AddRemoveMoveCommand.cs:
	* MonoDevelop.VersionControl/VersionControlItemList.cs:
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs:
	* MonoDevelop.VersionControl/VersionControlCommandHandler.cs: Improved
	support for multiple selection in the project pad. Added new
	extension point for the status view context menu.

2008-10-13  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs: Commited patch from alan, to
	fix compilation issues with the public mono version.

2008-10-12  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs: Correct a
	string (mhutch agrees).

2008-10-12  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* Makefile.am:
	* MonoDevelop.VersionControl.mdp:
	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs: Warn about very
	probable accidental commit situation.

2008-10-12  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs:
	* MonoDevelop.VersionControl.Views/StatusView.cs:
	* MonoDevelop.VersionControl/VersionControlService.cs: Coding
	guidelines.

2008-10-12  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Improve the control of
	what is selected: no sense to revert to *current* rev.

2008-10-12  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.VersionControl.Views/LogView.cs: Coding guidelines.

2008-10-07  Aaron Bockover  <abockover@novell.com>

	* MonoDevelop.VersionControl/ChangeLogWriter.cs: Remove the space
	alignment from the tab indent on the ChangeLog message, preserve it
	for the commit message

2008-10-07  Aaron Bockover  <abockover@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs: Updated to use
	  ChangeLogMessageStyle instead of the WriteHeader bool

	* MonoDevelop.VersionControl/ChangeLogWriter.cs: Omit files with
	  empty/unset messages from the ChangeLog by default; when the GUI
	  builder is working again I'll add a preference for this; if the
	  ChangeLog is empty, also insert some extra whitespace for easily
	  entering commit messages without applying to files; opted for
	  ChangeLogMessageStyle enum instead of a bool WriteHeader

2008-10-07  Aaron Bockover  <abockover@novell.com>

	* MonoDevelop.VersionControl/ChangeSet.cs: Use ChangeLogWriter to
	  generate messages instead of the old formatting

	* MonoDevelop.VersionControl/ChangeLogWriter.cs: Writes a standard
	  ChangeLog file with proper grouping, alignment, word wrapping, and
	  spacing; it can produce a commit message without indentation or
	  header as well

2008-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.EditRepositoryDialog.cs,
	  gtk-gui/MonoDevelop.VersionControl.UrlBasedRepositoryEditor.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs,
	  gtk-gui/gui.stetic: Updated.
	* MonoDevelop.VersionControl/PublishCommand.cs: When publishing a
	  solution, use GetItemFiles to get all files to include in the
	  commit. Fixes bug #425339 - 'Publish' command should also check in
	  the .sln file.

2008-09-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs: Moved the
	  extensible tree view to its own directory.

2008-08-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Views/StatusView.cs,
	  MonoDevelop.VersionControl/Repository.cs,
	  MonoDevelop.VersionControl/VersionInfo.cs: Properly show the remote
	  status in the status view. Include remote additions and removals.
	  Show diff between working copy and repo when remote status is
	  requested. All this fixes bug #395284 - SVN plugin: Show Remote
	  Status does not work.

2008-08-21  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.EditRepositoryDialog.cs,
	  gtk-gui/MonoDevelop.VersionControl.UrlBasedRepositoryEditor.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.VersionControl/UrlBasedRepositoryEditor.cs: Fix bug
	  #395563 - SVN plugin: Repository Configuration dialog only fills in
	  port if arrow buttons pressed.

2008-08-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Views/StatusView.cs: Fix bug #401846 -
	  Caught exception closing VersionControl tab before it's done with
	  remote operation.

2008-08-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.mdp,
	  MonoDevelop.VersionControl.Views/Diffs.cs,
	  MonoDevelop.VersionControl.Views/Statuses.cs,
	  MonoDevelop.VersionControl.Views/LogView.cs,
	  MonoDevelop.VersionControl.Views/StatusView.cs,
	  MonoDevelop.VersionControl.Views/DiffView.cs,
	  MonoDevelop.VersionControl.Views/Logs.cs, Makefile.am,
	  MonoDevelop.VersionControl/UpdateCommand.cs,
	  MonoDevelop.VersionControl/Update.cs,
	  MonoDevelop.VersionControl/Checkout.cs,
	  MonoDevelop.VersionControl/PublishCommand.cs,
	  MonoDevelop.VersionControl/Publish.cs,
	  MonoDevelop.VersionControl/CheckoutCommand.cs: Renamed some files.
	* gtk-gui/gui.stetic: Updated.

2008-08-05  Lluis Sanchez Gual <lluis@novell.com> 

	* overlay_locked.png, overlay_unlocked.png,
	  MonoDevelop.VersionControl.mdp, VersionControl.addin.xml,
	  gtk-gui/objects.xml, gtk-gui/gui.stetic,
	  MonoDevelop.VersionControl.Views/Statuses.cs, Makefile.am,
	  MonoDevelop.VersionControl/Repository.cs,
	  MonoDevelop.VersionControl/CommitCommand.cs,
	  MonoDevelop.VersionControl/LockCommand.cs,
	  MonoDevelop.VersionControl/VersionStatus.cs,
	  MonoDevelop.VersionControl/VersionControlNodeExtension.cs,
	  MonoDevelop.VersionControl/UnlockCommand.cs,
	  MonoDevelop.VersionControl/Commands.cs,
	  MonoDevelop.VersionControl/VersionInfo.cs,
	  MonoDevelop.VersionControl/Task.cs,
	  MonoDevelop.VersionControl/VersionControlService.cs,
	  overlay_lock_required.png: Add support for locking/unlocking, and
	  for on-demand unlocking (RequestFileEdit event).

2008-07-29  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.VersionControl/Update.cs,
	  MonoDevelop.VersionControl/RevertRevisionsCommands.cs,
	  MonoDevelop.VersionControl/AddRemoveMoveCommand.cs,
	  MonoDevelop.VersionControl/RevertCommand.cs: Translated old code to
	  new dom.

2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/Repository.cs,
	  MonoDevelop.VersionControl/UnknownRepository.cs,
	  MonoDevelop.VersionControl/UrlBasedRepository.cs,
	  MonoDevelop.VersionControl/VersionControlConfiguration.cs,
	  MonoDevelop.VersionControl/VersionControlService.cs: Moved
	  serialization engine to MonoDevelop.Core. Use new syntax for
	  specifying attribute scope.

2008-07-06  Andrés G. Aragoneses <aaragoneses@novell.com> 

	Implement feature in bug#394434: "Revert [to] revision".
	* MonoDevelop.VersionControl.mdp, Makefile.am: Add the new file
	  RevertRevisionsCommands.
	* MonoDevelop.VersionControl.Views/Logs.cs: Adding the new buttons to
	  the Log view.
	* MonoDevelop.VersionControl/Repository.cs: New abstract methods
	  Revert[To]Revision.
	* MonoDevelop.VersionControl/RevertRevisionsCommands.cs: Add new file.
	* MonoDevelop.VersionControl/UnknownRepository.cs: Empty
	  implementations for Revert[To]Revision.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* VersionControl.addin.xml: Bump MD version.

2008-06-03  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs: Use the
	  OnDestroyed event instead of Dispose, since with the latest changes
	  in gtk#, Dispose is not called anymore when a widget is destroyed.

2008-05-29  Lluis Sanchez Gual <lluis@novell.com> 

	* VersionControl.addin.xml: Set a better label for the Status/Commit
	  command.
	* MonoDevelop.VersionControl/VersionControlService.cs: When adding the
	  files of a project, add subfolders when needed. Fixes bug 393190 -
	  Exception when creating new Gtk#/Stetic project if under version
	  control.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* VersionControl.addin.xml: Added version control menu to workspace
	  context menu.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.mdp, VersionControl.addin.xml,
	  Makefile.am,
	  MonoDevelop.VersionControl/VersionControlFileSystemExtension.cs,
	  MonoDevelop.VersionControl/VersionControlNodeExtension.cs,
	  MonoDevelop.VersionControl/Checkout.cs,
	  MonoDevelop.VersionControl/Publish.cs,
	  MonoDevelop.VersionControl/VersionControlService.cs: New project
	  model changes.

2008-05-15  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/gui.stetic: Set correct target version.

2008-04-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.mdp: Removed unneeded reference.

2008-03-07  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs,
	  gtk-gui/gui.stetic: Use commit icon in the ok button of the commit
	  dialog.
	* MonoDevelop.VersionControl/Publish.cs: Improved message dialog.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.VersionControl/Update.cs,
	  MonoDevelop.VersionControl/CommitCommand.cs,
	  MonoDevelop.VersionControl/AddRemoveMoveCommand.cs,
	  MonoDevelop.VersionControl/Task.cs,
	  MonoDevelop.VersionControl/Checkout.cs,
	  MonoDevelop.VersionControl/Publish.cs: Added some getstring calls

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.VersionControl/RevertCommand.cs: Added secondary text to the
	  revert dialog.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* VersionControl.addin.xml: Changed file menu for hig.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.VersionControl.Dialogs/CommitDialog.cs,
	  MonoDevelop.VersionControl.Views/Statuses.cs,
	  MonoDevelop.VersionControl.Views/Logs.cs,
	  MonoDevelop.VersionControl/CommitCommand.cs,
	  MonoDevelop.VersionControl/VersionControlNodeExtension.cs,
	  MonoDevelop.VersionControl/RevertCommand.cs,
	  MonoDevelop.VersionControl/Publish.cs,
	  MonoDevelop.VersionControl/VersionControlService.cs: Worked on gnome hig
	  compliant alerts.

2008-02-29  Mike Krüger <mkrueger@novell.com> 

	* VersionControl.addin.xml: Added many shortcuts.

2008-02-27  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.VersionControl.Views/Statuses.cs: Added some gettext calls.

2008-02-27  Mike Krüger <mkrueger@novell.com> 

	* gtk-gui/gui.stetic: Refactored status bar.

2008-02-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Dialogs/EditRepositoryDialog.cs: Don't
	  disable the name entry when creating a new repo. Fixes bug #363858.

2008-02-05  Mike Krüger <mkrueger@novell.com> 

	* VersionControl.addin.xml: Changed main menu items.

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* VersionControl.addin.xml: Update MD version.

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs:
	  Flush.

2008-01-24  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/AddRemoveMoveCommand.cs:
	  NotifyFileStatusChanged is now gui thread safe, so no need to invoke it
	  through Gtk.Application.Invoke.

2008-01-22  Lluis Sanchez Gual <lluis@novell.com> 

	* VersionControl.addin.xml: Updated add-in category and description.

2008-01-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/VersionControlService.cs: Make sure file status
	  change events are always fired in the gui thread.

2008-01-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/RevertCommand.cs: Notify file changes through
	  the FileService.

2008-01-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Views/Statuses.cs: Removed colorize method. Not
	  needed anymore.
	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs: Changed the way
	  diffs are rendered. Instead of having a big pango layout with all text,
	  now we render text line by line, skipping lines which are not visible.
	  Coloring is done changing the GC, instead of using markup. Fixes bug
	  #353705 and improves performance.

2008-01-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/Checkout.cs,
	  MonoDevelop.VersionControl/Publish.cs,
	  MonoDevelop.VersionControl/VersionControlService.cs: If there isn't any
	  supported version control system installed, show a message saying that,
	  instead of showing a Select Repository dialog with an empty combo. Fixes
	  bug #344841.
	* MonoDevelop.VersionControl.Dialogs/EditRepositoryDialog.cs: Select the
	  first vcs type by default.

2008-01-07  Andreia Gaita <avidigal@novell.com>

	* MonoDevelop.VersionControl.Views/Diffs.cs: Change the diff algorithm
	call to have case-sensitive diffs.

2007-12-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.mdp: Updated project files. The order of
	  extended properties won't change anymore.

2007-12-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Views/Diffs.cs,
	  MonoDevelop.VersionControl.Views/CellRendererDiff.cs,
	  MonoDevelop.VersionControl.Views/Logs.cs: Moved PlatformService to
	  MD.Core.Gui. Removed old FileIconService class, which is now implemented
	  in PlatformService.

2007-12-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.mdp,
	  MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs,
	  MonoDevelop.VersionControl.Dialogs/EditRepositoryDialog.cs,
	  MonoDevelop.VersionControl.Dialogs/CommitDialog.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.SelectRepositoryDialog.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.EditRepositoryDialog.cs,
	  gtk-gui/MonoDevelop.VersionControl.Dialogs.CommitDialog.cs,
	  gtk-gui/gui.stetic, MonoDevelop.VersionControl.Views/Diffs.cs,
	  MonoDevelop.VersionControl.Views/Statuses.cs,
	  MonoDevelop.VersionControl.Views/Logs.cs, Makefile.am,
	  MonoDevelop.VersionControl/Update.cs,
	  MonoDevelop.VersionControl/CommitCommand.cs,
	  MonoDevelop.VersionControl/VersionControlFileSystemExtension.cs,
	  MonoDevelop.VersionControl/VersionControlNodeExtension.cs,
	  MonoDevelop.VersionControl/VersionControlSystem.cs,
	  MonoDevelop.VersionControl/AddRemoveMoveCommand.cs,
	  MonoDevelop.VersionControl/VersionControlProjectService.cs,
	  MonoDevelop.VersionControl/ChangeSet.cs,
	  MonoDevelop.VersionControl/Task.cs,
	  MonoDevelop.VersionControl/Checkout.cs,
	  MonoDevelop.VersionControl/BaseView.cs,
	  MonoDevelop.VersionControl/RevertCommand.cs,
	  MonoDevelop.VersionControl/Publish.cs,
	  MonoDevelop.VersionControl/VersionControlService.cs: API cleanup.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* VersionControl.addin.xml: Bump add-in versions.

2007-12-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/VersionControlService.cs: Check if Subversion
	  is installed in a nicer way. Fixes bug #342507.

2007-12-06  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.VersionControl.Views/CellRendererDiff.cs:
	* MonoDevelop.VersionControl.Views/Diffs.cs:
	* MonoDevelop.VersionControl.Views/Logs.cs: Use the PlatformService to get
	  font and mime information instead of GConf / Gnome.Vfs directly

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.mdp, VersionControl.addin.xml, Makefile.am:
	  Directory reorganization.

2007-12-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/VersionControlProjectService.cs: Save comments
	  in a background thread and only after a small delay (avoids saving too
	  often). Should fix bug #324986.

2007-12-01  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/Repository.cs,
	  MonoDevelop.VersionControl/VersionControlFileSystemExtension.cs,
	  MonoDevelop.VersionControl/UrlBasedRepository.cs: In some cases it may
	  be possible to natively move files between two repositories (e.g. if
	  they are in the same server). Added a virtual method to check that and
	  implemented it for SVN.
	* MonoDevelop.VersionControl/VersionControlNodeExtension.cs: Add support for
	  version control commands for all kinds of combine entries, not only
	  Project and Combine.

2007-11-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl.Views/Logs.cs: Don't disable the view if
	  version info is not found for the file/folder. Just hide the buttons.
	  Fixes bug #324953.

2007-11-09  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.VersionControl.Dialogs/SelectRepositoryDialog.cs,
	  MonoDevelop.VersionControl.Views/Statuses.cs,
	  MonoDevelop.VersionControl/CommitCommand.cs,
	  MonoDevelop.VersionControl/VersionControlNodeExtension.cs,
	  MonoDevelop.VersionControl/VersionControlProjectService.cs,
	  MonoDevelop.VersionControl/RevertCommand.cs: Track LoggingService API
	  changes.

2007-11-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.VersionControl/Publish.cs: Use RootCombine instead of
	  CurrentOpenCombine when possible.