Date | 2023-09-21 (421 days ago) |
---|---|
Downloads | 161 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET 6 |
Umbraco Versions | Umbraco 10 Umbraco 11 Umbraco 12 |
New release for Umbraco 10+. This release will not work for older versions of Umbraco.
#installation
">InstallationInstall the NuGet package - either via the .NET CLI:
dotnet add package Limbo.Umbraco.UrlPicker --version 1.1.0
or the NuGet package manager:
Install-Package Limbo.Umbraco.UrlPicker -Version 1.1.0
#changelog
">ChangelogIUrlPickerConverter
interface a bit to support more scenarios (see 1855fad
)IUrlPickerConverter
interface only properly supported converting each item individually, but not the overall value. Eg. it only supported converting a Link
item to something else, but not IEnumerable<Link>
. As of this release, the interface has been updated to support both cases. The UrlPickerConverterBase
and UrlPickerItemConverterBase
classes have also been added to make it more friendly to implement custom converters.