Releases: limbo-works/Limbo.Umbraco.DreamBroker
v13.0.1
New release for Umbraco 13. This release will not work with other versions of Umbraco.
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.DreamBroker --version 13.0.1
or the NuGet package manager:
Install-Package Limbo.Umbraco.DreamBroker -Version 13.0.1
Changelog
-
Added logic for parsing a source value into a valid property value for the video data type (see ae6f25c)
Both theDreamBrokerService
class and the newDreamBrokerUtils
static class now expose functionality for converting a source value (video URL) into an instance ofDreamBrokerIntermediaryVideoValue
, which when serialized to JSON, matches the value saved by the property editor. -
Fixed icon names (see a156db7)
The package contains two SVG icons with the aliasesicon-dreambroker
andicon-dreambroker-alt
. To normalize the naming across our video picker packages, the aliases are nowicon-limbo-dreambroker
andicon-limbo-dreambroker-alt
instead. -
Updated the property value model a bit (see 26c78d6)
In previous versions of the package, the property editor has saved the video informationmodel.value.video
. To normalize this across our video picker packages, this has now been changed tomodel.value.details
. This is handled gracefully, so that the package still supports the old value.
v13.0.0
First release for Umbraco 13. This release will not work with other versions of Umbraco.
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.DreamBroker --version 13.0.0
or the NuGet package manager:
Install-Package Limbo.Umbraco.DreamBroker -Version 13.0.0
v2.0.4
New release for Umbraco 10, 11 and 12. This release will not work with other versions of Umbraco.
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.DreamBroker --version 2.0.4
or the NuGet package manager:
Install-Package Limbo.Umbraco.DreamBroker -Version 2.0.4
Changelog
This release mostly contains internal changes to code style and similar to prepare the package for upgrade to Umbraco 13. The 2.x
still targets Umbraco 10, but now the code will look closer to the soon to come code targeting Umbraco 13.
v2.0.3
New release for Umbraco 10+ π
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.DreamBroker --version 2.0.3
or the NuGet package manager:
Install-Package Limbo.Umbraco.DreamBroker -Version 2.0.3
Changelog
-
Updated the upper bound for the Umbraco dependencies to allow using the package with Umbraco 12 (see 24c689a)
As Umbraco 12 was released earlier this month, and no changes are required for the package to run on Umbraco 12, the upper bound of the Umbraco dependencies has been raised to allow running on Umbraco 12. -
Updated package manifest filter to set
PackageId
property in Umbraco 12 (see ae46efb)
In Umbraco 12, thePackageManifest
clas now has aPackageId
property to indicate the NuGet ID of a package. As of this release, the package uses reflection to set this property when the package is used with Umbraco 12. -
Updated the Limbo.Umbraco.Video dependency (see 3f3d17a)
Might as well reference the newest version. -
Added ESC shortcut to video overlay (see e6527ea)
This ensures that the video overlay can now be closed by pressing the ESC key similar to most overlays in Umbraco.
v2.0.2
New release for Umbraco 10+ π
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.DreamBroker --version 2.0.2
or the NuGet package manager:
Install-Package Limbo.Umbraco.DreamBroker -Version 2.0.2
Changelog
v2.0.1
New release for Umbraco 10+ π
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Limbo.Umbraco.DreamBroker --version 2.0.1
or the NuGet package manager:
Install-Package Limbo.Umbraco.DreamBroker -Version 2.0.1
Changelog
This release doesn't contain any new code changes, but updates the package project URL in the NuGet package as this URL is used by the Umbraco Marketplace.
v2.0.0
v1.0.0
v1.0.0-alpha005
New alpha release π
Installation
Install for Umbraco 9 via NuGet:
dotnet add package Limbo.Umbraco.DreamBroker --version 1.0.0-alpha005
Changelog
-
Fixed various issues with
$scope.model.value
beingnull
orundefined
(see e6bd13d)
The video property editor had a few issues where the code didn't properly check whether$scope.model.value
had a value before trying to set a property on it. -
Fixed input placeholder issue (see 1f76b5a)
The placeholder text was missing in previous releases. With this release, the placeholder text will now be showed correctly.
v1.0.0-alpha004
New alpha release π
Installation
Install for Umbraco 9 via NuGet:
dotnet add package Limbo.Umbraco.DreamBroker --version 1.0.0-alpha004
Changelog
-
Fixed embed code URL (see 132c7cb)
The embed URL was incorrectly constructed of the channel ID twice instead of the channel ID and video ID. -
Added missing
refresh
method so clicking the refresh button actually works (see c0bb570)
The method was missing in the Angular controller, so the refresh button didn't work. -
Added input field placeholder (see 46acf3e)
The URL input field now has a placeholder text to indicate the field's purpose. -
Misc improvements...
Minor bug fixes, fixed typos etc.