All Versions
7
Latest Version
Avg Release Cycle
25 days
Latest Release
900 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