ChangeLog 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. 2005-11-09 Sebastien Pouliot <[email protected]>
  2. * IsolatedStorageScope.cs: Added missing [Serializable] in 2.0 profile
  3. 2005-10-04 Sebastien Pouliot <[email protected]>
  4. * IsolatedStorageFile.cs: Add a call to GC.SuppressFinalize in Dispose
  5. (even if we're not disposing anything).
  6. 2005-06-22 Sebastien Pouliot <[email protected]>
  7. * IsolatedStorageFile.cs: Only assembly evidences are considered to
  8. resolve policy. Changed resolve method used (instead of changing it's
  9. code).
  10. 2005-06-14 Sebastien Pouliot <[email protected]>
  11. * IsolatedStorageFileStream.cs: Remove Close method from NET_2_0.
  12. * IsolatedStorageFile.cs: Implemented missing MaximumSize property
  13. and GetPermission method.
  14. 2005-06-05 Gonzalo Paniagua Javier <[email protected]>
  15. * IsolatedStorageFileStream.cs: check the FileMode here as FileStream
  16. throws a different exception.
  17. 2005-04-25 Sebastien Pouliot <[email protected]>
  18. * INormalizeForIsolatedStorage.cs: Added [ComVisible(true)] for 2.0.
  19. * IsolatedStorage.cs: Added [ComVisible(true)] for 2.0 except for new
  20. property ApplicationIdentity.
  21. * IsolatedStorageException.cs: Added [ComVisible(true)] for 2.0.
  22. * IsolatedStorageFile.cs: Now calls UnprotectedGetEvidence to get the
  23. assembly evidences. Added [ComVisible(true)] for 2.0.
  24. * IsolatedStorageFileStream.cs: Added [ComVisible(true)] for 2.0.
  25. * IsolatedStorageScope.cs: Added [ComVisible(true)] for 2.0.
  26. 2005-03-24 Sebastien Pouliot <[email protected]>
  27. * IsolatedStorageFile.cs: Added an assert for unrestricted file access
  28. to the class. This is "ok" as the user cannot control the base path
  29. for isolated storage but will be updated to be more "precise" when
  30. imperative assert are supported in the runtime.
  31. * IsolatedStorageFileStream.cs: Changed constructors so the assert
  32. for unrestricted file access is limited to constructors (not the whole
  33. class). Added LinkDemand for UnmanagedCode to get Handle and
  34. SafeFileHandle (2.0) properties.
  35. 2005-03-17 Sebastien Pouliot <[email protected]>
  36. * IsolatedStorageScope.cs: Add missing BOOTSTRAP_NET_2_0 to new enum
  37. values. Fix #73046.
  38. * IsolatedStorageFile.cs: Remove commented security attributes.
  39. 2005-03-15 Sebastien Pouliot <[email protected]>
  40. * IsolatedStorageFile.cs: Added CAS demands (imperative when possible)
  41. for IsolatedStoragePermission. The security attributes for NET_2_0 are
  42. commented until #73046 is fixed.
  43. * IsolatedStorageFileStream.cs: Now use StackFrame(2) to find which
  44. assembly is really calling the IsolatedStorageFileStream when no
  45. default is supplied. Throw DirectoryNotFoundException when a directory
  46. inside the isolated storage is missing.
  47. 2005-01-31 Sebastien Pouliot <[email protected]>
  48. * IsolatedStorage.cs: Added checks to get identities.
  49. * IsolatedStorageFile.cs: Added support for identities (assembly,
  50. domain and, for 2.0, application).
  51. * IsolatedStorageFileEnumerator.cs: New. Internal enumerator for
  52. IsolatedStorageFile.
  53. * IsolatedStorageFileStream.cs: Now use the new FileStream
  54. constructor to ensure filestream name stays [Unknown].
  55. * IsolatedStorageInfo.cs: Removed (no more required).
  56. * IsolatedStorageScope.cs: Added new 2.0 scopes: Application and
  57. Machine.
  58. 2004-07-11 Gonzalo Paniagua Javier <[email protected]>
  59. * IsolatedStorageInfo.cs: useGetFolderPath instead of getting "HOME".
  60. 2004-06-13 Gert Driesen <[email protected]>
  61. * IsolatedStorage.cs: really mark the storage_scope field private
  62. 2004-06-09 Gert Dresen <[email protected]>
  63. * IsolatedStorage.cs: use private variable for holding scope,
  64. set scope in InitStore method, removed need for extra protected
  65. member (public API fix)
  66. * IsolatedStorageFile.cs: use InitStore to initialize scope
  67. 2004-05-12 Sebastien Pouliot <[email protected]>
  68. * IsolatedStorage.cs: More details on MonoTODO. Throw exceptions on
  69. AssemblyIdentity and DomainIdentity properties.
  70. * IsolatedStorageFile.cs: More details on MonoTODO.
  71. * IsolatedStorageFileStream.cs: Removed MonoTODO on class. Now use
  72. Path.Combine to build filenames (constructor) and throw an exception
  73. when we try to get the handle (as documented).
  74. 2003-07-30 Duncan Mak <[email protected]>
  75. * IsolatedStorageInfo.cs (CreateAssemblyFilename):
  76. (CreateDomainFilename): Replace String.Format with Path.Combine.
  77. * IsolatedStorageFile.cs:
  78. (GetStore): Update storage_scope accordingly.
  79. (GetUseStoreForAssembly): Include IsolatedStorageScope.User.
  80. (GetUseStoreForDomain): Include IsolatedStorageScope.User and
  81. IsolatedStorageScope.Assembly.
  82. * IsolatedStorage.cs:
  83. (CurrentSize):
  84. (MaximumSize): throw InvalidOperationExceptions. This is a
  85. subclass responsibility.
  86. (Scope): Implemented using a static field, storage_scope.
  87. (SeparatorInternal)
  88. (SeparatorExternal): Implemented. Use Path.DirectorySeparatorChar
  89. for SeparatorExternal.
  90. 2003-02-18 Jonathan Pryor <[email protected]>
  91. * IsolatedStorageFile.cs: Fix spelling error (GetUseStoreForDomain -->
  92. GetUserStoreFor Domain). Reported by
  93. Torsten Rendelmann <[email protected]>.
  94. 2003-01-19 Sebastien Pouliot <[email protected]>
  95. * IsolatedStorageFile.cs: Added missing [CLSCompliant(false)]
  96. to CurrentSize and MaximumSize to fix compilation (at least
  97. under Windows/csc).
  98. 2003-01-18 Jonathan Pryor <[email protected]>
  99. - General: Get a simple implementation working. Simple, not-all-there, but
  100. sufficient to get "Programming C#" example 21-17 working under Mono. This
  101. doesn't say much, as it's not a stress-test by any means.
  102. * INormalizeForIsolatedStorage.cs: re-indent to fit mono code style
  103. * IsolatedStorage.cs: match mono coding guidelines
  104. * IsolatedStorageFileStream.cs: Add members that "C# In A Nutshell" claims
  105. the class should override. Most of these members just delegate to the
  106. base class, though. CreateIsolatedPath is used to get the actual filename
  107. for the IsolatedStorageFileStream.
  108. * IsolatedStorageScope.cs: Documentation goes in monodoc, so there's no
  109. point in having C# doc-tags. Add "Roaming" member, which "C# In A
  110. Nutshell" lists.
  111. * IsolatedStorageFile.cs: Public class documented in "C# In A Nutshell".
  112. Simple implementation. Will probably need work to conform with .NET,
  113. address security concerns.
  114. * IsolatedStorageInfo.cs: Abstract IsolatedStorage information used by other
  115. classes, such as the directory isolated storage is located under, how to
  116. calculate the size of isolated storage, etc.
  117. 2002-02-19 Duncan Mak <[email protected]>
  118. * IsolatedStorageFileStream.cs: Added MonoTODO here. This class
  119. is completely stubbed out (over the summer) and didn't get
  120. properly MonoTODO'd.
  121. 2002-02-08 Duncan Mak <[email protected]>
  122. * IsolatedStorage.cs: Looked at MemberInfo.cs, another fellow
  123. abstract class. Oh, that's what it means! Removed unnesscessary
  124. MonoTODO attributes.
  125. 2002-02-07 Duncan Mak <[email protected]>
  126. * IsolatedStorage.cs: Added to CVS, stubbed out the API.
  127. * IsolatedStorageException.cs: Implemented.
  128. 2002-01-07 Duco Fijma <[email protected]>
  129. * Created INormalizeForIsolatedStorage