ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. 2005-01-10 LLuis Sanchez Gual <[email protected]>
  2. * BindingDirection.cs: New enum.
  3. 2004-12-09 Dick Porter <[email protected]>
  4. * Win32Exception.cs: Add another socket error, fix the message of
  5. some old ones.
  6. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  7. * AttributeCollection.cs: support attributes inherited from the one
  8. we want. Fixes bug #67088. Thanks to Sander Rijken.
  9. 2004-08-14 Jackson Harper <[email protected]>
  10. * Container.cs: Release all when we are supposed to release all.
  11. 2004-07-14 Atsushi Enomoto <[email protected]>
  12. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  13. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  14. * AsyncCompletedEventArgs.cs: Implemented.
  15. * AsyncCompletedEventHandler.cs: Implemented.
  16. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  17. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  18. remove it from the table.
  19. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  20. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  21. DesignOnlyAttribute.cs: fix targets for attributes.
  22. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  23. * BooleanConverter.cs: Improved ConverFrom method.
  24. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  25. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  26. This fixes bug #57655.
  27. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  28. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  29. all the attributes, not just DesignerAttribute instances. nGallery
  30. complained.
  31. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  32. * BooleanConverter.cs: GetStandardValues must return an array of
  33. booleans, not an array of strings.
  34. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  35. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  36. through GetPropertyInfo(). Take into account that a component may not
  37. be sited or not have some services.
  38. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  39. property. Other minor fixes.
  40. 2004-04-16 Joerg Rosenkranz <[email protected]>
  41. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  42. This fixes #57137.
  43. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  44. * AttributeCollection.cs: Added new internal constructor.
  45. * DesignerAttribute.cs: Fixed property TypeId.
  46. * EventDescriptorCollection.cs: Added internal constructor. Added new
  47. method Filter that removes events that do not have the specified
  48. attributes.
  49. * MemberDescriptor.cs: Minor fixes.
  50. * PropertyDescriptor.cs: Implemented some missing methods.
  51. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  52. Sort methods.
  53. * ReferenceConverter.cs: Removed some TODOs.
  54. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  55. * TypeDescriptor.cs: Implemented most of missing methods.
  56. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  57. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  58. Removed unneded TODOs.
  59. * ComponentResourceManager.cs: Implemented ApplyResources.
  60. * EventDescriptorCollection.cs: Implemented several missing methods.
  61. * LicFileLicenseProvider.cs: Implemented.
  62. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  63. the creation of the Attribute list.
  64. * TypeConverter.cs: Use null as default value for attribute array parameter.
  65. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  66. * Win32Exception.cs: added 10024 (WSAEMFILE).
  67. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  68. * AttributeCollection.cs: Don't try to create a default attribute if the
  69. attribute type does not have a default constructor. Fix by Jon Wagner.
  70. This fixes #53898.
  71. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  72. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  73. message as ERROR_FILE_NOT_FOUND.
  74. 2004-03-17 Ivan Hamilton <[email protected]>
  75. * LicenseManager.cs: Completed TODO.
  76. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  77. * Win32Exception.cs: use a switch instead of creating a hashtable when
  78. mapping from an error code to a message.
  79. 2003-11-22 Miguel de Icaza <[email protected]>
  80. * PropertyDescriptorCollection.cs (Insert): Another one.
  81. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  82. 2003-11-13 Andreas Nahr <[email protected]>
  83. * IComponent.cs: Added missing attribute
  84. 2003-11-12 Andreas Nahr <[email protected]>
  85. * ComponentResourceManager.cs: Added and partially implemented
  86. 2003-09-13 Duncan Mak <[email protected]>
  87. Patch from Jörg Rosenkranz <[email protected]>, this fixes the
  88. bugs described in bug #48351.
  89. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  90. multiple values. This is done in Enum.Parse already.
  91. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  92. types because EnumConverter does not have a default
  93. constructor. Fixed by changing the special handling for
  94. enumeration types.
  95. 2003-08-31 Jerome Laban <[email protected]>
  96. * Container.cs: A site without name cannot be duplicate.
  97. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  98. * Win32Exception.cs: added message for 10054.
  99. 2003-07-17 Andreas Nahr <[email protected]>
  100. * CategoryAttribute.cs: Added localization support
  101. 2003-07-17 Andreas Nahr <[email protected]>
  102. * IComponent.cs:
  103. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  104. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  105. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  106. have a TypeConverter. Fixes bug #46397.
  107. 2003-07-14 Jerome Laban <[email protected]>
  108. * IComponent.cs: Removed duplicate Designer attribute.
  109. 2003-07-13 Andreas Nahr <[email protected]>
  110. * Component.cs: Implementation added
  111. * Container.cs: Implementation added
  112. * MarshalByValueComponent.cs: Implementation added
  113. * ReferenceConverter.cs: Small addition for future implementation
  114. 2003-07-10 Andreas Nahr <[email protected]>
  115. * TypeConverter.cs: Implemented missing methods
  116. * TypeDescriptor.cs: Redirections added
  117. 2003-07-05 Andreas Nahr <[email protected]>
  118. * EnumConverter.cs: Fixed signature
  119. * EventDescriptorCollection.cs: Fixed signature
  120. * InheritanceLevel.cs: Fixed enum values; little restyling
  121. * License.cs: Removed undefined member
  122. * LicenseManager.cs: Fixed signature, little implementation added
  123. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  124. * WarningException.cs: Removed wrong attribute
  125. * Win32Exception.cs: Added missing attribute
  126. 2003-07-02 Andreas Nahr <[email protected]>
  127. * AttributeCollection.cs: Fixed public members
  128. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  129. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  130. * CategoryAttribute.cs: Changed public fields to properties
  131. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  132. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  133. * PropertyDescriptorCollection.cs: Fixed public members
  134. * ReferenceConverter.cs: Implementation added
  135. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  136. * TypeDescriptor.cs: Implementations added
  137. 2003-07-02 Andreas Nahr <[email protected]>
  138. * ISite.cs: Fixed attributes, fixed header
  139. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  140. * WarningException.cs: Fixed attributes, formatting corrections
  141. * AttributeCollection.cs: Fixed attributes
  142. * DesignerSerializationVisibility.cs: Fixed attributes
  143. * TypeConverter.cs: Fixed attributes
  144. * MarshalByValueComponent.cs:
  145. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  146. * DescriptionAttribute.cs:
  147. * DesignerCategoryAttribute.cs:
  148. * DoubleConverter.cs:
  149. * EditorBrowsableAttribute.cs:
  150. * EventDescriptorCollection.cs:
  151. * PropertyChangedEventHandler.cs:
  152. * RefreshEventArgs.cs:
  153. * StringConverter.cs:
  154. * DefaultValueAttribute.cs: Reformatted following style guidelines
  155. * License.cs: Removed unused MonoTODOs
  156. * LicenseContext.cs: Implemented
  157. * LicenseException.cs: Implemented
  158. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  159. * LicenseUsageMode.cs: Fixed enum
  160. * RefreshProperties.cs: Fixed enum
  161. * LicFileLicenseProvider.cs: Implementation added
  162. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  163. * ExpandableObjectConverter.cs: Implemented
  164. * ComponentConverter.cs: Implemented
  165. 2003-06-23 Andreas Nahr <[email protected]>
  166. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  167. better Hashcode generation
  168. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  169. better Hashcode generation
  170. * LicenseContext.cs: Added and implemented missing property
  171. * ListBindableAttribute.cs: Simplified implementation, removed
  172. unneccessary data.
  173. * ReadOnlyAttribute.cs: Better Hashcode generation
  174. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  175. Equals check.
  176. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  177. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  178. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  179. * MarshalByValueComponent.cs:
  180. * IContainer.cs:
  181. * IComponent.cs: Added missing attribute(s)
  182. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  183. * AmbientValueAttribute.cs:
  184. * ArrayConverter.cs:
  185. * BaseNumberConverter.cs:
  186. * BindableAttribute.cs:
  187. * BooleanConverter.cs:
  188. * BrowsableAttribute.cs:
  189. * ByteConverter.cs:
  190. * CategoryAttribute.cs:
  191. * CharConverter.cs:
  192. * CollectionConverter.cs:
  193. * Component.cs:
  194. * ComponentCollection.cs:
  195. * ComponentEditor.cs:
  196. * Container.cs:
  197. * CultureInfoConverter.cs:
  198. * DateTimeConverter.cs:
  199. * DecimalConverter.cs:
  200. * DefaultEventAttribute.cs:
  201. * DefaultPropertyAttribute.cs:
  202. * DefaultValueAttribute.cs:
  203. * DescriptionAttribute.cs:
  204. * DesignOnlyAttribute.cs:
  205. * DesignTimeVisibleAttribute.cs:
  206. * DesignerCategoryAttribute.cs:
  207. * DesignerSerializationVisibilityAttribute.cs:
  208. * DoubleConverter.cs:
  209. * EditorBrowsableAttribute.cs:
  210. * EventDescriptor.cs:
  211. * EventDescriptorCollection.cs:
  212. * ExpandableObjectConverter.cs:
  213. * ExtenderProvidedPropertyAttribute.cs: New file.
  214. * GuidConverter.cs:
  215. * IComNativeDescriptorHandler.cs:
  216. * IComponent.cs:
  217. * ImmutableObjectAttribute.cs:
  218. * InheritanceAttribute.cs:
  219. * InheritanceLevel.cs:
  220. * InstallerTypeAttribute.cs:
  221. * Int16Converter.cs:
  222. * Int32Converter.cs:
  223. * Int64Converter.cs:
  224. * InvalidEnumArgumentException.cs:
  225. * LicenseProviderAttribute.cs:
  226. * LocalizableAttribute.cs:
  227. * MarshalByValueComponent.cs:
  228. * MemberDescriptor.cs:
  229. * MergablePropertyAttribute.cs:
  230. * NotifyParentPropertyAttribute.cs:
  231. * ParenthesizePropertyNameAttribute.cs:
  232. * PropertyDescriptor.cs:
  233. * PropertyDescriptorCollection.cs:
  234. * PropertyTabAttribute.cs:
  235. * ProvidePropertyAttribute.cs:
  236. * RecommendedAsConfigurableAttribute.cs:
  237. * RefreshPropertiesAttribute.cs:
  238. * SByteConverter.cs:
  239. * SingleConverter.cs:
  240. * TimeSpanConverter.cs:
  241. * ToolboxItemFilterAttribute.cs:
  242. * TypeConverter.cs:
  243. * TypeConverterAttribute.cs:
  244. * TypeDescriptor.cs:
  245. * TypeListConverter.cs:
  246. * UInt16Converter.cs:
  247. * UInt32Converter.cs:
  248. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  249. ([email protected]).
  250. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  251. * IExtenderProvider.cs: mono-stylized.
  252. * IComNativeDescriptorHandler.cs:
  253. * SyntaxCheck.cs: new files from Andreas Nahr.
  254. 2003-03-20 Dick Porter <[email protected]>
  255. * Win32Exception.cs: Made the fallback error more useful by
  256. reporting the error number
  257. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  258. * MarshalByValueComponent.cs: removed a monotodo.
  259. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  260. * Win32Exception.cs: added error code 2.
  261. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  262. * Win32Exception.cs: implemented GetObjectData ().
  263. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  264. * RunInstallerAttribute.cs: New file.
  265. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  266. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  267. 2003-02-05 Alan Tam <[email protected]>
  268. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  269. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  270. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  271. to bug #37380, mcs complained about this when compiling System.Data.
  272. 2003-01-08 Dick Porter <[email protected]>
  273. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  274. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  275. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  276. implements it. It's done for GetProperties and should be done for the
  277. rest of methods present in ICustomTypeDescriptor.
  278. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  279. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  280. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  281. * DefaultValueAttribute.cs: the attribute applies to All.
  282. 2002-11-19 Duncan Mak <[email protected]>
  283. * DesignerAttribute.cs:
  284. * EditorAttribute: Style changes. Gonzalo committed the build
  285. fixes before I did.
  286. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  287. * DesignerAttribute.cs:
  288. * EditorAttribute.cs: fixed the build.
  289. 2002-11-19 Alejandro Sánchez Acosta <[email protected]>
  290. * EditorAttribute: implemented.
  291. * DesignerAttribute: implemented.
  292. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  293. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  294. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  295. * ListBindableAttribute.cs: implemented.
  296. 2002-11-02 Duncan Mak <[email protected]>
  297. * InvalidEnumArgumentException.cs: Added.
  298. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  299. * EventHandlerList.cs: fixed bug #29535.
  300. 2002-10-03 Dick Porter <[email protected]>
  301. * Win32Exception.cs: Added ETIMEDOUT
  302. 2002-09-30 Dick Porter <[email protected]>
  303. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  304. 2002-09-17 Asier Llano Palacios <[email protected]>
  305. * CancelEventArgs.cs
  306. * WarningException.cs
  307. * CancelEventHandler.cs
  308. * PropertyChangedEventHandler.cs
  309. * IExtenderProvider.cs: Implemented
  310. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  311. * Component.cs:
  312. * ComponentCollection.cs:
  313. * Container.cs:
  314. * MarshalByValueComponent.cs: IDisposable fixes.
  315. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  316. * BindableSupport.cs:
  317. * Component.cs:
  318. * EventDescriptorCollection.cs:
  319. * ITypeDescriptorContext.cs:
  320. * TypeConverter.cs:
  321. * TypeDescriptor.cs: class status based fixes.
  322. * StringConverter.cs: implemented a couple of methods.
  323. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  324. * EnumConverter.cs: new file.
  325. * TypeConverter.cs: implemented a few simple methods.
  326. * TypeDescriptor.cs:
  327. (GetConverter): initial support for converters of well-known types.
  328. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  329. * DerivedPropertyDescriptor.cs: New file. Internal class.
  330. * PropertyDescriptorCollection.cs: almost fully implemented.
  331. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  332. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  333. * Component.cs: don't die if Disposed is null.
  334. 2002-07-22 Tim Coleman <[email protected]>
  335. * RecommendedAsConfigurableAttribute.cs: new file added
  336. for System.Web.Services build
  337. 2002-07-22 Tim Coleman <[email protected]>
  338. * ExpandableObjectConverter.cs: Fix error with constructor
  339. 2002-07-22 Tim Coleman <[email protected]>
  340. * TypeConverter.cs: Fixed bad stubb function
  341. GetConvertToException ()
  342. 2002-07-22 Tim Coleman <[email protected]>
  343. * ComponentCollection.cs: Added reference to
  344. ReadOnlyCollectionBase to make sure
  345. that we inherit the appropriate methods.
  346. Not sure why the Dispose() method is
  347. required, but left for now.
  348. 2002-07-22 Tim Coleman <[email protected]>
  349. * TypeConverter.cs: Added new stubbs
  350. * BindableAttribute.cs: Added
  351. * BindableSupport.cs: Added
  352. * NotifyParentPropertyAttribute.cs: Added
  353. * ExpandableObjectConverter.cs: Added
  354. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  355. * MemberDescriptor.cs: implemented Attributes and Category.
  356. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  357. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  358. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  359. fixed value for Yes.
  360. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  361. * TypeConverter.cs: added SimplePropertyDescriptor class.
  362. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  363. * ToolboxItemAttribute.cs: New file.
  364. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  365. * DefaultEventAttribute.cs: new file.
  366. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  367. * AttributeCollection.cs: fixlet.
  368. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  369. * AttributeCollection.cs: finished implementation.
  370. * TypeDescriptor.cs: implemented GetAttributes (object).
  371. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  372. * AttributeCollection.cs: initialize member variables.
  373. * RefreshEventArgs.cs: implemented.
  374. * RefreshEventHandler.cs: New file.
  375. * TypeDescriptor.cs: fully stubbed out the remaining method.
  376. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  377. * DefaultPropertyAttribute.cs: New file.
  378. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  379. * TypeConverter.cs: flushed local changes.
  380. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  381. * StringConverter.cs: stubbed out.
  382. * TypeConverter.cs: stubbed the rest out and added some implementation.
  383. Five errors left when compiling System.Web in linux.
  384. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  385. * TypeConverterAttribute.cs: attribute used by
  386. TypeDescriptor.Getconverter ().
  387. * TypeDescriptor.cs: implemented GetConverter in the right way.
  388. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  389. * TypeConverter.cs:
  390. * ITypeDescriptorContext.cs:
  391. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  392. which uses ColorConverter.
  393. 2002-05-12 Daniel Morgan <[email protected]>
  394. * IComponent.cs
  395. * ISite.cs: added using System
  396. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  397. to // TODOs and added using System. The throwing of the exceptions prevented
  398. System.Data from running.
  399. 2002-05-10 Rodrigo Moya <[email protected]>
  400. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  401. not this[index], which issues an 'ambigous call' error on Linux.
  402. 2002-05-07 Rodrigo Moya <[email protected]>
  403. * EventDescriptor.cs: added missing constructors.
  404. * EventDescriptorCollection.cs: fixed interface methods implementation
  405. * IDataErrorInfo.cs:
  406. * IEditableObject.cs: new interfaces.
  407. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  408. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  409. it compile.
  410. 2002-05-03 Rodrigo Moya <[email protected]>
  411. * AttributeCollection.cs:
  412. * EventDescriptor.cs:
  413. * EventDescriptorCollection.cs:
  414. * ICustomTypeDescriptor.cs: new files.
  415. 2002-05-01 Duncan Mak <[email protected]>
  416. * ListChangedType.cs:
  417. * ListChangedEventHandler.cs:
  418. * ListChangedEventArgs.cs: Added to fix build.
  419. 2002-05-01 Miguel de Icaza <[email protected]>
  420. * PropertyDescriptorCollection.cs: Added the IList explicit
  421. implementation methods.
  422. lots of bug fixes to get the build to compile again.
  423. 2002-05-01 Duncan Mak <[email protected]>
  424. * ListSortDirection.cs: EnumChecked.
  425. 2002-05-01 Rodrigo Moya <[email protected]>
  426. * ListSortDirection.cs: new enumeration. Please, somebody run
  427. EnumCheck on it, as I don't have a windows machine.
  428. * PropertyDescriptorCollection.cs: new class.
  429. * ITypedList.cs:
  430. * IBindingList.cs: new interfaces.
  431. 2002-04-28 Duncan Mak <[email protected]>
  432. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  433. implementation. Please use EnumCheck!
  434. 2002-04-28 Rodrigo Moya <[email protected]>
  435. * CollectionChangeAction.cs: new enumeration.
  436. * CategoryAttribute.cs: moved the 'return' keyword to the
  437. end of the method, to avoid compilation errors on Linux for
  438. all CategoryAttribute properties.
  439. 2002-04-28 Rodrigo Moya <[email protected]>
  440. * IListSource.cs:
  441. * ISupportInitialize.cs:
  442. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  443. compilation.
  444. * PropertyChangedEventArgs.cs:
  445. * CollectionChangeEventHandler.cs:
  446. * CollectionChangeEventArgs.cs: implemented.
  447. 2002-04-28 Lawrence Pit <[email protected]>
  448. * Added error code 11001 to Win32Exception, used by Dns.c
  449. 2002-04-04 Dick Porter <[email protected]>
  450. * ISynchronizeInvoke.cs: Needed by Process
  451. 2002-01-23 Dick Porter <[email protected]>
  452. * Win32Exception.cs: implement, with support for looking up
  453. runtime errors.
  454. 2002-01-17 Miguel de Icaza <[email protected]>
  455. * Win32Exception.cs: Add.
  456. 2002-01-05 Ravi Pratap <[email protected]>
  457. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  458. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  459. 2001-10-27 Miguel de Icaza <[email protected]>
  460. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  461. * DesignerSerializationVisibility.cs: New enumeration.
  462. * LocalizableAttribute.cs: Implemented.
  463. * BrowsableAttribute.cs: Implemented.
  464. * DesignOnlyAttribute.cs: Implemented.
  465. * DescriptionAttribute.cs: Implement.
  466. * MemberDescriptor.cs: Implemented.
  467. * CategoryAttribute.cs: implemented.
  468. 2001-08-21 Nick Drochak <[email protected]>
  469. * Component.cs: Eliminated compile errors by removing redundant fields and
  470. using the ISite member instead. Also raised the Disposed event, but not
  471. sure if it's correct now. Look for FIXME in the comments.
  472. 2001-08-02 Miguel de Icaza <[email protected]>
  473. * EventHandlerList.cs: New file.
  474. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  475. ComponentCollection.cs, ISite.cs: New classes