Version 1.1.0

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">Installation

Install 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">Changelog

  • Rewrote the IUrlPickerConverter interface a bit to support more scenarios (see 1855fad)
    The existing logic around converters and the 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.