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

ChangeLog « MonoDevelop.Deployment « Deployment « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c16ad85de1bcd0067e47672a501afaf7ab88bc11 (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
2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Deployment\DefaultDeployServiceExtension.cs:
	  When targetting MS.NET, deploy .pdb files instead of .mdb.

	* MonoDevelop.Deployment.Gui\DialogFileReplacePolicy.cs: Use
	  better method for making a sync call in the gui thread.
	  Fixes bug #550806.

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

	* gtk-gui/gui.stetic:
	* gtk-gui/generated.cs:
	* MonoDevelop.Deployment.csproj:
	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.FileReplaceDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.PackagingFeatureWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.SourcesZipEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.CommandDeployEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.LocalFileCopyConfigurationEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditorWidget.cs:
	  Flush.

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

	* AssemblyInfo.cs:
	* MonoDevelop.Deployment.addin.xml: Bump MD version.

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

	* MonoDevelop.Deployment.Gui/DeployFileListWidget.cs: Fix
	  FilePath conversion issue.

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

	* MonoDevelop.Deployment.Commands/Commands.cs: Set dialog transient
	  for the root window.

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.Deployment.csproj: Updated dependencies. We now
	  depend on gtk# 2.12.8, Mono 2.4, and Mono.Addins 0.4.

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

	* MonoDevelop.Deployment/PackageBuilder.cs: When running on
	  command line, don't try to get the opened solution.

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

	* MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs:
	  Improve error reporting.

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

	* MonoDevelop.Deployment.addin.xml: Enable serialization of
	  the "Deploy" property. Fixes bug #521374.

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

	* gtk-gui/MonoDevelop.Deployment.Gui.SourcesZipEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs:
	  Flush.

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

	* MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs:
	  Use the new api for removing projects from a solution.

	* MonoDevelop.Deployment.csproj: Don't use a specific version
	  for SharpZipLib.

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

	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.FileReplaceDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs:
	  Flush.

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

	* MonoDevelop.Deployment/DeployDirectoryInfo.cs:
	* MonoDevelop.Deployment.Gui/DeployDirectoryInfoEditor.cs:
	  Track api changes.

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

	* MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs:
	* MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs:
	  Use the new DesktopService instead of PlatformService.

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

	* MonoDevelop.Deployment\DeployFile.cs: Use the new FilePath
	  class for handling file and directory paths.

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

	* MonoDevelop.Deployment.Gui/DeployDialog.cs:
	* MonoDevelop.Deployment.Gui/EditPackageDialog.cs: Renamed
	  PixbufService to ImageService.

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

	* MonoDevelop.Deployment.Gui/DeployDialog.cs:
	* MonoDevelop.Deployment.Gui/EditPackageDialog.cs: Track API
	  changes.

2009-04-17  Mike Kestner  <mkestner@novell.com>

	* MonoDevelop.Deployment.csproj: don't require specific
	gtk-sharp version.

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

	* MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Removed
	  project service.

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

	* AssemblyInfo.cs:
	* MonoDevelop.Deployment.addin.xml: Bump MD version.

2009-03-13  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* MonoDevelop.Deployment.Targets/SshFuseFileCopyHandler.cs:
	  Making some strings not translatable.

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

	* MonoDevelop.Deployment.Gui/PropertyProvider.cs: Worked on
	  propertygrid localization.

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

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

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

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

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

	* AssemblyInfo.cs:
	* MonoDevelop.Deployment.addin.xml: Bump MD version.

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

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

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

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* gtk-gui/objects.xml:
	* gtk-gui/generated.cs:
	* MonoDevelop.Deployment.mdp:
	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.FileReplaceDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.SourcesZipEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.PackagingFeatureWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.CommandDeployEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.LocalFileCopyConfigurationEditorWidget.cs:
	* gtk-gui/MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditorWidget.cs:
	Updated generated code and removed objects.xml, which is not required
	anymore.

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

	* MonoDevelop.Deployment.addin.xml: Fix label.

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

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

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

	* MonoDevelop.Deployment.mdp: No specific version of Mono.Addins is
	required.

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

	* MonoDevelop.Deployment.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>

	* gtk-gui/gui.stetic: Flush.

	* AssemblyInfo.cs: Add AssemblyInfo.cs files that are autogenerated from
	the addin manifests.

2008-11-27  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Deployment.Gui/DeployFileListWidget.cs: Null check to
	prevent NRE.

2008-11-06  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am: Fix build dependencies.

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

	* MonoDevelop.Deployment.addin.xml: Bump MD version.

2008-10-03  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Deployment/MD1Serializer.cs: Another shot at BuildAction
	  mapping, with comments.

2008-10-03  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Deployment/MD1Serializer.cs: Add missing deploy key,
	  remove unused variable.

2008-10-01  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Deployment.addin.xml, MonoDevelop.Deployment.mdp,
	  MonoDevelop.Deployment/MD1Serializer.cs,
	  MonoDevelop.Deployment/DefaultDeployServiceExtension.cs,
	  MonoDevelop.Deployment/DeployProjectServiceExtension.cs,
	  MonoDevelop.Deployment/DeployContext.cs,
	  MonoDevelop.Deployment/DeployProperties.cs,
	  MonoDevelop.Deployment.Gui/PropertyProvider.cs, md1format.xml,
	  MonoDevelop.Deployment.Targets/LocalFileCopyHandler.cs: Integrate
	  deployment with the new "local copy" features in core. MD1 format
	  compatibility is a little ugly.
	* Makefile.am: Added quick property for enabling translation of files.
	  Supports multi-select.

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

	* MonoDevelop.Deployment.mdp: Updated projects.

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

	* MonoDevelop.Deployment.addin.xml: Add icon for Create Package
	  command.
	* MonoDevelop.Deployment/DefaultDeployServiceExtension.cs: Fix bug
	  #422764 - Support "App.config" as well as "app.config" (lowercase)

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

	* gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.PackagingFeatureWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.CommandDeployEditorWidget.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Deployment.FileReplaceDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.SourcesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/SourcesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/EntrySelectionTree.cs,
	  MonoDevelop.Deployment.Gui/BinariesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/DeployFileListWidget.cs,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs: Updated
	  generated code.

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

	* MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs: Moved
	  the extensible tree view to its own directory.

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

	* MonoDevelop.Deployment.mdp: Removed some parts of the documentation
	  service.

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

	* md1format.xml,
	  MonoDevelop.Deployment.Targets/BaseFuseFileCopyConfiguration.cs,
	  MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/CommandPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/LocalFileCopyConfiguration.cs,
	  MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs,
	  MonoDevelop.Deployment/DeployService.cs,
	  MonoDevelop.Deployment/FileCopyConfiguration.cs,
	  MonoDevelop.Deployment/InstallResolver.cs,
	  MonoDevelop.Deployment/MD1Serializer.cs,
	  MonoDevelop.Deployment/Package.cs,
	  MonoDevelop.Deployment/PackageBuilder.cs,
	  MonoDevelop.Deployment/PackageCollection.cs,
	  MonoDevelop.Deployment/PackagingProject.cs,
	  MonoDevelop.Deployment/UnknownFileCopyConfiguration.cs,
	  MonoDevelop.Deployment/UnknownPackageBuilder.cs: Moved
	  serialization engine to MonoDevelop.Core. Use new syntax for
	  specifying attribute scope.

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

	* MonoDevelop.Deployment.addin.xml: Add missing serializable type.

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

	* MonoDevelop.Deployment/DefaultDeployServiceExtension.cs,
	  MonoDevelop.Deployment/DeployProjectServiceExtension.cs: Some
	  parameter renames to make it more explicit that configuration names
	  refer to solution configurations, not project configurations.

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

	* MonoDevelop.Deployment.addin.xml: Bump MD version.

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

	* MonoDevelop.Deployment.Gui/DeployFileListWidget.cs,
	  MonoDevelop.Deployment.Gui/DeployDirectoryInfoEditor.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-30  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Deployment/DeployProjectServiceExtension.cs: Don't deploy
	  files if the build failed.

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

	* MonoDevelop.Deployment.Targets/CommandPackageBuilder.cs: Track api
	  changes.

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

	* MonoDevelop.Deployment.addin.xml: Merged the extension points for
	  project and solution option panels into a single extension point. A
	  single extension point will now be used for all kinds of items.
	  Extension conditions can be used to make panels visible only for
	  some specific item types.

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

	* MonoDevelop.Deployment/PackagingProject.cs,
	  MonoDevelop.Deployment/DeployProjectServiceExtension.cs,
	  MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs:
	  Replaced ICompilerResult/DefaultCompilerResult/CompilerResults by a
	  new BuildResult class, which has owner information at error level,
	  so it is possible to know which project generated an error when
	  building a solution. Updated Task and TaskService to use the new
	  owner information.

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

	* MonoDevelop.Deployment.addin.xml,
	  MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs,
	  MonoDevelop.Deployment.mdp,
	  MonoDevelop.Deployment/MD1Serializer.cs,
	  MonoDevelop.Deployment/PackagingProject.cs,
	  MonoDevelop.Deployment/DeployService.cs,
	  MonoDevelop.Deployment/DefaultDeployServiceExtension.cs,
	  MonoDevelop.Deployment/UnknownPackageBuilder.cs,
	  MonoDevelop.Deployment/InstallResolver.cs,
	  MonoDevelop.Deployment/IDeployable.cs,
	  MonoDevelop.Deployment/DeployFile.cs,
	  MonoDevelop.Deployment/DeployProjectServiceExtension.cs,
	  MonoDevelop.Deployment/PackageBuilder.cs,
	  MonoDevelop.Deployment/DeployServiceExtension.cs,
	  MonoDevelop.Deployment.Commands/Commands.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic, MonoDevelop.Deployment.Gui/DeployDialog.cs,
	  MonoDevelop.Deployment.Gui/SourcesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/EditPackageDialog.cs,
	  MonoDevelop.Deployment.Gui/InstallDialog.cs,
	  MonoDevelop.Deployment.Gui/EntrySelectionTree.cs,
	  MonoDevelop.Deployment.Gui/BinariesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/DeployFileListWidget.cs,
	  MonoDevelop.Deployment.Gui/DeployOperations.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeature.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs, Makefile.am,
	  md1format.xml,
	  MonoDevelop.Deployment.Targets/CommandPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs: New
	  project model changes.

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

	* MonoDevelop.Deployment.addin.xml: Removed obsolete attributes.

2008-04-15  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Deployment.Targets/LocalFileCopyHandler.cs: Remove extra
	  copy operation, thereby avoiding re-copying entire file every 1 kb,
	  and vastly improving performance on large files. Thanks to
	  firegrass on #MonoDevelop IRC for catching this bug.

2008-03-10  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Deployment.Gui/DialogFileReplacePolicy.cs: Message
	  service is no longer GUI-thread synched, so handle that here
	  instead.

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

	* MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs, gtk-gui/gui.stetic,
	  MonoDevelop.Deployment.Gui/DialogFileReplacePolicy.cs,
	  MonoDevelop.Deployment.Gui/DeployDialog.cs,
	  MonoDevelop.Deployment.Gui/EditPackageDialog.cs: Worked on gnome hig
	  compliant alerts.

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

	* MonoDevelop.Deployment.mdp, Makefile.am: Removed some unused glade and
	  gnome-sharp references (only the unused). But I'll continue to remove
	  glade, we need to lower the dependency tree a bit.

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

	* MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs:
	  Handle the delete key in TreeViewPad, so it will work event if the
	  shortcut is not defined.

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

	* MonoDevelop.Deployment.addin.xml: Structured main menu.

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

	* MonoDevelop.Deployment.addin.xml: Update MD version.

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

	* gtk-gui/objects.xml, gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Deployment.Gui/EditDeployTargetDialog.cs: Code cleanup.

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

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

2008-01-15  Michael Hutchinson <mhutchinson@novell.com> 

	* templates/PackagingProject.xpt.xml: Make template categories translatable.

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

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

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

	* gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs, gtk-gui/gui.stetic,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs: FileCopy*
	  classes need to be public.

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

	* MonoDevelop.Deployment.addin.xml,
	  MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs,
	  MonoDevelop.Deployment.mdp, MonoDevelop.Deployment/DeployData.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Deployment.Gui/SshFuseFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/SourcesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/LocalFileCopyConfigurationEditor.cs,
	  MonoDevelop.Deployment.Gui/LocalFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/BinariesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeature.cs,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs,
	  MonoDevelop.Deployment.Gui/DeployDirectoryInfoEditor.cs,
	  MonoDevelop.Deployment.Gui/CommandDeployEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/PackageBuilderEditor.cs,
	  MonoDevelop.Deployment.Gui/SshFuseFileCopyConfigurationEditor.cs,
	  Makefile.am,
	  MonoDevelop.Deployment.Targets/LocalFileCopyConfiguration.cs,
	  MonoDevelop.Deployment.Targets/BaseFuseFileCopyConfiguration.cs,
	  MonoDevelop.Deployment.Targets/CommandPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/LocalFileCopyHandler.cs,
	  MonoDevelop.Deployment.Targets/BaseFuseFileCopyHandler.cs,
	  MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/SshFuseFileCopyHandler.cs: API cleanup.

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

	* MonoDevelop.Deployment/DeployDirectoryNodeType.cs,
	  MonoDevelop.Deployment/DeployPlatformNodeType.cs: Fix warning.
	* gtk-gui/objects.xml, gtk-gui/gui.stetic: Updated.

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

	* MonoDevelop.Deployment.addin.xml: Bump add-in versions.

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

	* MonoDevelop.Deployment.addin.xml, MonoDevelop.Deployment.mdp,
	  gtk-gui/gui.stetic, Makefile.am: Directory reorganization.

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

	* MonoDevelop.Deployment/DeployDirectoryNodeType.cs,
	  MonoDevelop.Deployment/DeployPlatformNodeType.cs: Make some attributes
	  localizable.
	* MonoDevelop.Deployment/PackageBuilder.cs: Added some null checks.
	* gtk-gui/objects.xml: Updated.
	* MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Avoid nullref when
	  creating the project.
	* MonoDevelop.Deployment.Gui/PackagingFeature.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs: Show the packaging
	  feature widget when creating a new packaging project.

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

	* MonoDevelop.Deployment/DeployContext.cs,
	  MonoDevelop.Deployment.Targets/SshFuseFileCopyHandler.cs,
	  MonoDevelop.Deployment.Gui/PackageBuilderEditor.cs: Track LoggingService
	  API changes.

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

	* MonoDevelop.Deployment.Gui/DeployDialog.cs,
	  MonoDevelop.Deployment.Gui/EntrySelectionTree.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs,
	  MonoDevelop.Deployment/PackageBuilder.cs: Use RootCombine instead of
	  CurrentOpenCombine when possible.

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

	* MonoDevelop.Deployment.addin.xml: Bump MD version.

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

	* MonoDevelop.Deployment.addin.xml, MonoDevelop.Deployment.mdp,
	  gtk-gui/objects.xml, Makefile.am, icons/packaging-project-16.png,
	  icons/packaging-32.png, icons/packaging-16.png,
	  icons/packaging-project-32.png, templates/PackagingProject.xpt.xml:
	  Updated project icons. Use the base project icon with an overlay to show
	  the type.
	* MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Track api changes.

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

	* gtk-gui/objects.xml, gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic: Updated.
	* MonoDevelop.Deployment.Gui/PackagingFeature.cs: Track api changes. Add
	  description property.
	* MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs: If the only option
	  is to create a new packaging project, don't show a checkbox, a label is
	  enough.

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

	* MonoDevelop.Deployment.mdp: Project file names updated by change in MD
	  path functions.

2007-10-12  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Deployment/InstallResolver.cs,
	  MonoDevelop.Deployment/DeployFile.cs,
	  MonoDevelop.Deployment/DeployProjectServiceExtension.cs,
	  MonoDevelop.Deployment/PackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs: Applied
	  changes that were neccassary for to the new FileService.

2007-10-02  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Deployment.addin.xml, MonoDevelop.Deployment.mdp,
	  gtk-gui/objects.xml, gtk-gui/gui.stetic, Makefile.am: Updated.
	* gtk-gui/MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/SshFuseFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/SshFuseFileCopyConfigurationEditor.cs: New
	  widget for editing SSH FUSE copy config.
	* MonoDevelop.Deployment.Gui/DialogFileReplacePolicy.cs: Remove old code.
	* MonoDevelop.Deployment.Gui/LocalFileCopyConfigurationEditor.cs,
	  MonoDevelop.Deployment.Targets/LocalFileCopyConfiguration.cs,
	  MonoDevelop.Deployment.Targets/BaseFuseFileCopyConfiguration.cs,
	  MonoDevelop.Deployment.Targets/LocalFileCopyHandler.cs,
	  MonoDevelop.Deployment.Targets/BaseFuseFileCopyHandler.cs: Base work to
	  support FUSE file copiers.
	* MonoDevelop.Deployment.Targets/SshFuseFileCopyHandler.cs: New file deploy
	  handler that copies files over an SSH FUSE connection to a remote
	  computer.

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

	* MonoDevelop.Deployment.mdp,
	  gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs,
	  gtk-gui/objects.xml, gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic, Makefile.am: Updated.
	* MonoDevelop.Deployment/DeployService.cs: Actually register to handle file
	  copier extensions.
	* MonoDevelop.Deployment/IFileCopyHandler.cs,
	  MonoDevelop.Deployment/FileCopyHandler.cs: Pass DeployContext in
	  CopyFiles operation so that directories can be resolved.
	* MonoDevelop.Deployment/UnknownFileCopyConfiguration.cs: New
	  FriendlyLocation property that specifies how the location should be
	  shown to the user.
	* MonoDevelop.Deployment/FileCopyConfiguration.cs: Implement
	  FriendlyLocation. Track API change in CopyFiles.
	* MonoDevelop.Deployment/IFileReplacePolicy.cs: Name FileReplaceMode = 0 as
	  NotSet.
	* gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs: Make
	  public.
	* gtk-gui/MonoDevelop.Deployment.FileReplaceDialog.cs,
	  MonoDevelop.Deployment.Gui/DialogFileReplacePolicy.cs,
	  MonoDevelop.Deployment.Gui/FileReplaceDialog.cs: Much, much better
	  dialog IFileReplacePolicy implementation.
	* MonoDevelop.Deployment.Targets/LocalFileCopyConfiguration.cs: Implement
	  FriendlyLocation. Make TargetLocation virtual so that inheriting classes
	  can override it in order that it's handled correctly by the
	  LocalFileCopyHandler.
	* MonoDevelop.Deployment.Targets/LocalFileCopyHandler.cs: Update handler so
	  it can report progress to monitor, and also gives much better feedback
	  on problems. Use DeployContext to look up target directories.

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

	* MonoDevelop.Deployment.addin.xml, gtk-gui/gui.stetic: Bump MD version.

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

	* gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.PackagingFeatureWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.SourcesZipEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs: Regenerated gui
	  files.

2007-09-15  Andrés G. Aragoneses <knocte@gmail.com>

	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs:
	* gtk-gui/gui.stetic: Don't translate "page#" texts.

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

	* MonoDevelop.Deployment.addin.xml: Cosmetic fix in command label.

2007-08-23  Marcos David Marín Amador <MarcosMarin@gmail.com>

	* MonoDevelop.Deployment/InstallResolver.cs: Added support for
	  targets Include and IncludeRoot.

	* MonoDevelop.Deployment/TargetDirectory.cs: Added targets Include
	  and IncludeRoot.

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

	* MonoDevelop.Deployment.addin.xml: Removed the CommandService class.
	  Everything is done directly with CommandManager. Moved all extension
	  node types to MD.Components.

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

	* MonoDevelop.Deployment.addin.xml,
	  MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs,
	  MonoDevelop.Deployment.mdp, MonoDevelop.Deployment/DeployService.cs,
	  gtk-gui/objects.xml,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs,
	  MonoDevelop.Deployment.Gui/PackageBuilderEditor.cs, Makefile.am:
	  Reorganized the extension point hierarchy. Embedded all add-in manifests
	  as resources.

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

	* MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs,
	  MonoDevelop.Deployment.NodeBuilders/PackagingProjectNodeBuilder.cs:
	  Converted DispatchService to a static class.

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

	* MonoDevelop.Deployment/DeployContext.cs: Fix build.

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

	* MonoDevelop.Deployment/DeployContext.cs,
	  MonoDevelop.Deployment.Gui/PackageBuilderEditor.cs: Use the log
	  service for logging errors.

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

	* MonoDevelop.Deployment/InstallResolver.cs,
	  MonoDevelop.Deployment/DeployFile.cs,
	  MonoDevelop.Deployment/DeployProperties.cs,
	  MonoDevelop.Deployment.Gui/PropertyProvider.cs: Added property for
	  specifying the attributes that the deployed file will have.
	* gtk-gui/objects.xml, gtk-gui/gui.stetic: Updated.

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

	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic: Updated.

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

	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/objects.xml, gtk-gui/gui.stetic: Updated.

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

	* gtk-gui/MonoDevelop.Deployment.Gui.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.PackagingFeatureWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EntrySelectionTree.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.BinariesZipEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.SourcesZipEditorWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs: Made
	  private gui components internal.

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

	* MonoDevelop.Deployment/DeployService.cs: Handle add-in unloading.
	* gtk-gui/gui.stetic, MonoDevelop.Deployment.Gui/DeployDialog.cs,
	  MonoDevelop.Deployment.Gui/SourcesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/EditPackageDialog.cs,
	  MonoDevelop.Deployment.Gui/InstallDialog.cs,
	  MonoDevelop.Deployment.Gui/EntrySelectionTree.cs,
	  MonoDevelop.Deployment.Gui/LocalFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/BinariesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/DeployFileListWidget.cs,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs,
	  MonoDevelop.Deployment.Gui/CommandDeployEditorWidget.cs: Made gui
	  classes internal.

2007-05-22  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Deployment.Gui/DeployOperations.cs (Install):
	Destroy dialog in finally block.
	(ShowPackageSettings): Likewise.

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

	* MonoDevelop.Deployment.addin.xml: Register the new property.

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

	* MonoDevelop.Deployment/DeployProperties.cs: Added
	  UseProjecRelativePath property. When set, the file will be deployed
	  to the same relative path it has in the project.
	* MonoDevelop.Deployment.Gui/PropertyProvider.cs: Use a custom type
	  descriptor. Disable the deploy properties when the file is not set
	  for deployment.

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

	* MonoDevelop.Deployment.mdp: Don't copy project references.

2007-05-10  Michael Hutchinson <m.j.hutchinson@gmail.com> 

	* MonoDevelop.Deployment.mdp: Add MonoDevelop.Deployment.addin.xml
	  back to the file list, but exclude from makefile synching.

2007-05-09  Michael Hutchinson <m.j.hutchinson@gmail.com> 

	* MonoDevelop.Deployment/Makefile.am: Eliminate duplication of 
	MonoDevelop.Deployment.addin.xml target.

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

	* MonoDevelop.Deployment.addin.xml: Added missing dependency.
	* MonoDevelop.Deployment.mdp, Makefile.am: Reference shared assemblies
	  from the correct location.

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

	* MonoDevelop.Deployment/DeployProjectServiceExtension.cs: Avoid
	  copying files when the target destination is the same file.

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

	* MonoDevelop.Deployment.addin.xml, MonoDevelop.Deployment.mdp,
	  MonoDevelop.Deployment/DeployService.cs,
	  MonoDevelop.Deployment/DeployDirectoryNodeType.cs,
	  MonoDevelop.Deployment/DeployPlatformNodeType.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Deployment.Gui/FileCopyConfigurationSelector.cs,
	  MonoDevelop.Deployment.Gui/PackageBuilderEditor.cs, Makefile.am:
	  Migration to Mono.Addins.

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

	* MonoDevelop.Deployment.addin.xml, MonoDevelop.Deployment.mdp,
	  MonoDevelop.Deployment/DeployService.cs,
	  MonoDevelop.Deployment/DeployProjectServiceExtension.cs,
	  Makefile.am: After building a project, copy to the output directory
	  all files marked with the deploy flag.
	* MonoDevelop.Deployment/DefaultDeployServiceExtension.cs: Rename
	  app.config files to <assembly-name>.config when deploying.

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

	* MonoDevelop.Deployment/PackageBuilder.cs: Avoid including duplicated
	  entries to the package builder.
	* MonoDevelop.Deployment.Gui/DeployDialog.cs: Minor fix.
	* MonoDevelop.Deployment.Gui/SourcesZipEditorWidget.cs: Properly select
	  the default format (comparison is done now by name, since the file
	  formant instances may be different).
	* MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Don't explicitely
	  exclude PackagingProjects. The package builders will do it.
	* MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs: Include the
	  parent combine in new packages.
	* MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs: Don't
	  allow including PackagingProjects in the archive. Compile the
	  project before generating the package.
	* MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs: Use the
	  file format of the source project by default.

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

	* MonoDevelop.Deployment.addin.xml,
	  gtk-gui/MonoDevelop.Deployment.Gui.PackagingFeatureWidget.cs,
	  gtk-gui/gui.stetic, MonoDevelop.Deployment.Gui/PackagingFeature.cs,
	  MonoDevelop.Deployment.Gui/PackagingFeatureWidget.cs: Implemented a
	  project feature which allows creating packages for new projects.
	* MonoDevelop.Deployment.NodeBuilders/PackageNodeBuilder.cs: Show the
	  package type name if it is different from the package name.
	* MonoDevelop.Deployment.mdp, Makefile.am: Added new files.
	* MonoDevelop.Deployment/DeployService.cs: Added method for getting the
	  extension of an archive.
	* MonoDevelop.Deployment/PackageBuilder.cs: Added DefaultName and
	  CreateDefaultBuilders(). Implemented method for add-in new combine
	  entries to the builder.
	* gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/objects.xml: Updated.
	* MonoDevelop.Deployment.Gui/DeployDialog.cs: Minor fixes.
	* MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Moved common
	  combine selection code to PackageBuilder.
	* MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs:
	  Implemented DefaultName and CreateDefaultBuilders().
	* BinariesZipEditorWidget.cs: Moved to GUI directory.

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

	* MonoDevelop.Deployment/PackagingProject.cs,
	  MonoDevelop.Deployment.Commands/Commands.cs: Provide the package
	  name when creating a new package.
	* MonoDevelop.Deployment/DeployService.cs: In GetDeployFiles, remove
	  files excluded by the deploy context.
	* MonoDevelop.Deployment/DefaultDeployServiceExtension.cs: Clone the
	  file list returned by IDeployable, since the list is going to be
	  modified.
	* MonoDevelop.Deployment/DeployFile.cs: Added copy constructor.
	* MonoDevelop.Deployment/DeployContext.cs: Added method which allows
	  filtering the deploy file list.
	* MonoDevelop.Deployment/PackageBuilder.cs: Added property which allows
	  specifying files which have to be excluded from the package. If a
	  combine is open in the IDE, try to get combine entries to package
	  from it.
	* MonoDevelop.Deployment/DeployProperties.cs: TargetDirectory now
	  returns ProgramFiles by default.
	* gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs: Removed the
	  Add button.
	* gtk-gui/objects.xml: Updated.
	* gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Deployment.Gui/EditPackageDialog.cs,
	  MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Added a page for
	  selecting the combine entries to deploy.
	* MonoDevelop.Deployment.Gui/DeployFileListWidget.cs: Allow selecting
	  the files to deploy.
	* MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs: Track
	  api changes.
	* MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs: Source
	  package don't need a deploy context.

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

	* MonoDevelop.Deployment.mdp, Makefile.am: Updated.
	* MonoDevelop.Deployment/PackagingProject.cs,
	  MonoDevelop.Deployment/Package.cs,
	  MonoDevelop.Deployment/PackageBuilder.cs: Store the path to the
	  entry to package in the package builder. Allow specifying a list of
	  child entries to be included in the package, in this way it is
	  possible to create packages which include only some of the
	  projects.
	* MonoDevelop.Deployment/DeployService.cs,
	  MonoDevelop.Deployment/DeployServiceExtension.cs,
	  MonoDevelop.Deployment.Commands/Commands.cs,
	  MonoDevelop.Deployment.Gui/SourcesZipEditorWidget.cs,
	  MonoDevelop.Deployment.Gui/IPackageBuilderEditor.cs,
	  MonoDevelop.Deployment.Gui/PackageBuilderEditor.cs,
	  MonoDevelop.Deployment.Targets/CommandPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/BinariesZipPackageBuilder.cs,
	  MonoDevelop.Deployment.Targets/SourcesZipPackageBuilder.cs: The
	  combine entry to package (and the child entries to include) are now
	  part of the package builder configuration.
	* MonoDevelop.Deployment/DefaultDeployServiceExtension.cs: Provide the
	  source project in the deploy file constructor.
	* MonoDevelop.Deployment/UnknownPackageBuilder.cs,
	  MonoDevelop.Deployment/InstallResolver.cs,
	  BinariesZipEditorWidget.cs: Track api changes.
	* MonoDevelop.Deployment/DeployFile.cs: Added SourceCombineEntry, which
	  returns the combine entry which generated this file, and
	  DisplayName, which is a descriptive name of the file.
	* gtk-gui/MonoDevelop.Deployment.Gui.InstallDialog.cs,
	  gtk-gui/MonoDevelop.Deployment.DeployFileListWidget.cs,
	  gtk-gui/MonoDevelop.Deployment.Gui.DeployDialog.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Deployment.Gui.EditPackageDialog.cs,
	  gtk-gui/gui.stetic: Implemented new deploy file list widget.
	  Changed order of steps in the package creation wizard.
	* MonoDevelop.Deployment.Gui/DeployDialog.cs: Changed the order of some
	  steps. The first step is now selecting the package type, and the
	  second step is selecting the projects/solutions to include in the
	  package.
	* MonoDevelop.Deployment.Gui/EditPackageDialog.cs,
	  MonoDevelop.Deployment.Gui/DeployFileListWidget.cs: Added a new
	  view which shows the list of files to be deployed.
	* MonoDevelop.Deployment.Gui/EntrySelectionTree.cs: Allow selecting
	  multiple projects/solutions.

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

	New deployment add-in. Some classes have been moved from MonoDevelop.Projects.