ChangeLog 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091
  1. 2006-05-22 Atsushi Enomoto <[email protected]>
  2. * TypeDescriptor.cs : GetProperties() does not return indexers.
  3. 2006-05-11 Atsushi Enomoto <[email protected]>
  4. * ReflectionPropertyDescriptor.cs,
  5. DerivedPropertyDescriptor.cs : invoke OnValueChanged() when
  6. the value was successfully changed. It is needed to have
  7. MWF PropertyGrid change properties successfully.
  8. 2006-05-08 Atsushi Enomoto <[email protected]>
  9. * AsyncOperation.cs : SynchronizationContext.OperationStarted()
  10. should not be called more than once. So move it from Post() to
  11. .ctor(). Thanks again to cl.
  12. 2006-05-08 Atsushi Enomoto <[email protected]>
  13. * AsyncOperation.cs : call OperationStared() at Post(). Call
  14. OperationCompleted() at the finalizer. Thanks to cl.
  15. 2006-05-08 Atsushi Enomoto <[email protected]>
  16. * SettingsBindableAttribute.cs : new file. Bug #78333 is fixed.
  17. 2006-04-27 Miguel de Icaza <[email protected]>
  18. * Component.cs: The converter for the Component is
  19. ComponentConverter, which makes the GetPropertiesSupported return
  20. true. So JChamber's patch should work now.
  21. 2006-04-26 Miguel de Icaza <[email protected]>
  22. * TypeDescriptor.cs (Info.GetProperties, TypeInfo.GetProperties):
  23. Use the more specific GetProperties call so we do not return
  24. static properties, should fix that part of the PropertyGrid bug
  25. #78192.
  26. Code formatting police hit again.
  27. * ReflectionPropertyDescriptor.cs (CanResetvalue): Do not
  28. dereference a null value, avoids crash in property grid.
  29. Code formatting police.
  30. 2006-04-25 Miguel de Icaza <[email protected]>
  31. * TypeConverter.cs (ConvertFrom): Do not crash if we are passed a
  32. null value.
  33. 2006-04-25 Atsushi Enomoto <[email protected]>
  34. * BaseNumberConverter.cs : (ConvertTo) regardless of InnerType,
  35. it converts the argument value to InnerType using supplied format.
  36. (It might be not limited to NET_2_0 but it's too cosmetic to dig
  37. into the problem. At least this is for run-test-ondotnet fixes.)
  38. 2006-04-17 Atsushi Enomoto <[email protected]>
  39. * BackgroundWorker.cs, RunWorkerCompletedEventArgs.cs :
  40. cosmetic attribute fixes.
  41. 2006-04-17 Atsushi Enomoto <[email protected]>
  42. * AsyncOperation.cs,
  43. AsyncOperationManager.cs
  44. BackgroundWorker.cs
  45. DoWorkEventArgs.cs
  46. DoWorkEventHandler.cs
  47. RunWorkerCompletedEventArgs.cs
  48. RunWorkerCompletedEventHandler.cs :
  49. Initial implementation of AsyncOperation and BackgroundWorker.
  50. (However I think it does not work as expected - it depends on
  51. SynchronizationContext.Post() and I doubt it works fine - the
  52. callback should run synchronously while it does not look so.)
  53. 2006-03-30 Atsushi Enomoto <[email protected]>
  54. * AsyncCompletedEventArgs.cs : constructor did not initialize fields.
  55. 2006-03-28 Atsushi Enomoto <[email protected]>
  56. * ProgressChangedEventHandler.cs ProgressChangedEventArgs.cs :
  57. added 2.0 types.
  58. 2006-02-26 Pedro Martinez Julia <[email protected]>
  59. * HandledEventHandler.cs: Resolving a "Replaced" SVN flag.
  60. 2006-02-23 Andrew Skiba <[email protected]>
  61. * TypeDescriptor.cs: performance improvement for GetAttributes,
  62. GetProperties and GetEvents. See the standalone test for the use case.
  63. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  64. * Container.cs: patch by Brian Crowell that fixes GetService().
  65. 2006-01-22 Chris Toshok <[email protected]>
  66. * DesignerSerializationVisibilityAttribute.cs: in the 2.0 case,
  67. this attribute is valid on fields and events as well.
  68. 2005-11-19 Zoltan Varga <[email protected]>
  69. * TypeDescriptor.cs: Small changes to make this more compliant with
  70. MSDN docs and actual MS behaviour.
  71. 2005-11-07 Pedro Martinez Julia <[email protected]>
  72. * IBindingListView.cs Initial implementation
  73. * HandledEventArgs.cs Initial implementation
  74. * HandledEventHandler.cs Initial implementation
  75. * ListSortDescription.cs: Initial implementation
  76. * ListSortDescriptionCollection.cs: Initial implementation
  77. 2005-10-31 Dick Porter <[email protected]>
  78. * Win32Exception.cs: Add another error code.
  79. 2005-09-20 Chris Toshok <[email protected]>
  80. * INotifyPropertyChanged.cs: new interface.
  81. 2005-09-19 Gert Driesen <[email protected]>
  82. * TypeDescriptor.cs: Remove usage of removed internal
  83. PropertyDescriptorCollection ctor. Return read-only collection.
  84. * PropertyDescriptorCollection.cs: Removed internal ctor taking
  85. ArrayList. Add ctor for making read-only collection. Added
  86. read-only checks. Implemented IsReadOnly and IsFixedSize. Empty now
  87. returns read-only collection to match MS.NET.
  88. 2005-09-12 Gert Driesen <[email protected]>
  89. * TypeConverter.cs: Only return browsable properties in GetProperties.
  90. 2005-08-28 Gert Driesen <[email protected]>
  91. * DateTimeConverter.cs: ConvertTo must return zero-length string
  92. for DateTime.MinValue. Use CultureInfo.GetFormat to obtain
  93. DateTimeFormatInfo to match MS.NET.
  94. 2005-08-27 Gonzalo Paniagua Javier <[email protected]>
  95. * TypeDescriptor.cs: remove double lock in DefaultConverter.
  96. 2005-08-26 Gert Driesen <[email protected]>
  97. * BaseNumberConverter.cs: Use CultureInfo.GetFormat to obtain
  98. NumberFormatInfo to match MS.NET. Added ConvertToString abstract
  99. method for conversion to string.
  100. * ByteConverter.cs: Implemented ConvertToString.
  101. * DecimalConverter.cs: Implemented ConvertToString.
  102. * DoubleConverter.cs: Implemented ConvertToString.
  103. * Int16Converter.cs: Implemented ConvertToString.
  104. * Int32Converter.cs: Implemented ConvertToString.
  105. * Int64Converter.cs: Implemented ConvertToString.
  106. * SByteConverter.cs: Implemented ConvertToString.
  107. * SingleConverter.cs: Implemented ConvertToString.
  108. * UInt16Converter.cs: Implemented ConvertToString.
  109. * UInt32Converter.cs: Implemented ConvertToString.
  110. * UInt64Converter.cs: Implemented ConvertToString.
  111. 2005-08-19 Gert Driesen <[email protected]>
  112. * SingleConverter.cs: Implement conversion from string to match MS.NET.
  113. Set eol-style to native.
  114. * TypeConverter.cs: Always support conversion from InstanceDescriptor.
  115. Set eol-style to native.
  116. * UInt16Converter.cs: Implement conversion from string to match MS.NET.
  117. Added support for converting string containing hex prefix. Set
  118. eol-style to native.
  119. * SByteConverter.cs: Implement conversion from string to match MS.NET.
  120. Added support for converting string containing hex prefix. Set
  121. eol-style to native.
  122. * Int16Converter.cs: Implement conversion from string to match MS.NET.
  123. Added support for converting string containing hex prefix. Set
  124. eol-style to native.
  125. * UInt64Converter.cs: Implement conversion from string to match MS.NET.
  126. Added support for converting string containing hex prefix. Set
  127. eol-style to native.
  128. * DecimalConverter.cs: Implement conversion from string to match MS.NET.
  129. Set eol-style to native.
  130. * Int64Converter.cs: Implement conversion from string to match MS.NET.
  131. Added support for converting string containing hex prefix. Set
  132. eol-style to native.
  133. * UInt32Converter.cs: Implement conversion from string to match MS.NET.
  134. Added support for converting string containing hex prefix. Set
  135. eol-style to native.
  136. * Int32Converter.cs: Implement conversion from string to match MS.NET.
  137. Added support for converting string containing hex prefix. Set
  138. eol-style to native.
  139. * DoubleConverter.cs: Implement conversion from string to match MS.NET.
  140. Set eol-style to native.
  141. * BaseNumberConverter.cs: Support conversion from string containing
  142. hex prefixes. Set eol-style to native.
  143. * ByteConverter.cs: Implement conversion from string to match MS.NET.
  144. Added support for converting string containing hex prefix. Set
  145. eol-style to native.
  146. 2005-08-18 Gert Driesen <[email protected]>
  147. * EditorBrowsableState.cs: Changed line ending from CRLF to LF to
  148. match other sources. Set eol-style to native.
  149. * ExtenderProvidedPropertyAttribute.cs: Changed line ending from CRLF
  150. to LF to match other sources. Set eol-style to native.
  151. * RefreshEventHandler.cs: Changed line ending from CRLF to LF to match
  152. other sources. Set eol-style to native.
  153. * TypeDescriptor.cs: Changed line ending from CRLF to LF to match
  154. other sources. Set eol-style to native.
  155. 2005-08-16 Gert Driesen <[email protected]>
  156. * BaseNumberConverter.cs: In ConvertFrom, wrap all exceptions that
  157. are thrown while converting from string in an Exception.
  158. 2005-08-16 Gert Driesen <[email protected]>
  159. * ToolboxItemAttribute.cs: Fixed GetHashCode to correspond with MS.NET.
  160. Fixed initialization order. Throw ArgumentException if item type
  161. cannot be loaded.
  162. 2005-08-09 Michael Hutchinson <[email protected]>
  163. * ToolboxItemAttribute.cs: Fixed typo
  164. 2005-08-09 Gert Driesen <[email protected]>
  165. * IComponent.cs: Fixed Designer attribute to match MS.NET.
  166. * DesignerAttribute.cs: DesignerBaseTypeName defaults to fullname of
  167. IDesigner to match MS.NET.
  168. 2005-08-07 Michael Hutchinson <[email protected]>
  169. Patch from Michael Hutchinson to make the aspnet editor work.
  170. * ReflectionPropertyDescriptor.cs: Create transactions and raise
  171. component change events for all IComponents, not just base
  172. implementation 'Component' derivatives.
  173. * MemberDescriptor.cs: Make members 'Browsable' by default, as per
  174. MS spec.
  175. * PropertyDescriptor.cs: Changed default
  176. DesignerSerializationVisibility value to Visible rather than
  177. Hidden, as per MS spec.
  178. 2005-07-21 Gonzalo Paniagua Javier <[email protected]>
  179. * TypeDescriptor.cs: (GetProperties) throw exception if 'component' is
  180. null.
  181. 2005-06-30 Sebastien Pouliot <[email protected]>
  182. * Win32Exception.cs: Added some declarative security (permission from
  183. corlib) as an initial test (outside corlib). Added new constructors
  184. for NET_2_0.
  185. 2005-06-27 LLuis Sanchez Gual <[email protected]>
  186. * CultureInfoConverter.cs: Correctly look for verbose name of
  187. the culture being converted.
  188. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  189. * ToolboxItemAttribute.cs: fix the fix that was fixed before.
  190. 2005-06-08 Zoltan Varga <[email protected]>
  191. * ToolboxItemAttribute.cs: Revert last change as it breaks the build.
  192. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  193. * ToolboxItemAttribute.cs: fix default type name.
  194. 2005-06-04 Gert Driesen <[email protected]>
  195. * Win32Exception.cs: improve error message for error 10047.
  196. 2005-06-04 Gert Driesen <[email protected]>
  197. * TypeDescriptor.cs: in .NET 2.0, GetComponentName returns null if
  198. object is not an IComponent or has no Site.
  199. In .NET 2.0, GetDefaultEvent does not fallback to first defined event
  200. if the default event is filtered out. GetDefaultProperty did not
  201. take filtering into account. Fixes bug #75152.
  202. 2005-05-31 Gonzalo Paniagua Javier <[email protected]>
  203. * Win32Exception.cs: add 10049 WSAEADDRNOTAVAIL. Fixes bug #75106.
  204. 2005-05-15 Andreas Nahr <[email protected]>
  205. * IComponent.cs: Fix attributes
  206. 2005-04-28 Gonzalo Paniagua Javier <[email protected]>
  207. * TypeDescriptor.cs: implemented GetEditor. Patch by Jonathan Chambers.
  208. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  209. * DefaultValueAttribute.cs: fixed the .ctor that takes a type and a
  210. string. Previous implementation caused *lots* of exceptions being thrown
  211. when processing WebControl types.
  212. 2005-04-22 LLuis Sanchez Gual <[email protected]>
  213. * AttributeCollection.cs: When checking if the list contains an
  214. attribute, always return true if that attribute is the default
  215. attribute for that kind of attributes.
  216. 2005-04-13 LLuis Sanchez Gual <[email protected]>
  217. * TypeDescriptor.cs: When creating a converter, use a constructor that
  218. takes a Type parameter if exists.
  219. * PropertyDescriptor.cs: In the Converter property, check for a
  220. TypeConverterAttribute in the property.
  221. 2005-03-02 Jackson Harper <[email protected]>
  222. * ReflectionEventDescriptor.cs: Bind handlers to the actual event so that
  223. the delegates get invoked when the methods are.
  224. 2005-03-02 Jackson Harper <[email protected]>
  225. * EventDescriptorCollection.cs: Handle null in the constructor properly.
  226. 2005-02-12 Geoff Norton <[email protected]>
  227. * CharConverter.cs: Implement the ability to convert from "".
  228. 2005-02-10 Geoff Norton <[email protected]>
  229. * CultureInfoConverter.cs: Implement converting from the
  230. string "(default)" that MS will put in .resx files.
  231. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  232. * BindableAttribute.cs: Implemented 2.0 api.
  233. 2005-02-05 Gonzalo Paniagua Javier <[email protected]>
  234. * TypeDescriptor.cs: fixed bug #71601. GetConverter should handle
  235. TypeConverter derived classes that take a Type argument.
  236. 2005-01-27 LLuis Sanchez Gual <[email protected]>
  237. * DateTimeConverter.cs, CultureInfoConverter.cs, DecimalConverter.cs,
  238. TimeSpanConverter.cs, GuidConverter.cs, EnumConverter.cs:
  239. Implemented support for InstanceDescriptor.
  240. 2005-01-25 LLuis Sanchez Gual <[email protected]>
  241. * Win32Exception.cs: Set the correct name for the serialized
  242. NativeErrorCode. This fixes bug #71572. Fix by Aleksandar Dezelin.
  243. 2005-01-24 Joerg Rosenkranz <[email protected]>
  244. * TypeDescriptor.cs: Changed handling of interfaces and objects in
  245. GetConverter to reflect the behaviour of .NET. This fixes bug #71444.
  246. 2005-01-19 Jonathan Pryor <[email protected]>
  247. * TypeDescriptor.cs: Fix Info.GetDefaultEvent() so that it filters events
  248. properly. This matches .NET 1.1 and fixes a test case.
  249. 2005-01-19 Jonathan Pryor <[email protected]>
  250. * TypeDescriptor.cs: Fix GetComponentName() so that it returns the type
  251. name if no Site is present. This matches .NET 1.1 and fixes a test case.
  252. 2005-01-12 Gonzalo Paniagua Javier <[email protected]>
  253. * BaseNumberConverter.cs: when the culture we get is null, set it to the
  254. default. Fixes bug #67033. Thanks to Sander Rijken.
  255. 2005-01-10 LLuis Sanchez Gual <[email protected]>
  256. * BindingDirection.cs: New enum.
  257. 2004-12-09 Dick Porter <[email protected]>
  258. * Win32Exception.cs: Add another socket error, fix the message of
  259. some old ones.
  260. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  261. * AttributeCollection.cs: support attributes inherited from the one
  262. we want. Fixes bug #67088. Thanks to Sander Rijken.
  263. 2004-08-14 Jackson Harper <[email protected]>
  264. * Container.cs: Release all when we are supposed to release all.
  265. 2004-07-14 Atsushi Enomoto <[email protected]>
  266. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  267. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  268. * AsyncCompletedEventArgs.cs: Implemented.
  269. * AsyncCompletedEventHandler.cs: Implemented.
  270. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  271. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  272. remove it from the table.
  273. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  274. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  275. DesignOnlyAttribute.cs: fix targets for attributes.
  276. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  277. * BooleanConverter.cs: Improved ConverFrom method.
  278. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  279. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  280. This fixes bug #57655.
  281. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  282. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  283. all the attributes, not just DesignerAttribute instances. nGallery
  284. complained.
  285. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  286. * BooleanConverter.cs: GetStandardValues must return an array of
  287. booleans, not an array of strings.
  288. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  289. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  290. through GetPropertyInfo(). Take into account that a component may not
  291. be sited or not have some services.
  292. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  293. property. Other minor fixes.
  294. 2004-04-16 Joerg Rosenkranz <[email protected]>
  295. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  296. This fixes #57137.
  297. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  298. * AttributeCollection.cs: Added new internal constructor.
  299. * DesignerAttribute.cs: Fixed property TypeId.
  300. * EventDescriptorCollection.cs: Added internal constructor. Added new
  301. method Filter that removes events that do not have the specified
  302. attributes.
  303. * MemberDescriptor.cs: Minor fixes.
  304. * PropertyDescriptor.cs: Implemented some missing methods.
  305. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  306. Sort methods.
  307. * ReferenceConverter.cs: Removed some TODOs.
  308. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  309. * TypeDescriptor.cs: Implemented most of missing methods.
  310. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  311. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  312. Removed unneded TODOs.
  313. * ComponentResourceManager.cs: Implemented ApplyResources.
  314. * EventDescriptorCollection.cs: Implemented several missing methods.
  315. * LicFileLicenseProvider.cs: Implemented.
  316. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  317. the creation of the Attribute list.
  318. * TypeConverter.cs: Use null as default value for attribute array parameter.
  319. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  320. * Win32Exception.cs: added 10024 (WSAEMFILE).
  321. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  322. * AttributeCollection.cs: Don't try to create a default attribute if the
  323. attribute type does not have a default constructor. Fix by Jon Wagner.
  324. This fixes #53898.
  325. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  326. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  327. message as ERROR_FILE_NOT_FOUND.
  328. 2004-03-17 Ivan Hamilton <[email protected]>
  329. * LicenseManager.cs: Completed TODO.
  330. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  331. * Win32Exception.cs: use a switch instead of creating a hashtable when
  332. mapping from an error code to a message.
  333. 2003-11-22 Miguel de Icaza <[email protected]>
  334. * PropertyDescriptorCollection.cs (Insert): Another one.
  335. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  336. 2003-11-13 Andreas Nahr <[email protected]>
  337. * IComponent.cs: Added missing attribute
  338. 2003-11-12 Andreas Nahr <[email protected]>
  339. * ComponentResourceManager.cs: Added and partially implemented
  340. 2003-09-13 Duncan Mak <[email protected]>
  341. Patch from Jrg Rosenkranz <[email protected]>, this fixes the
  342. bugs described in bug #48351.
  343. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  344. multiple values. This is done in Enum.Parse already.
  345. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  346. types because EnumConverter does not have a default
  347. constructor. Fixed by changing the special handling for
  348. enumeration types.
  349. 2003-08-31 Jerome Laban <[email protected]>
  350. * Container.cs: A site without name cannot be duplicate.
  351. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  352. * Win32Exception.cs: added message for 10054.
  353. 2003-07-17 Andreas Nahr <[email protected]>
  354. * CategoryAttribute.cs: Added localization support
  355. 2003-07-17 Andreas Nahr <[email protected]>
  356. * IComponent.cs:
  357. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  358. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  359. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  360. have a TypeConverter. Fixes bug #46397.
  361. 2003-07-14 Jerome Laban <[email protected]>
  362. * IComponent.cs: Removed duplicate Designer attribute.
  363. 2003-07-13 Andreas Nahr <[email protected]>
  364. * Component.cs: Implementation added
  365. * Container.cs: Implementation added
  366. * MarshalByValueComponent.cs: Implementation added
  367. * ReferenceConverter.cs: Small addition for future implementation
  368. 2003-07-10 Andreas Nahr <[email protected]>
  369. * TypeConverter.cs: Implemented missing methods
  370. * TypeDescriptor.cs: Redirections added
  371. 2003-07-05 Andreas Nahr <[email protected]>
  372. * EnumConverter.cs: Fixed signature
  373. * EventDescriptorCollection.cs: Fixed signature
  374. * InheritanceLevel.cs: Fixed enum values; little restyling
  375. * License.cs: Removed undefined member
  376. * LicenseManager.cs: Fixed signature, little implementation added
  377. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  378. * WarningException.cs: Removed wrong attribute
  379. * Win32Exception.cs: Added missing attribute
  380. 2003-07-02 Andreas Nahr <[email protected]>
  381. * AttributeCollection.cs: Fixed public members
  382. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  383. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  384. * CategoryAttribute.cs: Changed public fields to properties
  385. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  386. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  387. * PropertyDescriptorCollection.cs: Fixed public members
  388. * ReferenceConverter.cs: Implementation added
  389. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  390. * TypeDescriptor.cs: Implementations added
  391. 2003-07-02 Andreas Nahr <[email protected]>
  392. * ISite.cs: Fixed attributes, fixed header
  393. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  394. * WarningException.cs: Fixed attributes, formatting corrections
  395. * AttributeCollection.cs: Fixed attributes
  396. * DesignerSerializationVisibility.cs: Fixed attributes
  397. * TypeConverter.cs: Fixed attributes
  398. * MarshalByValueComponent.cs:
  399. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  400. * DescriptionAttribute.cs:
  401. * DesignerCategoryAttribute.cs:
  402. * DoubleConverter.cs:
  403. * EditorBrowsableAttribute.cs:
  404. * EventDescriptorCollection.cs:
  405. * PropertyChangedEventHandler.cs:
  406. * RefreshEventArgs.cs:
  407. * StringConverter.cs:
  408. * DefaultValueAttribute.cs: Reformatted following style guidelines
  409. * License.cs: Removed unused MonoTODOs
  410. * LicenseContext.cs: Implemented
  411. * LicenseException.cs: Implemented
  412. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  413. * LicenseUsageMode.cs: Fixed enum
  414. * RefreshProperties.cs: Fixed enum
  415. * LicFileLicenseProvider.cs: Implementation added
  416. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  417. * ExpandableObjectConverter.cs: Implemented
  418. * ComponentConverter.cs: Implemented
  419. 2003-06-23 Andreas Nahr <[email protected]>
  420. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  421. better Hashcode generation
  422. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  423. better Hashcode generation
  424. * LicenseContext.cs: Added and implemented missing property
  425. * ListBindableAttribute.cs: Simplified implementation, removed
  426. unneccessary data.
  427. * ReadOnlyAttribute.cs: Better Hashcode generation
  428. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  429. Equals check.
  430. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  431. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  432. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  433. * MarshalByValueComponent.cs:
  434. * IContainer.cs:
  435. * IComponent.cs: Added missing attribute(s)
  436. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  437. * AmbientValueAttribute.cs:
  438. * ArrayConverter.cs:
  439. * BaseNumberConverter.cs:
  440. * BindableAttribute.cs:
  441. * BooleanConverter.cs:
  442. * BrowsableAttribute.cs:
  443. * ByteConverter.cs:
  444. * CategoryAttribute.cs:
  445. * CharConverter.cs:
  446. * CollectionConverter.cs:
  447. * Component.cs:
  448. * ComponentCollection.cs:
  449. * ComponentEditor.cs:
  450. * Container.cs:
  451. * CultureInfoConverter.cs:
  452. * DateTimeConverter.cs:
  453. * DecimalConverter.cs:
  454. * DefaultEventAttribute.cs:
  455. * DefaultPropertyAttribute.cs:
  456. * DefaultValueAttribute.cs:
  457. * DescriptionAttribute.cs:
  458. * DesignOnlyAttribute.cs:
  459. * DesignTimeVisibleAttribute.cs:
  460. * DesignerCategoryAttribute.cs:
  461. * DesignerSerializationVisibilityAttribute.cs:
  462. * DoubleConverter.cs:
  463. * EditorBrowsableAttribute.cs:
  464. * EventDescriptor.cs:
  465. * EventDescriptorCollection.cs:
  466. * ExpandableObjectConverter.cs:
  467. * ExtenderProvidedPropertyAttribute.cs: New file.
  468. * GuidConverter.cs:
  469. * IComNativeDescriptorHandler.cs:
  470. * IComponent.cs:
  471. * ImmutableObjectAttribute.cs:
  472. * InheritanceAttribute.cs:
  473. * InheritanceLevel.cs:
  474. * InstallerTypeAttribute.cs:
  475. * Int16Converter.cs:
  476. * Int32Converter.cs:
  477. * Int64Converter.cs:
  478. * InvalidEnumArgumentException.cs:
  479. * LicenseProviderAttribute.cs:
  480. * LocalizableAttribute.cs:
  481. * MarshalByValueComponent.cs:
  482. * MemberDescriptor.cs:
  483. * MergablePropertyAttribute.cs:
  484. * NotifyParentPropertyAttribute.cs:
  485. * ParenthesizePropertyNameAttribute.cs:
  486. * PropertyDescriptor.cs:
  487. * PropertyDescriptorCollection.cs:
  488. * PropertyTabAttribute.cs:
  489. * ProvidePropertyAttribute.cs:
  490. * RecommendedAsConfigurableAttribute.cs:
  491. * RefreshPropertiesAttribute.cs:
  492. * SByteConverter.cs:
  493. * SingleConverter.cs:
  494. * TimeSpanConverter.cs:
  495. * ToolboxItemFilterAttribute.cs:
  496. * TypeConverter.cs:
  497. * TypeConverterAttribute.cs:
  498. * TypeDescriptor.cs:
  499. * TypeListConverter.cs:
  500. * UInt16Converter.cs:
  501. * UInt32Converter.cs:
  502. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  503. ([email protected]).
  504. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  505. * IExtenderProvider.cs: mono-stylized.
  506. * IComNativeDescriptorHandler.cs:
  507. * SyntaxCheck.cs: new files from Andreas Nahr.
  508. 2003-03-20 Dick Porter <[email protected]>
  509. * Win32Exception.cs: Made the fallback error more useful by
  510. reporting the error number
  511. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  512. * MarshalByValueComponent.cs: removed a monotodo.
  513. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  514. * Win32Exception.cs: added error code 2.
  515. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  516. * Win32Exception.cs: implemented GetObjectData ().
  517. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  518. * RunInstallerAttribute.cs: New file.
  519. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  520. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  521. 2003-02-05 Alan Tam <[email protected]>
  522. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  523. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  524. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  525. to bug #37380, mcs complained about this when compiling System.Data.
  526. 2003-01-08 Dick Porter <[email protected]>
  527. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  528. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  529. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  530. implements it. It's done for GetProperties and should be done for the
  531. rest of methods present in ICustomTypeDescriptor.
  532. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  533. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  534. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  535. * DefaultValueAttribute.cs: the attribute applies to All.
  536. 2002-11-19 Duncan Mak <[email protected]>
  537. * DesignerAttribute.cs:
  538. * EditorAttribute: Style changes. Gonzalo committed the build
  539. fixes before I did.
  540. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  541. * DesignerAttribute.cs:
  542. * EditorAttribute.cs: fixed the build.
  543. 2002-11-19 Alejandro Snchez Acosta <[email protected]>
  544. * EditorAttribute: implemented.
  545. * DesignerAttribute: implemented.
  546. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  547. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  548. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  549. * ListBindableAttribute.cs: implemented.
  550. 2002-11-02 Duncan Mak <[email protected]>
  551. * InvalidEnumArgumentException.cs: Added.
  552. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  553. * EventHandlerList.cs: fixed bug #29535.
  554. 2002-10-03 Dick Porter <[email protected]>
  555. * Win32Exception.cs: Added ETIMEDOUT
  556. 2002-09-30 Dick Porter <[email protected]>
  557. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  558. 2002-09-17 Asier Llano Palacios <[email protected]>
  559. * CancelEventArgs.cs
  560. * WarningException.cs
  561. * CancelEventHandler.cs
  562. * PropertyChangedEventHandler.cs
  563. * IExtenderProvider.cs: Implemented
  564. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  565. * Component.cs:
  566. * ComponentCollection.cs:
  567. * Container.cs:
  568. * MarshalByValueComponent.cs: IDisposable fixes.
  569. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  570. * BindableSupport.cs:
  571. * Component.cs:
  572. * EventDescriptorCollection.cs:
  573. * ITypeDescriptorContext.cs:
  574. * TypeConverter.cs:
  575. * TypeDescriptor.cs: class status based fixes.
  576. * StringConverter.cs: implemented a couple of methods.
  577. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  578. * EnumConverter.cs: new file.
  579. * TypeConverter.cs: implemented a few simple methods.
  580. * TypeDescriptor.cs:
  581. (GetConverter): initial support for converters of well-known types.
  582. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  583. * DerivedPropertyDescriptor.cs: New file. Internal class.
  584. * PropertyDescriptorCollection.cs: almost fully implemented.
  585. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  586. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  587. * Component.cs: don't die if Disposed is null.
  588. 2002-07-22 Tim Coleman <[email protected]>
  589. * RecommendedAsConfigurableAttribute.cs: new file added
  590. for System.Web.Services build
  591. 2002-07-22 Tim Coleman <[email protected]>
  592. * ExpandableObjectConverter.cs: Fix error with constructor
  593. 2002-07-22 Tim Coleman <[email protected]>
  594. * TypeConverter.cs: Fixed bad stubb function
  595. GetConvertToException ()
  596. 2002-07-22 Tim Coleman <[email protected]>
  597. * ComponentCollection.cs: Added reference to
  598. ReadOnlyCollectionBase to make sure
  599. that we inherit the appropriate methods.
  600. Not sure why the Dispose() method is
  601. required, but left for now.
  602. 2002-07-22 Tim Coleman <[email protected]>
  603. * TypeConverter.cs: Added new stubbs
  604. * BindableAttribute.cs: Added
  605. * BindableSupport.cs: Added
  606. * NotifyParentPropertyAttribute.cs: Added
  607. * ExpandableObjectConverter.cs: Added
  608. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  609. * MemberDescriptor.cs: implemented Attributes and Category.
  610. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  611. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  612. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  613. fixed value for Yes.
  614. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  615. * TypeConverter.cs: added SimplePropertyDescriptor class.
  616. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  617. * ToolboxItemAttribute.cs: New file.
  618. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  619. * DefaultEventAttribute.cs: new file.
  620. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  621. * AttributeCollection.cs: fixlet.
  622. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  623. * AttributeCollection.cs: finished implementation.
  624. * TypeDescriptor.cs: implemented GetAttributes (object).
  625. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  626. * AttributeCollection.cs: initialize member variables.
  627. * RefreshEventArgs.cs: implemented.
  628. * RefreshEventHandler.cs: New file.
  629. * TypeDescriptor.cs: fully stubbed out the remaining method.
  630. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  631. * DefaultPropertyAttribute.cs: New file.
  632. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  633. * TypeConverter.cs: flushed local changes.
  634. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  635. * StringConverter.cs: stubbed out.
  636. * TypeConverter.cs: stubbed the rest out and added some implementation.
  637. Five errors left when compiling System.Web in linux.
  638. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  639. * TypeConverterAttribute.cs: attribute used by
  640. TypeDescriptor.Getconverter ().
  641. * TypeDescriptor.cs: implemented GetConverter in the right way.
  642. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  643. * TypeConverter.cs:
  644. * ITypeDescriptorContext.cs:
  645. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  646. which uses ColorConverter.
  647. 2002-05-12 Daniel Morgan <[email protected]>
  648. * IComponent.cs
  649. * ISite.cs: added using System
  650. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  651. to // TODOs and added using System. The throwing of the exceptions prevented
  652. System.Data from running.
  653. 2002-05-10 Rodrigo Moya <[email protected]>
  654. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  655. not this[index], which issues an 'ambigous call' error on Linux.
  656. 2002-05-07 Rodrigo Moya <[email protected]>
  657. * EventDescriptor.cs: added missing constructors.
  658. * EventDescriptorCollection.cs: fixed interface methods implementation
  659. * IDataErrorInfo.cs:
  660. * IEditableObject.cs: new interfaces.
  661. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  662. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  663. it compile.
  664. 2002-05-03 Rodrigo Moya <[email protected]>
  665. * AttributeCollection.cs:
  666. * EventDescriptor.cs:
  667. * EventDescriptorCollection.cs:
  668. * ICustomTypeDescriptor.cs: new files.
  669. 2002-05-01 Duncan Mak <[email protected]>
  670. * ListChangedType.cs:
  671. * ListChangedEventHandler.cs:
  672. * ListChangedEventArgs.cs: Added to fix build.
  673. 2002-05-01 Miguel de Icaza <[email protected]>
  674. * PropertyDescriptorCollection.cs: Added the IList explicit
  675. implementation methods.
  676. lots of bug fixes to get the build to compile again.
  677. 2002-05-01 Duncan Mak <[email protected]>
  678. * ListSortDirection.cs: EnumChecked.
  679. 2002-05-01 Rodrigo Moya <[email protected]>
  680. * ListSortDirection.cs: new enumeration. Please, somebody run
  681. EnumCheck on it, as I don't have a windows machine.
  682. * PropertyDescriptorCollection.cs: new class.
  683. * ITypedList.cs:
  684. * IBindingList.cs: new interfaces.
  685. 2002-04-28 Duncan Mak <[email protected]>
  686. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  687. implementation. Please use EnumCheck!
  688. 2002-04-28 Rodrigo Moya <[email protected]>
  689. * CollectionChangeAction.cs: new enumeration.
  690. * CategoryAttribute.cs: moved the 'return' keyword to the
  691. end of the method, to avoid compilation errors on Linux for
  692. all CategoryAttribute properties.
  693. 2002-04-28 Rodrigo Moya <[email protected]>
  694. * IListSource.cs:
  695. * ISupportInitialize.cs:
  696. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  697. compilation.
  698. * PropertyChangedEventArgs.cs:
  699. * CollectionChangeEventHandler.cs:
  700. * CollectionChangeEventArgs.cs: implemented.
  701. 2002-04-28 Lawrence Pit <[email protected]>
  702. * Added error code 11001 to Win32Exception, used by Dns.c
  703. 2002-04-04 Dick Porter <[email protected]>
  704. * ISynchronizeInvoke.cs: Needed by Process
  705. 2002-01-23 Dick Porter <[email protected]>
  706. * Win32Exception.cs: implement, with support for looking up
  707. runtime errors.
  708. 2002-01-17 Miguel de Icaza <[email protected]>
  709. * Win32Exception.cs: Add.
  710. 2002-01-05 Ravi Pratap <[email protected]>
  711. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  712. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  713. 2001-10-27 Miguel de Icaza <[email protected]>
  714. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  715. * DesignerSerializationVisibility.cs: New enumeration.
  716. * LocalizableAttribute.cs: Implemented.
  717. * BrowsableAttribute.cs: Implemented.
  718. * DesignOnlyAttribute.cs: Implemented.
  719. * DescriptionAttribute.cs: Implement.
  720. * MemberDescriptor.cs: Implemented.
  721. * CategoryAttribute.cs: implemented.
  722. 2001-08-21 Nick Drochak <[email protected]>
  723. * Component.cs: Eliminated compile errors by removing redundant fields and
  724. using the ISite member instead. Also raised the Disposed event, but not
  725. sure if it's correct now. Look for FIXME in the comments.
  726. 2001-08-02 Miguel de Icaza <[email protected]>
  727. * EventHandlerList.cs: New file.
  728. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  729. ComponentCollection.cs, ISite.cs: New classes