Skip to content

Releases: EasyAbp/FileManagement

5.9.0

19 Dec 19:22
d0749a5

Choose a tag to compare

What's Changed

Full Changelog: 5.8.0...5.9.0

5.8.0

19 Dec 19:19
c071c5f

Choose a tag to compare

What's Changed

Full Changelog: 5.7.0...5.8.0

5.7.0

01 Jul 17:22
8fe7965

Choose a tag to compare

What's Changed

Full Changelog: 5.6.0...5.7.0

5.6.0

31 Mar 12:48

Choose a tag to compare

What's Changed

Full Changelog: 5.5.0...5.6.0

5.5.0

29 Dec 14:23
b927c84

Choose a tag to compare

What's Changed

Full Changelog: 5.4.0...5.5.0

5.4.0

27 Oct 18:29
80242f9

Choose a tag to compare

What's Changed

Full Changelog: 5.3.0...5.4.0

5.3.0

30 Jul 12:42
6ad642a

Choose a tag to compare

What's Changed

  • Allows file renaming with only case differences by @gdlcf88 in #130
  • Add a File.HasSubdirectories property by @gdlcf88 in #131
  • Add a File.HasSubdirectories property: 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

12 Apr 14:54
accc497

Choose a tag to compare

Breaking Changes

Please add migrations for EF Core as the length of the File.MimeType property is updated to 128 chars.

What's Changed

Full Changelog: 5.1.0...5.2.0

5.1.0

31 Dec 16:33

Choose a tag to compare

What's Changed

Full Changelog: 5.0.0...5.1.0

5.0.0

28 Nov 07:16
bdf8bbd

Choose a tag to compare

image

How To Upgrade?

  1. 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.

  2. Make sure that the FileName of 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

Full Changelog: 4.0.3...5.0.0