ChangeLog 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. 2004-01-19 Duncan Mak <[email protected]>
  2. * GraphicsPath.cs: Implemented. Still needs testing, though.
  3. Particular the PathPoints property, I ran into a P/Invoke problem,
  4. I need to first fix that before I can go on with the rest of the testing.
  5. 2004-01-13 Ravindra <[email protected]>
  6. * Matrix.cs: Made the Matrix(IntPtr) constructor internal.
  7. Because default access is private, that makes it unusable
  8. by other classes.
  9. 2004-01-11 Duncan Mak <[email protected]>
  10. * Matrix.cs (Matrix): Removed reference to GpRect/GpRectF.
  11. 2004-01-10 Ravindra <[email protected]>
  12. * All Enums: Made serializable.
  13. * GraphicsPathIterator.cs: Implements IDisposable.
  14. * GraphicsState.cs: Inherits MarshalByRefObject.
  15. 2003-12-25 Duncan Mak <[email protected]>
  16. * Matrix.cs (ToString): Cache the elements inside a local variable
  17. to avoid calling the Elements property repeatedly.
  18. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  19. * Blend.cs: fix array sizes in the constructors. Closes bug #51564.
  20. System.Web moves in mysterious ways.
  21. 2003-11-22 Duncan Mak <[email protected]>
  22. * Matrix.cs: Rewrote to use GDI+ implementation, doing all the
  23. math in unmanaged code instead of doing it in C#.
  24. 2003-11-04 Miguel de Icaza <[email protected]>
  25. * GraphicsPathIterator.cs: Do not make this protected.
  26. 2003-11-13 Andreas Nahr <[email protected]>
  27. * QualityMode.cs: Fixed typo
  28. * InterpolationMode.cs: Fixed typo
  29. * RegionData.cs: Fixed signatures, partially implemented
  30. * PathGradientBrush.cs: Fixed signatures
  31. * PathData.cs: Fixed signature, implemented
  32. * LinearGradientBrush.cs: Added missing MonoTODOs, fixed typo
  33. * GraphicsContainer.cs: Added private constructor
  34. * CustomLineCap.cs: Fixed typos, fixed inheritance, removed unneeded member
  35. 2003-11-11 Ben Maurer <[email protected]>
  36. * ColorBlend.cs (Positions): another one.
  37. 2003-11-11 Ben Maurer <[email protected]>
  38. * Blend.cs (Positions): recursion in prop.
  39. 2003-10-24 Miguel de Icaza <[email protected]>
  40. * GraphicsPath.cs: Stub some more.
  41. 2003-10-12 Alexandre Pigolkine <[email protected]>
  42. * GraphicsState.cs internal member added
  43. 2003-06-26 Alexandre Pigolkine <[email protected]>
  44. * GraphicsState.cs internal member added
  45. 2003-04-26 Alexandre Pigolkine <[email protected]>
  46. * LinearGradientBrush.cs some implementation added
  47. 2003-3-15 DennisHayes <[email protected]>
  48. * Stubbed and somewhat implmented
  49. * CustomLineCap.cs
  50. * GraphicsContainer.cs
  51. * GraphicsPath.cs
  52. * GraphicsPathIterator.cs
  53. * GraphicsState.cs
  54. * HatchBrush.cs
  55. * LinearGradientBrush.cs
  56. 2003-3-5 DennisHayes <[email protected]>
  57. * Added values for enums
  58. * Stubbed and somewhat implmented Blend, ColorBlend, CustomLineCap
  59. 2003-3-2 DennisHayes <[email protected]>
  60. * Created changelog
  61. * updated copyrights to 2002/3
  62. * changed namespace from System.Drawing, System.Drawing.Drawing2d to System.Drawing.Drawing2D
  63. * cosmetic improvments
  64. 2002-10-13 DennisHayes <[email protected]>
  65. * Changed namespace from *2d to *2D
  66. * Changed comment header from system.Drawing to System.Drawing.Drawing2D
  67. 2002-9-2 DennisHayes <[email protected]>
  68. * AdjustableArrowCap.cs
  69. * Blend.cs
  70. * ColorBlend.cs
  71. * CombineMode.cs
  72. * CompostingMode.cs
  73. * CompostingQuality.cs
  74. * CoordinateSpace.cs
  75. * CustomLineCap.cs
  76. * DashCap.cs
  77. * DashStyle.cs
  78. * FillMode.cs
  79. * FlushIntention.cs
  80. * GraphicsContainer.cs
  81. * GraphicsPathIterator.cs
  82. * GraphicsState.cs
  83. * HatchBrush.cs
  84. * HatchStyle.cs
  85. * InterpolationMode.cs
  86. * LinearGradientBrush.cs
  87. * LinearGradientMode.cs
  88. * LineCap.cs
  89. * LineJoin.cs
  90. * MatrixOrder.cs
  91. * PathData.cs
  92. * PathGradientBrush.cs
  93. * PathPointType.cs
  94. * PenAligment.cs
  95. * PenType.cs
  96. * PixelOffsetMode.cs
  97. * QualityMode.cs
  98. * RegionData.cs
  99. * SmoothingMode.cs
  100. * WarpMode.cs
  101. * WrapMode.cs
  102. * Added null classes for most/all classes, Many stubs, and some implmentation
  103. 2002-9-2 DennisHayes <[email protected]>
  104. * Matrix.cs
  105. * Added stubs, implmentation
  106. 2002-9-2 DennisHayes <[email protected]>
  107. * GraphicsPath.cs
  108. * added stub needed for system.windows.forms
  109. 2002-01-06 Ravi Pratap <[email protected]>
  110. * ChangeLog : Add.
  111. * Matrix.cs : MonoTODO everywhere.
  112. * TODOAttribute.cs : Add here too.