| Date | 2024-09-18 (412 days ago) |
|---|---|
| Downloads | 379 downloads |
| NuGet | View on NuGet |
| GitHub | View on GitHub |
| Target Frameworks | .NET 8 |
| Umbraco Versions | Umbraco 13 |
New beta release for Umbraco 13. This release will not work for other versions of Umbraco.
#installation">InstallationInstall the NuGet package - either via the .NET CLI:
dotnet add package Limbo.Umbraco.UrlPicker --version 13.0.0-beta002or the NuGet package manager:
Install-Package Limbo.Umbraco.UrlPicker -Version 13.0.0-beta002#changelog">ChangelogFixed type returned by the UrlPickerItemConverterBase.ConvertList method (see 9d40126)
If the data type is configured as a multi picker, the UrlPickerItemConverterBase class indicates that the return type is IReadOnlyList<T>, but returned values were IEnumerable<T>. With this release, returned values are now IReadOnlyList<T> as intended.
Changed property editor value type to JSON instead of TEXT (see d1fc2d7)
This doesn't really change how values are saved in the database, as JSON and TEXT both use the textValue column in the umbracoPropertyData table, but Umbraco treats the two types slightly different.