Date | 2024-09-11 (65 days ago) |
---|---|
Downloads | 131 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET 6 |
Umbraco Versions | Umbraco 10 Umbraco 11 Umbraco 12 |
New stable release for Umbraco 10, 11 and 12. This release will not work with other versions of Umbraco.
#installation
">InstallationTo install the package via NuGet, you can use either .NET CLI:
dotnet add package Limbo.Umbraco.YouTube --version 2.0.5
or the NuGet Package Manager:
Install-Package Limbo.Umbraco.YouTube -Version 2.0.5
#changelog
">ChangelogAdding more data type options to the property editor (see 9ed585b
and c70f420
)
The YouTube player supports a lot of different parameters - some of these like loop
, autoplay
and rel
can now be controlled from the data type.
Removed JSON converters from package since similar converters are available in Skybrud.Essentials (see 1a5ac52
)
Might as well remove the redundant code as the JSON converters now also exist in our Skybrud.Essentials package.
Added extra null checks to the value converter (see 10dd90d
)
In some edge cases, the user may insert a video URL in the property editor, and hit save before the video information has finished loading, in which case in incomplete video object will be saved for the property, causing the value converter to fail. With this release, the value converter now has some additional null checks to prevent this issue.