ChangeLog 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. 2008-02-25 Ivan N. Zlatev <[email protected]>
  2. * DateTimeEditor.cs: Set the calendar to the currently edited
  3. date. Patch by Andy Hume. Code is contributed under
  4. MIT/X11 license.
  5. [Fixes #362749]
  6. 2008-02-16 Ivan N. Zlatev <[email protected]>
  7. * CollectionEditor.cs: Handle null collection.
  8. [Part of fix for bugs #360666 and #358332]
  9. 2008-02-12 Ivan N. Zlatev <[email protected]>
  10. * DateTimeEditor.cs: Set edit value only if the user sets it
  11. in the editor.
  12. [Fixes #359159]
  13. 2008-02-05 Ivan N. Zlatev <[email protected]>
  14. * MutilineStringEditor.cs: Make BorderStyle, Width and Height
  15. sensible.
  16. [Fixes #356530]
  17. 2008-01-22 Ivan N. Zlatev <[email protected]>
  18. * MutilineStringEditor.cs: Fix EditValue to return the new
  19. value not the old one.
  20. [Fixes #354991]
  21. 2008-01-04 Ivan N. Zlatev <[email protected]>
  22. * UndoEngine.cs: implemented.
  23. 2008-01-04 Ivan N. Zlatev <[email protected]>
  24. * DesignerHost.cs: Fix lastTransaction to be set properly.
  25. Handle current != raiser transaction commit case.
  26. 2008-01-04 Ivan N. Zlatev <[email protected]>
  27. * SelectionService.cs: Remove the component from the current
  28. selection if it gets removed from the surface.
  29. 2007-12-24 Ivan N. Zlatev <[email protected]>
  30. * DesignerHost.cs: Report Errors.
  31. 2007-10-24 Ivan N. Zlatev <[email protected]>
  32. * DesignSurface.cs:
  33. - Fix a redundancy.
  34. - Dispose the loader if available.
  35. * DesignerHost.cs: serviceContainer can be null after disposing.
  36. 2007-09-28 Atsushi Enomoto <[email protected]>
  37. * ByteViewer.cs : last one mile to finish 2.0 API (metadata wise).
  38. 2007-09-28 Atsushi Enomoto <[email protected]>
  39. * ExceptionCollection.cs, IComponentDesignerDebugService.cs,
  40. IComponentDesignerStateService.cs,
  41. MenuCommandsChangedEventArgs.cs,
  42. MenuCommandsChangedEventHandler.cs,
  43. MenuCommandsChangedType.cs : more 2.0 impl.
  44. * MenuCommandService.cs, UndoEngine.cs : more 2.0 stubs.
  45. * DisplayMode.cs, InheritanceService.cs,
  46. LocalizationExtenderProvider.cs, ObjectSelectorEditor.cs:
  47. cosmetic 2.0 API fixes.
  48. 2007-09-28 Atsushi Enomoto <[email protected]>
  49. * DesignerActionUIStateChangeEventArgs.cs,
  50. DesignerActionUIStateChangeEventHandler.cs,
  51. DesignerActionUIStateChangeType.cs : more 2.0 impl.
  52. * DesignerActionUIService.cs,
  53. DesignerCommandSet.cs : more 2.0 stubs.
  54. 2007-09-28 Atsushi Enomoto <[email protected]>
  55. * ComponentActionsType.cs : fixed order.
  56. 2007-09-28 Atsushi Enomoto <[email protected]>
  57. * DesignerActionService.cs : new stub.
  58. * ComponentActionsType.cs,
  59. DesignerActionListsChangedType.cs,
  60. DesignerActionListsChangedEventArgs.cs,
  61. DesignerActionListsChangedEventHandler.cs : new implementations.
  62. * DesignerActionListCollection.cs : [ComVisible].
  63. * DesignerActionItem.cs,
  64. DesignerActionMethodItem.cs,
  65. DesignerActionPropertyItem.cs,
  66. DesignerActionTextItem.cs : fixed protected .ctor() and made
  67. base fields private. Properties is implemented.
  68. 2007-09-15 Ivan N. Zlatev <[email protected]>
  69. * DesignSurface.cs: Binary compatibility fixes.
  70. * ComponentDesigner.cs: Binary compatibility fixes.
  71. * EventBindingService.cs: Binary compatibility fixes.
  72. * DesignSurfaceCollection.cs: Binary compatibility fixes.
  73. 2007-08-29 Ivan N. Zlatev <[email protected]>
  74. * DesignSurfaceManager.cs: implemented.
  75. * DesignerEventService.cs: implemented.
  76. * ComponentDesigner.cs: implemented.
  77. * ActiveDesignSurfaceChangedEventHandler.cs: implemented.
  78. * LoadedEventHandler.cs: implemented.
  79. * DesignSurfaceCollection.cs: implemented.
  80. * DesignerHost.cs: implemented.
  81. * ExtenderService.cs: implemented.
  82. * DesignModeSite.cs: implemented.
  83. * SelectionService.cs: implemented.
  84. * DesignSurfaceServiceContainer.cs: implemented.
  85. * DesignerActionListCollection.cs: implemented.
  86. * ActiveDesignSurfaceChangedEventArgs.cs: implemented.
  87. * LoadedEventArgs.cs: implemented.
  88. * TypeDescriptorFilterService.cs: implemented.
  89. * ReferenceService.cs: implemented.
  90. * DesignSurface.cs: implemented.
  91. * DesignSurfaceEventHandler.cs: implemented.
  92. * DesignModeNestedContainer.cs: implemented.
  93. * EventBindingService.cs: implemented.
  94. * DesignSurfaceEventArgs.cs: implemented.
  95. 2007-08-27 Ivan N. Zlatev <[email protected]>
  96. * CollectionEditor.cs:
  97. - Fix CreateCollectionItemType to deal with "Item" overloads.
  98. - Implement Create/DestroyInstance to check for the
  99. IDesignerHost service and use that.
  100. - Check if SetItems produces a new object(will happen for arrays)
  101. and update EditValue.
  102. 2007-07-12 Rolf Bjarne Kvinge <[email protected]>
  103. * CollectionEditor.cs: Implement CreateInstance for 1.1 profile (patch
  104. by Andreas Nahr).
  105. 2007-07-10 Rolf Bjarne Kvinge <[email protected]>
  106. * ArrayEditor.cs, MultilineStringEditor.cs, CollectionEditor.cs,
  107. DateTimeEditor.cs: Implemented (patch by Andreas Nahr).
  108. 2006-11-30 Marek Habersack <[email protected]>
  109. * ComponentDesigner.cs: Add a missing 'verbs' variable and set the
  110. correct return value for Contains.
  111. 2006-11-29 Miguel de Icaza <[email protected]>
  112. * ComponentDesigner.cs: Remove a few exceptions being thrown from
  113. a few popular calls. This will just make code that is
  114. automatically generated to run, it will not actually provide any
  115. real designer functionality.
  116. 2005-10-04 Sebastien Pouliot <[email protected]>
  117. * ComponentDesigner.cs: Added a call to GC.SuppressFinalize in Dispose
  118. method (even if we throw an NotImplementedException afterward). This
  119. will remove warnings from gendarme.
  120. 2004-06-13 Gert Driesen <[email protected]>
  121. * DisplayMode.cs: changed enum field values to match MS.NET
  122. 2004-06-11 Gert Driesen <[email protected]>
  123. * ArrayEditor.cs: removed extra finalizer
  124. * BinaryEditor.cs: stubbed
  125. * ByteViewer.cs: removed extra finalizer, added missing method
  126. * CollectionEditor.cs: removed extra finalizer
  127. * DateTimeEditor.cs: stubbed
  128. * InheritanceService.cs: removedd extra finalizer
  129. * LocalizationExtenderProvider.cs: added missing attributes,
  130. removed extra finalizer
  131. * ObjectSelectorEditor.cs: stubbed
  132. 2004-05-16 Gert Driesen ([email protected])
  133. * ByteViewer.cs: removed Site property, added GetBytes sub,
  134. added missing attributes
  135. * LocalizationExtenderProvider.cs: added missing attributes
  136. 2003-03-31 Alan Tam <[email protected]
  137. * CollectionEditor.cs: Fixed compilation errors.
  138. * ComponentDesigner.cs: Fixed compilation errors.