Releases: skybrud/Skybrud.LinkPicker
v2.0.2
New stable release for Umbraco 8. This will not work in Umbraco 7.
Installation
Changelog
- Fixed issue with incorrect UDI type in
LinkReferenceFactory(see e1c3380)
The UDI type for content isdocument, so when usingcontentinstead, more than one relation may be added with the same key or ID. This would for instance be the case if a page has both a regular MNTP and this link picker that references the same page.
Skybrud.LinkPicker v2.0.1
New stable release for Umbraco 8. This will not work in Umbraco 7.
Installation
Changelog
-
🆕 Add label is now localized instead of being hardcoded in Danish (see 20ad434)
The label for the button now uses Umbraco'sgeneral_addtranslation ensuring the label is matching the user's backoffice language - eg. Add in English or Tilføj in Danish. -
🆕 Updated Umbraco dependency (see 35c086e)
In order to use Umbraco's logic around references and theIDataValueReferenceFactoryandIDataValueReferenceinterfaces, the package now requires at least version 8.6.0 of Umbraco. -
🆕 Introduced
LinkReferenceFactoryclass for detecting content and media references (see 35c086e)
With the link picker, a page may have references to either content and media. This release introduces aLinkReferenceFactoryfor tracking those references within Umbraco. -
🆕 Updated Skybrud dependencies (see c736f40)
TheSkybrud.Essentialspackage has now been updated the the latest version.
Skybrud.LinkPicker v2.0.0
Skybrud.LinkPicker v2.0.0-beta001
First beta release for Umbraco 8. This will not work in Umbraco 7.
Installation
Changelog
-
Updated partial for Skybrud.Umbraco.Elements to work with newest versions (see 46c6805, 81f4ddc and 7fc60f2)
This package provides a partial Angular view that may be used in the Skybrud.Umbraco.Elements package. With this release, the partial view and it's controller now also work with the newest versions of the Skybrud.Umbraco.Elements package. Notice that the view has been moved from/App_Plugins/Skybrud.LinkPicker/Views/Partials/Links.htmlto/App_Plugins/Skybrud.LinkPicker/Views/Elements/LinkList.html. -
Removed Skybrud.Umbraco.Elements as a dependency (se ce3849d, 90f98ed and 0f4a96d)
The link picker C# code no longer has any references to the classes in the Elements package, so a mandatory dependency for the package doesn't make sense. -
Misc UI and accessibility improvements (see 8a20af4, 20d0851 and 6483989)
- Better fallback values in the UI
- Replaced relevant elements with elements
v2.0.0-alpha005
New alpha release for Umbraco 8. This will not work in Umbraco 7.
Installation
Changelog
-
"Add link" label is now localized (see 274f3c0 and #13)
Current translations are "Add link" (English) and "Tilføj link" (Danish). -
Added constructor overloads to the
LinkPickerLinkclass (5030ec7 and #14)
The new constructor overloads should give developers a bit more freedom to work with theLinkPickerLinkclass. -
Updated
LinkPickerLinkto look up the current URL in the content or media cache (see b614153 and #16)
As the URL may change over time, an instance ofLinkPickerLinkwill not try to find the current URL of the item it's pointing to.
Skybrud.LinkPicker v2.0.0-alpha004
New alpha release for Umbraco 8. This will not work in Umbraco 7.
Installation
Changelog
-
Updated the Skybrud.Umbraco.Elements dependency (see 67e7339).
The link picker partial view for the Elements package requires changes from the latest release, hence the dependency update. -
Updated property detection logic to use
getPropertyTypemethod instead of_.filter(see 1ac2e63)
The use_.filtermethod only worked with a flat array of properties, but recent releases of the Elements package have an array of property groups instead. With this release, the property detection logic now works again.
Skybrud.LinkPicker v2.0.0-alpha003
New alpha release for Umbraco 8. This will not work in Umbraco 7.
Installation
Changelog
- Updated to
.csprojto include language files when generating the NuGet package (see 3611c4a).
Due to an oversigt the XML languages files for the Umbraco backoffice weren't included in the NuGet package.
Skybrud.LinkPicker v2.0.0-alpha002
Skybrud.LinkPicker v2.0.0-alpha001
Skybrud.LinkPicker v1.1.8
Installation
Changelog
-
Added support for the anchor value introduced in Umbraco 7.12 (see 9d100f5)
Umbraco updated their link picker dialog to include an extra field for specifying an optional anchor and/or query string. With this release, the field is now also supported in Skybrud.LinkPicker. -
Fixed an issue with long URLs breaking the UI (see 8072661)
Follow up fromv1.1.7as there were some more cases with long URLs/labels that should be handled.