V1.1.0
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:
The content app for content now also shows previews that are updated in realtime:
Robots.txt now shows this dialog on invalid content allowing you to save it if needed.
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
- Hide restricted nodes in Umbraco from the sitemap by @jveer in #65
- Added option to allow saving invalid Robots.txt content (#44) by @jveer in #64
- Added the status code as text to the redirects overview (#45) by @jveer in #63
- Created some simple logic for searching within redirects by @patrickdemooij9 in #68
- Sitemap priority editor changed to slider (#49) by @jveer in #62
- Added sorting of the columns to the redirects overview by @jveer in #70
- Prevent multiple initializations on the meta fields content app by @jveer in #72
- Fix for app_plugin files not being included for MetaFields and Sitemap by @patrickdemooij9 in #75
- New interface for document types by @patrickdemooij9 in #78
- Added umbraco telemetry by @patrickdemooij9 in #79
- Track created by & show last updated date by @patrickdemooij9 in #80
- Set the default value for canonical url by @patrickdemooij9 in #81
- Feature/seo content changes by @patrickdemooij9 in #83
- Allow sitemap extension through notifications by @patrickdemooij9 in #84
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.