ChangeLog 4.8 KB

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