v3.0.1
First release for Umbraco 10. This release will not work on older versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Limbo.Umbraco.BlockList --version 3.0.1
Package Manager:
Install-Package Limbo.Umbraco.BlockList -Version 3.0.1
Changelog
-
Property editor constants should be public, although most importantly
EditorAlias
(see 6829a1d)
Making the constants public ensures that they can be used by code outside of the package. -
The return value of the
IBlockListTypeConverter.Convert
method is now marked as nullable (see 052292e)
The return value may benull
in some situations, to the API contract should reflect this. Eg. if the configuration has a limit of 1, the converter might be in single item mode.