ChangeLog 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. 2002-08-19 Dick Porter <[email protected]>
  2. * ResourceWriter.cs: Implemented all methods
  3. * ResourceReader.cs: Cope with our ResourceSet class name, as well
  4. as theirs
  5. 2002-08-18 Dick Porter <[email protected]>
  6. * ResourceReader.cs: Finished basic implementation. Some
  7. optimisation in conjunction with ResourceSet still possible though
  8. 2002-08-14 Dick Porter <[email protected]>
  9. * ResourceSet.cs: Throw the correct exceptions
  10. * ResourceManager.cs: Implemented all unfinished methods
  11. 2002-03-12 Duncan Mak <[email protected]>
  12. * MissingManifestResourceException.cs: This should inherit from
  13. SystemException, not Exception.
  14. 2002-01-26 Nick Drochak <[email protected]>
  15. * ResourceReader.cs: Finsished reading resource files with just strings
  16. in them. Need to figure out other types, and also resources with
  17. multiple types in the same file.
  18. 2002-01-24 Nick Drochak <[email protected]>
  19. * ResourceReader.cs: Implemented constructors. Started on the
  20. GetEnumerator() method. Not done yet, but comitting for
  21. 'disaster recovery' purposes.
  22. 2002-01-19 Duncan Mak <[email protected]>
  23. * *.cs: Fixed indentation. There was a stupid bug in my .emacs file.
  24. 2002-1-17 Duncan Mak <duncan@[email protected]>
  25. * ResourceSet.cs: Implemented GetObject (string, bool) and GetString
  26. (string, bool). ResourceSet has no more MonoTODOs! Also added in the
  27. Serializable attribute.
  28. * *.cs: convert to Miguel's brace style.
  29. 2002-01-17 Duncan Mak <[email protected]>
  30. * ResourceManager.cs: Fixed GetNeutralResourcesLanguage () and added
  31. new attributes documented in 1.0 SDK.
  32. 2002-01-17 Duncan Mak <[email protected]>
  33. * ResourceWriter.cs: Added MonoTODO decorations.
  34. * SatelliteContractVersionAttribute.cs: added new attributes in 1.0 SDK.
  35. * NeutralResoucesLanguageAttribute.cs: added new attributes in 1.0 SDK
  36. 2002-01-16 Duncan Mak <[email protected]>
  37. * ResourceReader.cs: Fixed some typos.
  38. * ResourceManager.cs: After reading the tutorial from the SDK,
  39. finished all the ResourceManager constructors and removed those
  40. MonoTODO tags.
  41. Removed MonoTODO from GetNeutralResourcesLanguage (Assembly)
  42. because Miguel just implemented the whole class, including the
  43. constructor that I needed (CultureInfo (string)).
  44. Updated fields after reading the new docs from the final SDK.
  45. * ResXFileRef.cs, ResXResourceReader.cs: Removed. They are part of
  46. Windows.Forms and require System.Xml, which we don't have access to.
  47. 2002-01-13 Duncan Mak <[email protected]>
  48. * ResourceManager.cs: Added more MonoTODOs and cleaned up some
  49. indenting.
  50. 2002-01-09 Duncan Mak <[email protected]>
  51. * ResourceManager.cs: Fixed the GetSatelliteContractVersion()
  52. method. It was missing a cast before. Removed MonoTODO
  53. attribute. ;-) It was tested by John Barnette, so this shouldn't break
  54. the build.
  55. * ResourceManager.cs: Removed MonoTODO attribute on GetString
  56. (string), as I believe it's correct. However, GetString
  57. (string, CultureInfo) is definitely broken, so I'm marking it with
  58. MonoTODO there. I also added MonoTODO to IntenalGetResourceSet().
  59. 2002-01-06 Duco Fijma <[email protected]>
  60. * Finalizing IResourceReader and IResourceWriter interfaces:
  61. Added "new"-modifier to IResourceReader.GetEnumerator
  62. * Fixed compilation issues in other *.cs, so that the
  63. System.Resources namespaces can be included in the corlib build.
  64. 2002-01-05 Ravi Pratap <[email protected]>
  65. * ResourceManager.cs : MonoTODO attribute decoration.
  66. Tue Dec 18 13:18:32 CET 2001 Paolo Molaro <[email protected]>
  67. * *.cs: fixed some of the compilation issues: missing
  68. using directives, typos.
  69. 2001-12-11 Duncan Mak <[email protected]>
  70. * Checked in to CVS.
  71. 2001-12-10 Duncan Mak <[email protected]>
  72. * ResourceManager.cs (GetNeutralResourcesLanguage):
  73. (GetSatelliteContractVersion): Implemented.
  74. 2001-12-09 Duncan Mak <[email protected]>
  75. * ResXResourceReader.cs: Initial attempt.
  76. * ResXFileRef.cs: Initial attempt.
  77. * ResourceWriter.cs: Initial attempt.
  78. * ResourceSet.cs (ReadResources): Implemented, with help from Radek Doulik.
  79. 2001-11-28 Duncan Mak <[email protected]>
  80. * ResourceManager.cs: First attempt.
  81. 2001-11-27 Duncan Mak <[email protected]>
  82. * ResourceSet.cs:
  83. First attempt, can't continue until ResourceReader and ResourceWriter are implemented.
  84. * SatelliteContractVersionAttribute.cs: First attempt. The spec is quite amibiguous here.
  85. * NeutralResoucesLanguageAttribute.cs: Complete.
  86. * MissingManifestResourceException.cs: Complete.
  87. * IResourceReader.cs: Complete.
  88. * IResourceWriter.cs: Complete.