New release for Umbraco 13. This release will not work with other versions of Umbraco.
Installation
To install the package via NuGet, you can use either .NET CLI:
dotnet add package Limbo.Umbraco.TwentyThree --version 13.0.1
or the older NuGet Package Manager:
Install-Package Limbo.Umbraco.TwentyThree -Version 13.0.1
Changelog
-
Introduced model factory for creating video related models (see 343ce0b)
Various models within the package are now initialized via virtual methods in a factory class instead of static factory methods. -
Fixed absolute URL issues with video file URLs (see 343ce0b)
The existing logic didn't correctly calculate the absolute URLs. -
Video width/height fix (see 4f338e5)
Not sure if TwentyThree changed anything, but the implementation was looking forvideo_original_width
andvideo_original_height
, while the properties are (now) namedoriginal_width
andoriginal_height
. -
Description shown for selected video should be trimmed (see e70b405)
TwentyThree's HTML to text conversion for the video description may lead to excessive leading or trailing whitespace, which is now trimmed when the description is shown in the property editor. -
Introduced new "Hide player" data type option (see cf759ad)
This allows disabling/hiding the player option in the property editor. -
Added video app URL link to the property editor UI (see 05ba656)
Clicking the link will take the user to the TwentyThree control panel for the selected video.