Releases: leekelleher/umbraco-contentment
Contentment v1.0.1
Hey there Umbraco fans!
Following on from our Contentment v1.0.0 release, we have a patch release... Contentment v1.0.1!
Changes and bug fixes since the v1.0.0 release
- #35 Contentment threw an error during Umbraco installation. Thank you @doronuziel71.
- #36 Prepared for Umbraco 8.7 layout issues with checkboxes and radio buttons, (backwards compatible with Umbraco 8.6.x).
- 2479438 Added custom label for the "Add" button (in the Configuration Editor). Noticeable in Data List and Render Macro data-type configuration options.
Enjoy the release!
Thank you to @doronuziel71 and @arknu for updates and feedback.
Cheers,
@leekelleher
✌️❤️🕊️
This release is also available on NuGet...
Contentment v1.0.0
Hey there Umbraco fans!
After successful feedback during the beta phase, I'm very happy to release the v1.0.0 release of Contentment! 🎉
The v1.0.0 release comes with the following Property Editors:
Property Editors
- Bytes - a read-only label to display file sizes in relative bytes.
- Data List - an editor that combines a custom data source with a custom list editor.
- Icon Picker - an editor to select an icon (from the Umbraco icon library).
- Notes - a read-only label to display rich-text instructional messages for content editors.
- Render Macro - a read-only label dynamically generated from an Umbraco Macro.
Changes and bug fixes since the v1.0.0 beta release
- #28 @abjerner updated the Data List documentation with an example for
IDataListSourceValueConverter
- 0f25159 Changed the logo, (to be friendlier).
- 9c6c6f1 Combines
Composer
classes, setsRuntimeLevel
toBoot
, (another thanks to @abjerner!) - Various minor tweaks to icons, labels and descriptions, (again to be friendlier).
- Breaking change: 326201e Amended the namespace of the
ContentmentVersion
class. (Given this is was during the beta phase, I'll put this down as one of those small "non-breaking-breaking-change"). - Added a newsletter sign up form on the Contentment tree dashboard. This is for new release updates, etc.
A small note about the tree dashboard, if you really don't like it, it can be removed with the following code...
using Umbraco.Core.Composing;
using Umbraco.Web;
namespace Mardy.Bum
{
public class RemoveContentmentTreeComposer : IUserComposer
{
public void Compose(Composition composition)
{
composition
.Trees()
.RemoveTreeController<Umbraco.Community.Contentment.Trees.ContentmentTreeController>()
;
}
}
}
Enjoy the release!
Thank you to @abjerner for updates and feedback.
Cheers,
@leekelleher
✌️❤️🕊️
This release is also available on NuGet...
Contentment v1.0.0-beta
Hey there Umbraco fans!
This has been a long time coming... the first official (beta) release of Contentment! 🎉
In this initial v1.0.0 beta release the following Property Editors are available:
Property Editors
- Bytes - a read-only label to display file sizes in relative bytes.
- Data List - an editor that combines a custom data source with a custom list editor.
- Icon Picker - an editor to select an icon (from the Umbraco icon library).
- Notes - a read-only label to display rich-text instructional messages for content editors.
- Render Macro - a read-only label dynamically generated from an Umbraco Macro.
I'll wait for a round of feedback before taking v1.0.0 out of beta.
Enjoy the release!
Cheers,
@leekelleher
✌️❤️🕊️
This release is also available on NuGet...