All Versions
7
Latest Version
Avg Release Cycle
25 days
Latest Release
670 days ago
Changelog History
Changelog History
-
v2.0.0 Changes
November 10, 2022โ Added
- โ Added interfaces for
FileSystemAccessService
andFileSystemAccessServiceInProcess
so that they are test friendly. - โ Added InProcess variants of the following wrapper classes:
FileSystemDirectoryHandle
,FileSystemFileHandle
,FileSystemHandle
andFileSystemWritableFileStream
.
๐ Changed
- ๐ Changed the Blazor WebAssembly compatible service to be named
FileSystemAccessServiceInProcess
instead ofFileSystemAccessService
so that Blazor Server support is the standard. - ๐ Changed to use the Blazor.FileAPI's definition of
Blob
s andFile
s. - ๐ Changed to have
FileSystemWritableFileStream
extend Blazor.Streams'sWritableStream
instead of .NETStream
. - ๐ Changed creator methods
CreateAsync
to takeIJSRuntime
first to normalize standards with other wrappers.
- โ Added interfaces for
-
v1.2.1 Changes
October 10, 2022๐ Fixed
- ๐ Fixed that
BlobWriteParams
,StringWriteParams
, andByteArrayWriteParams
didn't set theirWriteCommandType
given from the constructor. - Fixed naming of
GetOriginPrivateDirectoryAsync
andIsSupportedAsync
to have Async in name.
- ๐ Fixed that
-
v1.2.0 Changes
October 07, 2022โ Added
- โ Added
ArrayBufferAsync
method toBlob
to read as byte array. By @fixnil. - โ Added public
CreateAsync
methods toFileSystemHandle
,FileSystemFileHandle
, andFileSystemDirectoryHandle
. ### ๐ Fixed - Fixed naming of
QueryPermissionAsync
andRequestPermissionAsync
to have Async in name. - Fixed that there was an extra in in the name of
OpenFilePickerOptionsStartInFileSystemHandle
.
- โ Added
-
v1.1.0 Changes
August 19, 2022โ Added
FileSystemWritableFileStream
now extends theStream
.
-
v1.0.1 Changes
July 12, 2022๐ Fixed
- ๐ Fixed error of
Multiple
inOpenFilePickerOptionsStartInWellKnownDirectory
not being serialized correctly. By @AlexanderNorup.
- ๐ Fixed error of
-
v1.0.0 Changes
June 28, 2022โ Added
- โ Added support for Origin Private File System via
GetOriginPrivateDirectory
method that wraps the JS callnavigator.storage.getDirectory
. ### ๐ Changed - ๐ Changed
RemoveEntryAsync
to useFileSystemRemoveOptions
instead ofFileSystemGetFileOptions
and created theFileSystemRemoveOptions
class. ### โ Removed - ๐ Constructor with
keepExistingData
parameter inFileSystemCreateWritableOptions
was removed for consistency.
- โ Added support for Origin Private File System via
-
v0.2.0 Changes
June 14, 2022โ Added
- โ Added support for writing byte arrays to files using
FileSystemWritableFileStream
. By @nzmangan.
- โ Added support for writing byte arrays to files using