Releases: EasyAbp/FileManagement
Releases · EasyAbp/FileManagement
5.9.0
5.8.0
5.7.0
5.6.0
5.5.0
5.4.0
5.3.0
What's Changed
- Allows file renaming with only case differences by @gdlcf88 in #130
- Add a
File.HasSubdirectoriesproperty by @gdlcf88 in #131 - Add a
File.HasSubdirectoriesproperty: part 2 by @gdlcf88 in #132 - Skip handling of statistic data update if dir is not found by @gdlcf88 in #133
- Upgrade to ABP 8.2.0 by @gdlcf88 in #134
Full Changelog: 5.2.0...5.3.0
5.2.0
Breaking Changes
Please add migrations for EF Core as the length of the File.MimeType property is updated to 128 chars.
What's Changed
- Add get file by path API by @gdlcf88 in #120
- Add
GetFileListInput.Filterproperty by @gdlcf88 in #121 - Upgrade to bootstrap-fileinput v5.5.3 by @gdlcf88 in #122
- Refactor the get-by-path API by @gdlcf88 in #123
- Fix the MongoDB module dependencies by @gdlcf88 in #124
- Upgrade to ABP 8.1.0 by @gdlcf88 in #129
Full Changelog: 5.1.0...5.2.0
5.1.0
5.0.0
How To Upgrade?
-
This module no longer provides a default file manager page and menu item.
Now you need to create a page yourself with code like this:@await Component.InvokeAsync("FileManager", new { fileContainerName = "default", // specify a container ownerUserId = CurrentUser.GetId(), // can be null if it's a shared container parentId = (Guid?)null, // the root directory policy = new FileManagerPolicyModel // with a custom policy model { CanUploadFile = false, CanMoveFile = false } })
The policy arg is not required. See the demo file manager page and menu item.
-
Make sure that the
FileNameof the File entities doesn't exceed a length of 255 chars. Then you can add an EF Core migration and update the database.
What's Changed
- Fix the sorting of the file list API by @gdlcf88 in #110
- Introduce the file manager UI widget by @gdlcf88 in #111
- Add configurations for
Fileentity property constraints by @gdlcf88 in #113 - Introduce
SoftDeletionTokenand fix indexes by @gdlcf88 in #115 - Introduce
FileUserand file details panel by @gdlcf88 in #116 - Upgrade to ABP 8.0.0 by @gdlcf88 in #118
Full Changelog: 4.0.3...5.0.0
