Changelog 5.3 KB

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