2
0

Changelog 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. 2007-09-27 Atsushi Enomoto <[email protected]>
  2. * ITypeDiscoveryService.cs : new.
  3. * DesignerTransactionCloseEventArgs.cs : added [Obsolete].
  4. * DesignerVerb.cs : added Description. ToString() contains " : ".
  5. * StandardCommands.cs : added DocumentOutline and ViewCode.
  6. * HelpKeywordAttribute.cs : implemented .ctor(Type).
  7. * ComponentChangedEventHandler.cs, ComponentRenameEventHandler.cs,
  8. ActiveDesignerEventHandler.cs, HelpKeywordType.cs,
  9. DesignerEventHandler.cs, ComponentEventHandler.cs,
  10. DesignerTransactionCloseEventHandler.cs, HelpContextType.cs
  11. ComponentChangingEventHandler.cs : [Serializable] is extra in 2.0.
  12. * ServiceContainer.cs : some members became virtual in 2.0.
  13. Removed finalizer. Added DefaultServices.
  14. * DesignerOptionService.cs : it is abstract. Added attributes.
  15. * CheckoutException.cs : added more 2.0 constructors.
  16. * MenuCommand.cs : added Properties property.
  17. * DesignerTransaction.cs : Fixed .ctor() (public->protected)
  18. 2007-08-29 Ivan N. Zlatev <[email protected]>
  19. * DefaultSerializationProviderAttribute.cs: implemented.
  20. * ComponentSerializationService.cs: implemented.
  21. * MemberRelationship.cs: implemented.
  22. * SerializationStore.cs: implemented.
  23. 2007-06-06 Ivan N. Zlatev <[email protected]>
  24. * IComponentInitialization.cs: New 2.0 interface
  25. 2007-05-30 Sebastien Pouliot <[email protected]>
  26. * IComponentDiscoveryService.cs: New 2.0 interface (required by SDD)
  27. 2007-05-15 Adar Wesley <[email protected]>
  28. * MenuCommand.cs: added missing method overload Invoke
  29. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  30. * ViewTechnology.cs: update for 2.0. Patch by Ivan N. Zlatev.
  31. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  32. * SelectionTypes.cs: updates for 2.0. Patch by Ivan N. Zlatev.
  33. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  34. * ServiceContainer.cs: update for 2.0. Patch by Ivan N. Zlatev.
  35. 2006-05-31 Gert Driesen <[email protected]>
  36. * DesignerCollection.cs: Added explicit interface implemenation for
  37. ICollection.Count and IEnumerable.GetEnumerator. Fixes corcompare
  38. warnings.
  39. 2005-10-04 Sebastien Pouliot <[email protected]>
  40. * DesignerTransaction.cs: Added a call to GC.SuppressFinalize in
  41. Dispose.
  42. 2004-03-17 Ivan Hamilton <[email protected]>
  43. * RuntimeLicenseContext.cs: Implemented.
  44. 2003-08-31 Alexandre Pigolkine <[email protected]>
  45. * ServiceContainer.cs: implemented
  46. 2003-07-07 Andreas Nahr <[email protected]>
  47. * DesignerTransaction.cs: Fixed signature
  48. 2003-07-05 Andreas Nahr <[email protected]>
  49. * CheckoutException.cs: Removed unneeded member
  50. * DesignerTransaction.cs: Added destruction code, corrected interface signature
  51. 2003-06-12 Andreas Nahr <[email protected]>
  52. * ActiveDesignerEventArgs.cs: Fixed property access
  53. * CheckoutException.cs
  54. * CommandID.cs
  55. * ComponentChangedEventArgs.cs
  56. * ComponentChangingEventArgs.cs
  57. * ComponentEventArgs.cs
  58. * ComponentRenameEventArgs.cs
  59. * DesignerEventArgs.cs: Implemented
  60. * StandardCommands.cs
  61. * StandardToolWindows.cs: Implemented and removed unneeded MonoTODOs
  62. * DesignerCollection.cs
  63. * DesignerVerbCollection.cs: Collections implemented
  64. * DesignerTransaction.cs
  65. * DesignerVerb.cs: Implemented
  66. * MenuCommand.cs: Most members implemented
  67. * IDesignerHost.cs: Completed interface
  68. * IInheritanceService.cs: Hopefully fixed interface
  69. * ITypeResolutionService.cs: Completed interface
  70. * ISelectionService.cs: Completed interface
  71. * DesigntimeLicenseContext.cs: Added member, implemented
  72. * DesigntimeLicenseContextSerializer.cs: Added private constructor, removed unneeded members
  73. * SelectionTypes.cs
  74. * HelpContextType.cs
  75. * HelpKeywordType.cs: Hopefully fixed enums
  76. * ServiceContainer.cs: implementation added
  77. 2002-12-05 Alejandro Sánchez Acosta <[email protected]>
  78. * ActiveDesignerEventArgs.cs,
  79. ActiveDesignerEventHandler.cs: Added
  80. 2002-11-30 Alejandro Sánchez Acosta <[email protected]>
  81. * System.ComponentModel.Design/CommandID.cs
  82. System.ComponentModel.Design/DesignerTransactionCloseEventArgs.cs
  83. System.ComponentModel.Design/DesignerTransactionCloseEventHandler.cs
  84. System.ComponentModel.Design/DesignerTransaction.cs
  85. System.ComponentModel.Design/DesignerVerbCollection.cs
  86. System.ComponentModel.Design/DesignerVerb.cs
  87. System.ComponentModel.Design/IDesigner.cs
  88. System.ComponentModel.Design/IDesignerHost.cs
  89. System.ComponentModel.Design/IResourceService.cs
  90. System.ComponentModel.Design/ISelectionService.cs
  91. System.ComponentModel.Design/IServiceContainer.cs
  92. System.ComponentModel.Design/MenuCommand.cs
  93. System.ComponentModel.Design/ServiceCreatorCallback.cs : Added.