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

ChangeLog « MonoDevelop.Core.Gui « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c372ea585c369f7c8df43dbd48a6fe2e2bdcdd37 (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
2007-12-03  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Gui.WebBrowser/IWebBrowser.cs: Add LinkClicked event,
	  identical to LocationChanging except that it's not triggered by calls to
	  Load(Url|Html).

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui.WebBrowser,
	  MonoDevelop.Core.Gui.WebBrowser/LoadingProgressChangedEventArgs.cs,
	  MonoDevelop.Core.Gui.WebBrowser/LocationChangedEventArgs.cs,
	  MonoDevelop.Core.Gui.WebBrowser/StatusMessageChangedEventArgs.cs,
	  MonoDevelop.Core.Gui.WebBrowser/IWebBrowserLoader.cs,
	  MonoDevelop.Core.Gui.WebBrowser/PageLoadedHandler.cs,
	  MonoDevelop.Core.Gui.WebBrowser/LocationChangingEventArgs.cs,
	  MonoDevelop.Core.Gui.WebBrowser/IWebBrowser.cs,
	  MonoDevelop.Core.Gui.WebBrowser/TitleChangedEventArgs.cs,
	  MonoDevelop.Core.Gui/WebBrowserService.cs, Makefile.am,
	  MonoDevelop.Core.Gui.addin.xml: Add new Web Browser extension point and
	  service.

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui.Dialogs/WizardDialog.cs,
	  MonoDevelop.Core.Gui.Dialogs/CurrentPanelPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/StatusPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/AbstractWizardPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/IWizardPanel.cs,
	  MonoDevelop.Core.Gui.Components/LocalizedObject.cs,
	  MonoDevelop.Core.Gui.Components/LocalizedPropertyAttribute.cs,
	  MonoDevelop.Core.Gui.Components/LocalizedPropertyDescriptor.cs,
	  MonoDevelop.Core.Gui/ResourceNotFoundException.cs, Makefile.am,
	  MonoDevelop.Core.Gui.ErrorHandlers,
	  MonoDevelop.Core.Gui.ErrorHandlers/CombineLoadError.cs,
	  MonoDevelop.Core.Gui.ErrorHandlers/GenericError.cs: Removed unused
	  files.
	* MonoDevelop.Core.Gui.Utils/FileIconLoader.cs,
	  MonoDevelop.Core.Gui/StockIcons.cs,
	  MonoDevelop.Core.Gui/DispatchService.cs,
	  MonoDevelop.Core.Gui/AsyncDispatchAttribute.cs,
	  MonoDevelop.Core.Gui/SyncContext.cs,
	  MonoDevelop.Core.Gui/FreeDispatchAttribute.cs,
	  MonoDevelop.Core.Gui/GuiSyncAbstractService.cs,
	  MonoDevelop.Core.Gui/GuiSyncContext.cs,
	  MonoDevelop.Core.Gui/SyncObject.cs,
	  MonoDevelop.Core.Gui/SyncContextAttribute.cs,
	  MonoDevelop.Core.Gui/GuiService.cs,
	  MonoDevelop.Core.Gui/GuiSyncObject.cs: Added missing license headers.

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

	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Log errors as well as
	  reporting them to the user.
	* Freedesktop.RecentFiles/RecentItem.cs: Use UTC for Unix timestamps.

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui/StockIcons.cs, Makefile.am,
	  icons/workspace-32.png, icons/workspace-16.png,
	  MonoDevelop.Core.Gui.addin.xml: Added workspace icons.
	* MonoDevelop.Core.Gui.Codons/DialogPanelCodon.cs: Made some extension node
	  attributes serializable.

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

	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Make file scout icons
	  smaller.

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

	* MonoDevelop.Core.Gui.Dialogs/WizardDialog.cs,
	  MonoDevelop.Core.Gui.Dialogs/AbstractWizardPanel.cs,
	  MonoDevelop.Core.Gui.Components/FileBrowser.cs,
	  MonoDevelop.Core.Gui/DispatchService.cs,
	  MonoDevelop.Core.Gui/ResourceService.cs,
	  MonoDevelop.Core.Gui.ProgressMonitoring/MessageDialogProgressMonitor.cs,
	  MonoDevelop.Core.Gui.ProgressMonitoring/BaseProgressMonitor.cs,
	  MonoDevelop.Core.Gui.ProgressMonitoring/MultiTaskDialogProgressMonitor.cs,
	  Freedesktop.RecentFiles/RecentFileStorage.cs: Track LoggingService API
	  changes.

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

	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Remove some frames.

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

	* MonoDevelop.Core.Gui.mdp, Makefile.am, icons/Icons.16x16.MiscFiles,
	  icons/Icons.16x16.TextFileIcon, icons/web-overlay-16.png,
	  MonoDevelop.Core.Gui.addin.xml: Registered menu size html file icon.
	  Updated text file icon.

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

	* MonoDevelop.Core.Gui.addin.xml: Bump MD version.

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui/StockIcons.cs, Makefile.am,
	  icons/Icons.32x32.CombineIcon, icons/Icons.16x16.NewCombineIcon.png,
	  icons/file-xml-32.png, icons/Icons.32x32.TextFileIcon,
	  icons/web-overlay-32.png, icons/Icons.32x32.EmptyProjectIcon,
	  icons/Icons.16x16.NewSolutionIcon.png, icons/file-interface-32.png,
	  icons/Icons.16x16.SolutionIcon, icons/Icons.32x32.EmptyFileIcon,
	  icons/file-struct-32.png, icons/Icons.16x16.CloseCombineIcon,
	  icons/FileIcons.XmlIcon, icons/file-enum-32.png,
	  icons/file-class-32.png, MonoDevelop.Core.Gui.addin.xml: Added
	  class/interface/enum/struct file icons. Tangoified other file icons.
	  Removed obsolete icons.

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

	* MonoDevelop.Core.Gui.mdp, Makefile.am, icons/solution-32.png,
	  icons/web-overlay-32.png, icons/project-16.png, icons/solution-16.png,
	  icons/project-gui-32.png, icons/project-32.png,
	  icons/project-console-32.png, icons/project-library-32.png,
	  MonoDevelop.Core.Gui.addin.xml: Added new tangoified icons for project
	  and solution.
	* MonoDevelop.Core.Gui.Codons/StockIconCodon.cs,
	  MonoDevelop.Core.Gui/ResourceService.cs: Allow defining a stock icon as
	  a combination of a set of icons (e.g. a base icon and an overlay icon).
	* MonoDevelop.Core.Gui/StockIcons.cs: Set the correct names for solution and
	  project icons.

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

	* MonoDevelop.Core.Gui.mdp: Updated.
	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Don't allow reordering of
	  rows.
	* MonoDevelop.Core.Gui/DispatchService.cs: Thread.ManagedThreadId is broken
	  (see bug #335579). Don't use it to check for the gui thread.

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

	* MonoDevelop.Core.Gui.mdp: Fix warning level.
	* Base.glade: Made the preferences dialog slightly larger, to make the
	  highlight style page fit with common themes like Clearlooks. Patch by
	  Michael Monreal.

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

	* MonoDevelop.Core.Gui/SyncContext.cs, MonoDevelop.Core.Gui/RecentOpen.cs:
	  Applied changes that were neccassary for to the new FileService.

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

	* MonoDevelop.Core.Gui.Components/LocalizedPropertyDescriptor.cs,
	  MonoDevelop.Core.Gui/MessageService.cs: Changed calls for the new
	  StringParser.

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

	* Freedesktop.RecentFiles/RecentFileStorage.cs: Made recent file storage
	  more robust - should fix Bug 330419 - Exception reading the recent file
	  list.

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

	* MonoDevelop.Core.Gui.mdp: Remove duplicate gtk-sharp reference.
	* MonoDevelop.Core.Gui.Dialogs/MultiTaskProgressDialog.cs,
	  gtk-gui/MonoDevelop.Core.Gui.Dialogs.MultiTaskProgressDialog.cs,
	  gtk-gui/gui.stetic: Juggle some close/cancel event handling.
	* MonoDevelop.Core.Gui/MessageService.cs: Add a method for showing custom
	  GTK dialogs types in the GUI thread.

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

	* MonoDevelop.Core.Gui.mdp, Makefile.am: Updated.
	* MonoDevelop.Core.Gui.Dialogs/MultiTaskProgressDialog.cs, gtk-gui,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Core.Gui.Dialogs.MultiTaskProgressDialog.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Core.Gui.ProgressMonitoring/MultiTaskDialogProgressMonitor.cs:
	  New IProgressMonitor that shows a GUI for multiple tasks.

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

	* icons/Icons.SharpDevelopIcon, icons/Icons.SharpDevelopIcon-22.png: New
	  logo.

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

	* MonoDevelop.Core.Gui.addin.xml: Bump MD version.

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

	* MonoDevelop.Core.Gui/IMementoCapable.cs: Fix build.

2007-09-04  Michael Hutchinson <MHutchinson@novell.com>

	* MonoDevelop.Core.Gui.Dialogs/WizardDialog.cs,
	  MonoDevelop.Core.Gui.Dialogs/CurrentPanelPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/StatusPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs,
	  MonoDevelop.Core.Gui.Components/FileBrowser.cs,
	  MonoDevelop.Core.Gui/RecentOpen.cs,
	  MonoDevelop.Core.Gui/MessageService.cs,
	  MonoDevelop.Core.Gui/ResourceService.cs: Remove some warnings.

2007-08-31  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core.Gui.Dialogs/WizardDialog.cs,
	  MonoDevelop.Core.Gui.Dialogs/CurrentPanelPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/DefaultDialogPanelDescriptor.cs,
	  MonoDevelop.Core.Gui.Dialogs/StatusPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs,
	  MonoDevelop.Core.Gui.Dialogs/IDialogPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/IWizardPanel.cs,
	  MonoDevelop.Core.Gui.Components/FileBrowser.cs,
	  MonoDevelop.Core.Gui/IMessageService.cs,
	  MonoDevelop.Core.Gui/IMementoCapable.cs,
	  MonoDevelop.Core.Gui/RecentOpen.cs,
	  MonoDevelop.Core.Gui/MessageService.cs,
	  MonoDevelop.Core.Gui/ResourceService.cs: Changes due to new property
	  system.

2007-08-21  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core.Gui/RecentOpen.cs, Freedesktop.RecentFiles/RecentItem.cs,
	  Freedesktop.RecentFiles/RecentFileStorage.cs: Fixed 82458: unable to
	  open files that have a colon in the path.

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

	* MonoDevelop.Core.Gui.mdp,
	  MonoDevelop.Core.Gui.Codons/LocalCommandItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/ItemSetCodon.cs,
	  MonoDevelop.Core.Gui.Codons/LinkItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandCategoryCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandCodon.cs,
	  MonoDevelop.Core.Gui.Codons/SeparatorItemCodon.cs,
	  MonoDevelop.Core.Gui/CommandService.cs, Makefile.am,
	  MonoDevelop.Core.Gui.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.Core.Gui.mdp, MonoDevelop.Core.Gui/ResourceService.cs,
	  Makefile.am, MonoDevelop.Core.Gui.addin.xml: Reorganized the extension
	  point hierarchy. Embedded all add-in manifests as resources.

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

	* MonoDevelop.Core.Gui.Components/FileBrowser.cs,
	  MonoDevelop.Core.Gui/GuiService.cs: Avoid using the ServiceManager for
	  classes that are not registered as services.

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

	* MonoDevelop.Core.Gui/MessageService.cs,
	  MonoDevelop.Core.Gui/GuiService.cs,
	  MonoDevelop.Core.Gui/ResourceService.cs, MonoDevelop.Core.Gui.addin.xml:
	  API cleanup. Converted core services into regular classes.

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui.Dialogs/ResourceService.cs,
	  MonoDevelop.Core.Gui/ResourceService.cs, Makefile.am: Moved
	  ResourceService to the correct location.
	* MonoDevelop.Core.Gui/DispatchService.cs: DispatchService is not a service
	  anymore.

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

	* MonoDevelop.Core.Gui.addin.xml: DispatchServices is now a static class.

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

	* MonoDevelop.Core.Gui/DispatchService.cs,
	  MonoDevelop.Core.Gui/GuiSyncContext.cs,
	  MonoDevelop.Core.Gui.ProgressMonitoring/MessageDialogProgressMonitor.cs,
	  MonoDevelop.Core.Gui.ProgressMonitoring/BaseProgressMonitor.cs:
	  Converted DispatchService to a static class.

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

	* icons/Icons.16x16.ReplaceInFiles, icons/Icons.16x16.NewFolderIcon,
	  icons/Icons.16x16.ClosedResourceFolder,
	  icons/Icons.16x16.ClosedFolderBitmap,
	  icons/Icons.16x16.OpenResourceFolder,
	  icons/Icons.16x16.ClosedReferenceFolder,
	  icons/Icons.16x16.OpenFolderBitmap, icons/Icons.16x16.FindInFiles,
	  icons/Icons.16x16.OpenReferenceFolder: Tangoified icons.

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

	* MonoDevelop.Core.Gui.Codons/CommandCategoryCodon.cs: Translate
	  category names.
	* icons/Icons.16x16.PropertiesIcon, icons/Icons.16x16.TaskListIcon: Use
	  gnome icons.

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

	* MonoDevelop.Core.Gui.mdp,
	  MonoDevelop.Core.Gui.Codons/CommandCategoryCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandCodon.cs,
	  MonoDevelop.Core.Gui/CommandService.cs, Makefile.am: Add support
	  for command categories.
	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Use the logging
	  service instead of the console.

2007-07-17  Jeffrey Stedfast  <fejj@novell.com>

	* MonoDevelop.Core.Gui.Codons/CommandCodon.cs: Use the new
	KeyBindingManager to canonicalize the shortcut string into the new
	format (in case it was in the old format).

2007-06-22  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs,
	  MonoDevelop.Core.Gui.Dialogs/IDialogPanel.cs: Tree View Options now
	  works on the IDialogPanel interface instead of the abstract class
	  AbstractOptionPanel.

2007-06-20  Mike Krüger <mkrueger@novell.com> 

	Fixed a bug (treeviewoptions asserted that all option dialog
	widgets are frames).

2007-06-19  Mike Krüger <mkrueger@novell.com> 

	* icons/Icons.16x16.ClosedFolderBitmap: overworked some of the windows
	  icons.

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

	* MonoDevelop.Core.Gui/DispatchService.cs: Fix some warnings.

2007-06-19  Mike Krüger <mkrueger@novell.com> 

	removed standalone tag from .recently-used.

2007-06-19  Mike Krüger <mkrueger@novell.com> 

	removed the BOM in .recently-used file.

2007-06-19  Mike Krüger <mkrueger@novell.com> 

	RecentItems now use the .NET classes for Uri and DateTime and hides some details of the freedesktop recent file management.

2007-06-19  Mike Krüger <mkrueger@novell.com> 

	Added file system watcher and file locking to recent file handling.

2007-06-18  Mike Krüger <mkrueger@novell.com> 

	Improved recent file management. The files are now stored only on disc. Still TODO: File System Locks (how to use the posix log from .NET) and file system watcher.

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

	* MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs: Expand root nodes by
	  default.

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

	* MonoDevelop.Core.Gui/CommandService.cs: Unregister commands from
	  unloaded add-ins. Don't reuse extension objects when creating a
	  menu, since they may have changed.

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

	* MonoDevelop.Core.Gui/MessageService.cs: Ensure Dialogs are Destroy()'ed.

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

	* MonoDevelop.Core.Gui.mdp: Reference copy fix.

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

	* MonoDevelop.Core.Gui.mdp, Makefile.am: Reference shared assemblies
	  from the correct location.

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui.Dialogs/SetupApp.cs,
	  Makefile.am, MonoDevelop.Core.Gui.addin.xml: Implemented the gsetup
	  utility using Mono.Addins.
	* MonoDevelop.Core.Gui.Codons/LocalCommandItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/ItemSetCodon.cs,
	  MonoDevelop.Core.Gui.Codons/LinkItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/StockIconCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandCodon.cs,
	  MonoDevelop.Core.Gui.Codons/DialogPanelCodon.cs,
	  MonoDevelop.Core.Gui.Codons/SeparatorItemCodon.cs: Use the
	  Mono.Addins attributes to provide extension documentation.

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

	* MonoDevelop.Core.Gui.mdp,
	  MonoDevelop.Core.Gui.Dialogs/WizardDialog.cs,
	  MonoDevelop.Core.Gui.Dialogs/CurrentPanelPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/DefaultDialogPanelDescriptor.cs,
	  MonoDevelop.Core.Gui.Dialogs/IDialogPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/IWizardPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/StatusPanel.cs,
	  MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs,
	  MonoDevelop.Core.Gui.Dialogs/ResourceService.cs,
	  MonoDevelop.Core.Gui.Codons/LocalCommandItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/ItemSetCodon.cs,
	  MonoDevelop.Core.Gui.Codons/LinkItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/StockIconCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandItemCodon.cs,
	  MonoDevelop.Core.Gui.Codons/CommandCodon.cs,
	  MonoDevelop.Core.Gui.Codons/DialogPanelCodon.cs,
	  MonoDevelop.Core.Gui.Codons/SeparatorItemCodon.cs,
	  MonoDevelop.Core.Gui/IMessageService.cs,
	  MonoDevelop.Core.Gui/StockIcons.cs,
	  MonoDevelop.Core.Gui/CommandService.cs,
	  MonoDevelop.Core.Gui/MessageService.cs,
	  MonoDevelop.Core.Gui/GuiService.cs, Makefile.am,
	  icons/plugin-32.png, icons/plugin-16.png, icons/plugin-22.png,
	  MonoDevelop.Core.Gui.addin.xml: Migration to Mono.Addins.

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

	* MonoDevelop.Core.Gui.mdp: Don't copy referenced assemblies.
	* MonoDevelop.Core.Gui/RecentOpen.cs: Purge deleted files from the
	  recent list.
	* Freedesktop.RecentFiles/RecentFiles.cs: Added method for removing old
	  entries from the recent list.

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

	* MonoDevelop.Core.Gui.addin.xml: Fix compatible version number.

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

	* MonoDevelop.Core.Gui.addin.xml: Change add-in versions to 0.13.

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

	* MonoDevelop.Core.Gui.Utils/DesktopApplication.cs: Ooops, fix build.

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

	* MonoDevelop.Core.Gui.mdp: Added missing file.
	* MonoDevelop.Core.Gui.Utils/DesktopApplication.cs: Fix warning.

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

	* Makefile.am: Updated.

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

	* MonoDevelop.Core.Gui.mdp: Updated.

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

	* MonoDevelop.Core.Gui.mdp, Makefile.am: Synchronized the MD project
	  and the Makefile
	* MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs: Allow overriding the
	  store method at dialog level.
	* MonoDevelop.Core.Gui/StockIcons.cs, icons/Icons.16x16.Information,
	  icons/Icons.16x16.SelectionArrow, icons/Icons.AboutImage,
	  icons/Icons.16x16.FindIcon, icons/Icons.16x16.OpenFileIcon,
	  icons/Icons.16x16.SubTypes, icons/Icons.16x16.NextWindowIcon,
	  icons/Icons.16x16.AboutIcon, icons/Icons.16x16.Library,
	  icons/Icons.16x16.SuperTypes, icons/Icons.32x32.ASPFileIcon,
	  icons/Icons.TipOfTheDayIcon, MonoDevelop.Core.Gui.addin.xml:
	  Removed some unused and ugly icons.

2006-02-02 David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* MonoDevelop.Core.Gui/StockIcons.cs: removed unused (SD) stock icons
	* MonoDevelop.Core.Gui.addin.xml,
	* Makefile.am: removed and added icons
	* icons/Icons.16x16.NETWORK,
	* icons/Icons.16x16.FullScreen,
	* icons/Icons.16x16.MyComputer,
	* icons/Icons.16x16.PersonalFiles,
	* icons/Icons.16x16.DRIVE,
	* icons/Icons.16x16.CopyLeftIcon,
	* icons/Icons.16x16.Desktop : removed
	* icons/view-fullscreen_22.png,
	* icons/view-fullscreen.png,
	* icons/edit-select-all.png,
	* icons/edit-select-all_22.png: added tango icons

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

	* MonoDevelop.Core.Gui.Utils/DesktopApplication.cs: Added missing id
	  field.

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

	* MonoDevelop.Core.Gui.Utils/DesktopApplication.cs: Fix warning.
	* MonoDevelop.Core.Gui/DispatchService.cs: Added fixme.
	* MonoDevelop.Core.Gui/MessageService.cs: Implemented ShowCustomDialog
	  (patch by Michael Hutchinson).

2007-01-19  Marek Sieradzki  <marek.sieradzki@gmail.com>

	* MonoDevelop.Core.Gui.Components/FileBrowser.cs,
	  MonoDevelop.Core.Gui/ResourceNotFoundException.cs,
	  MonoDevelop.Core.Gui.ErrorHandlers/CombineLoadError.cs: Removed
	  redundant String.Format ().

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

	* MonoDevelop.Core.Gui.mdp, MonoDevelop.Core.Gui/FileEventArgs.cs,
	  MonoDevelop.Core.Gui/DefaultFileService.cs,
	  MonoDevelop.Core.Gui/IFileService.cs, Makefile.am,
	  MonoDevelop.Core.Gui.addin.xml: FileService has been moved to
	  MonoDevelop.Core.

2006-12-06 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/ResourceService.cs:
	* Freedesktop.RecentFiles/RecentFiles.cs:
	Fixed a few compiler warnings.

2006-11-26 David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* icons/Icons.16x16.FullScreen: replaced by Tango icon
	
2006-11-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Gui/MessageService.cs: Added new overload to support
	  modal warning dialogs.

2006-09-19 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* .: Added svn:ignore for MonoDevelop.Core.Gui.pidb

2006-09-13 Lluis Sanchez Gual  <lluis@novell.com>

	* icons/Icons.16x16.SaveAllIcon:
	* icons/Icons.24x24.SaveAllIcon:
	* MonoDevelop.Core.Gui.addin.xml:
	* Makefile.am: Updated the save all icon and added a new
	  icon size. Icons provided by Michael Monreal.

2006-09-11 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs: Changed
	title to "MonoDevelop Preferences" to adhere to the HIG.

2006-08-21  Andrés G. Aragoneses  <knocte@gmail.com>

	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs: Fixed typo.

2006-08-10  Scott Ellington  <scott.ellington@gmail.com>

	* Freedesktop.RecentFiles/RecentFiles.cs: check for null Groups when
	clearing. (fixes bug 79038)

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

	* MonoDevelop.Core.Gui/CommandService.cs: Allow specifying an
	  initial command target when showing a context menu.
	* icons/Icons.16x16.SaveAllIcon: Updated the save all icon.

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

	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs: Remove debug code.
	* MonoDevelop.Core.Gui.Dialogs/TreeViewOptions.cs: Added method for
	  selecting a panel in the options dialog.
	* MonoDevelop.Core.Gui.addin.xml: Removed incorrect icon size for
	  the md-software-update icon.

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

	* MonoDevelop.Core.Gui.Dialogs/ProgressDialog.cs: Set the progress
	  bar to complete, when the last task ends.
	* MonoDevelop.Core.Gui.Dialogs/AddinTreeWidget.cs: Made public.
	* MonoDevelop.Core.Gui.Dialogs/ResourceService.cs: Stock icons for which
	  size is not specified are valid for all sizes.
	* MonoDevelop.Core.Gui/Makefile.am: New MD icon.
	* MonoDevelop.Core.Gui.ProgressMonitoring/MessageDialogProgressMonitor.cs:
	  Minor fix.
	* MonoDevelop.Core.Gui.addin.xml: Added new icons with different sizes
	  for the MD logo. Updated add-in and references version.

2006-06-29  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* MonoDevelop.Core.Gui/MessageService.cs: Add new GetPassword method 
	using existing GetTextResponse code.	

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

	* MonoDevelop.Core.Gui/CommandService.cs:
	* MonoDevelop.Core.Gui.Dialogs/ResourceService.cs: Use the new extension
	  listeners to read extensions.

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

	* Base.glade: Show enable/disable buttons.
	* MonoDevelop.Core.Gui.Dialogs/AddinTreeWidget.cs: Save/restore
	  the cursor position when refreshing the tree.

2006-05-30 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.mdp:
	* Makefile.am: Added DesktopApplication.cs.
	* MonoDevelop.Core.Gui.Utils/DesktopApplication.cs: Wrapper for
	  MimeApplication. Implementes some missing properties.

2006-05-25  Mark Howard <mh@tildemh.com> 

	* Base.glade: Make error message text selectable (and hence copy-able)
	
2006-05-05 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.Codons/ItemSetCodon.cs: Use the new ChildCodons
	  attribute instead of Category.
	* MonoDevelop.Core.Gui.Utils/FileIconLoader.cs: Added workaround for
	  crash in LookupSync.
	* MonoDevelop.Core.Gui.addin.xml: Added description.

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

	* MonoDevelop.Core.Gui.addin.xml: Updated versions.
	* MonoDevelop.Core.Gui.mdp: Updated.

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

	* MonoDevelop.Core.Gui.Codons/LocalCommandItemCodon.cs:
	* MonoDevelop.Core.Gui.Codons/LinkItemCodon.cs:
	* MonoDevelop.Core.Gui.Codons/StockIconCodon.cs:
	* MonoDevelop.Core.Gui.Codons/CommandItemCodon.cs:
	* MonoDevelop.Core.Gui.Codons/CommandCodon.cs:
	* MonoDevelop.Core.Gui.Codons/DialogPanelCodon.cs:
	* MonoDevelop.Core.Gui.Codons/SeparatorItemCodon.cs:
	* MonoDevelop.Core.Gui.addin.xml:
	* MonoDevelop.Core.Gui.Codons/ItemSetCodon.cs: Add documentation.

2006-04-03 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.Dialogs/ResourceService.cs: Check that
	  icon resources exist before trying to add them.

2006-03-31 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.Gui.addin.xml: Break compatibility
	  with old versions.

2006-03-30 Lluis Sanchez Gual  <lluis@novell.com>

	* Base.glade:
	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs: Added a combo
	  to select the filter to apply to the list. Now it can show all
	  packages, only packages not installed or with newer versions,
	  or only updates.

2006-03-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.Gui.mdp: Updated.
	* Makefile.am: Use an unified format. Patch by Matze Braun.
	* MonoDevelop.Core.Gui.addin.xml: Updated add-in versions.

2006-03-12  David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* Base.glade: Marking some strings not to be translated. Not include balast in pot file.

2006-03-02  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Core.Gui/MessageService.cs: Make sure that
	{ and } are escaped correctly. Fixes bug 77675.

2006-02-24  Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.Gui.Dialogs/AbstractOptionPanel.cs:
	  Catch exceptions thrown while saving options.

2006-02-19  Andrés G. Aragoneses  <knocte@gmail.com>

	* Base.glade: Improved some strings.
	* MonoDevelop.Core.Gui.Codons/CommandCodon.cs: fixed bug 
	#77516.

2006-02-16  Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.Gui/IFileService.cs:
	* MonoDevelop.Core.Gui/DefaultFileService.cs: Added some
	method for notifying file changes.

2006-02-12  Marek Sieradzki  <marek.sieradzki@gmail.com>

	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Localization fix.

2006-01-25  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* Base.glade: Corrected spellings of add-in.

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

	* MonoDevelop.Core.Gui.addin.xml:
	* Makefile.am: Added new icons.

2006-01-14  John Luke  <john.luke@gmail.com>   

	* MonoDevelop.Core.Gui.Utils/FileIconLoader.cs:
	rewrite the way we lookup the "icon_name" from Gnome
	to avoid relying on exceptions, and just always use
	"gnome-fs-directory" for directories

2006-01-10 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.Gui/CommandService.cs: Added InsertOptions
	method.
	* MonoDevelop.Core.Gui/MessageService.cs: Improve the error
	dialog. Don't show the stack trace for exceptions of type UserException.

2006-01-04  Alexandre Miguel Pedro Gomes <alexmipego@gmail.com>

	* Makefile.am, icons/uncomment.png, icons/comment.png,
	icons/visual-studio.png, MonoDevelop.Core.Gui.addin.xml: Added icons to
	Import VS Solution, comment and uncomment code.

2005-12-15  Jacob Ilsø Christensen <jacobilsoe@gmail.com> 

	* MonoDevelop.Core.Gui/MessageService.cs: Escape now closes
	message and warning dialogs. Refactored some duplicate methods.
	Cleaned up Gtk namespace usage.
	
2005-12-11  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Core.Gui.Dialogs/ManageSitesDialog.cs:
	Only enable the delete button when something is selected.

2005-11-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui/StockIcons.cs:
	* MonoDevelop.Core.Gui.addin.xml: Removed unused icon that doesn't
	exist. This may fix bug #76556.

2005-11-21  Lluis Sanchez Gual  <lluis@novell.com>

	* Base.glade: Hide the enable/disable buttons in the add-in manager,
	since this feature is not yet implemented.
	* MonoDevelop.Core.Gui.Dialogs/AddinManagerDialog.cs: ShowAll is bad.

2005-11-21  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.Gui.Utils/FileIconLoader.cs: Really fix.

2005-11-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.Utils/FileIconLoader.cs: Escape some reserved
	characters that cause a crash in gnome_icon_lookup_sync. Based on a
	patch by Dean Brettle. Fixes bug #76776. 

2005-11-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui/MessageService.cs:
	* MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs: Don't show the details
	text view if there are no details to show.
	* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Catch some access
	errors.

2005-11-10  Lluis Sanchez Gual  <lluis@novell.com>

	* Base.glade:
	* MonoDevelop.Core.Gui.Dialogs/ProgressDialog.cs: Added close
	button which is used when HideWhenDone is set to false.
	* MonoDevelop.Core.Gui.ProgressMonitoring/MessageDialogProgressMonitor.cs:
	Added option for keeping open the progress dialog when done.
	* MonoDevelop.Core.Gui/GuiSyncContext.cs: always dispatch synchronously
	if already running in the gui thread.
	
2005-11-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinManagerDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinTreeWidget.cs:
	Added support for installing addins in the home directory.
	
	* Makefile.am: 
	* MonoDevelop.Core.Gui.addin.xml: Added new icon.
	
2005-11-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui/CommandService.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs: Fix warning.

2005-10-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.ProgressMonitoring/MessageDialogProgressMonitor.cs:
	Show the error dialog even when the progress dialog is not visible.
	* MonoDevelop.Core.Gui.ProgressMonitoring/BaseProgressMonitor.cs:
	Avoid dispatching through the GUI thread some property getters and setters. 

2005-10-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.Utils/FileIconLoader.cs: Avoid potential
	crash of Gnome.Icon.LookupSync when the file does not exist.

2005-10-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.Gui.mdp: Added new files:
	
	* MonoDevelop.Core.Gui.Dialogs/NewSiteDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinManagerDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/ManageSitesDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinInfoDialog.cs: Made internal.
	
	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs: Show a
	progress dialog when updating from repository.
	
	* MonoDevelop.Core.Gui.Dialogs/ProgressDialog.cs:
	* Base.glade: Added progress dialog.
	
	* MonoDevelop.Core.Gui/GuiService.cs: Added method for
	starting the addin manager.
	* MonoDevelop.Core.Gui.ProgressMonitoring/MessageDialogProgressMonitor.cs:
	This progress monitor now displays the progress in a dialog.

2005-10-11  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.Gui/MessageService.cs: Added parameter to showError
	to display the dialog as a modal dialog.
	
	* MonoDevelop.Core.Gui.Dialogs/AddinInfoDialog.cs: 
	* MonoDevelop.Core.Gui.Dialogs/ManageSitesDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinInstallDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinManagerDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/NewSiteDialog.cs:
	* MonoDevelop.Core.Gui.Dialogs/AddinTreeWidget.cs:
	* Base.glade: Initial implementation of an add-in manager.
	
	* Makefile.am: Added new files.
	
	* MonoDevelop.Core.Gui.ProgressMonitoring/BaseProgressMonitor.cs:
	Made some methods public. Implemented BeginStepTask.
	
	* MonoDevelop.Core.Gui.addin.xml:  Fixed addin header information.
	Use "id" attribuet instead of "name" to identify addins.
	Registered some stock icons, applications and services.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.Gui.Dialogs/WizardDialog.cs:
	* MonoDevelop.Core.Gui/CommandService.cs: Use the new addin API.
	
	* MonoDevelop.Core.Gui.Dialogs/ResourceService.cs: Converted some static
	methods to instance methods, since they need a properly initialized
	service instance.
	
	* MonoDevelop.Core.Gui.addin.xml: Added addin dependencies.
	Registered ResourceService as a service.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Install the assembly in the AddIns directory.

2005-09-28  Lluis Sanchez Gual  <lluis@novell.com>

	Created new assembly. Old ChangeLog entries can be found in the
	MonoDevelop.Ide ChangeLog.