Skip to content

V1.1.0

Compare
Choose a tag to compare
@patrickdemooij9 patrickdemooij9 released this 30 May 19:38
· 31 commits to main since this release

Hi everyone!

This new release includes a lot of new functionalities and changes to the interface to make everything a lot easier to use.

Notable changes

Both the content apps on content & document types for meta fields have been updated with this new interface:
SeoToolkitMetaFields1
SeoToolkitMetaFields2

The content app for content now also shows previews that are updated in realtime:
PreviewMetaFields

Robots.txt now shows this dialog on invalid content allowing you to save it if needed.
image

And you are now able to have more control about the sitemap generation with Umbraco like notifications.

public class ExampleSitemapNotification : INotificationHandler<GenerateSitemapNotification>
    {
        public void Handle(GenerateSitemapNotification notification)
        {
            notification.Nodes.Add(new SitemapNodeItem("https://google.nl"));
        }
    }

What's Changed

Full Changelog: 1.0.2...1.1.0

A big H5YR to @jveer for his contributions in this release!

Please create issues if you find any issues with this release.