Skip to content

Contentment v1.0.0

Compare
Choose a tag to compare
@leekelleher leekelleher released this 12 Aug 15:36
· 1239 commits to master since this release
388d804

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, sets RuntimeLevel to Boot, (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...

PM> Install-Package Our.Umbraco.Community.Contentment