Releases: rickbutterfield/Umbraco.Community.BlockPreview
v1.6.0
What's Changed
- Added custom alert classes so we're not dependant on Umbraco's CSS
- Remove link to umbraco.min.css by @deanleigh in #26
- Feature/typed block areas by @rickbutterfield in #25 (fixes #15)
New Contributors
- @deanleigh made their first contribution in #26
Full Changelog: v1.5.0...v1.6.0
v1.5.0
Bugs Fixed
- Fixed an issue where the block overlay may appear when resizing a block in the grid
What's Changed
- Support for custom Views location by @RosenPetrovFFW in #23
- Linux casesensetive view-paths by @madsoulswe in #24
New Contributors
- @RosenPetrovFFW made their first contribution in #23
- @madsoulswe made their first contribution in #24
Full Changelog: v1.4.1...v1.5.0
v1.4.1
This is a minor release to fix an issue raised by @deanleigh where files from App_Plugins
weren't being copied!
Full Changelog: v1.4.0...v1.4.1
v1.4.0
A brand new release of BlockPreview is here to support Umbraco 12!
What's Changed
- Added support for Umbraco 12
- Added two new demo sites for v11 and v12, with added uSync and the BlockGrid Example Website to get up and running quickly
- Added styled alerts:
- before you've saved the page
- if the underlying partial/ViewComponent being referenced has any errors
Deprecation Notice
With this version, I am deprecating the old Our.Umbraco.BlockPreview package. This will remain at v1.3.1 and won't be updated, so please remove it and migrate. Under the hood the Our.Umbraco version of the package was just installing the Umbraco.Community version anyway.
Full Changelog: v1.3.1...v1.4.0
v1.3.1
Minor bug fix for Block List and Block Grid using the same partial names
Full Changelog: v1.3.0...v1.3.1
v1.3.0
What's Changed
- Adds fallback to culture defined on node by @dvandevliet in #17
New Contributors
- @dvandevliet made their first contribution in #17
Full Changelog: v1.2.3...v1.3.0
v1.2.3
Second minor bug fix to the JS to support nested areas.
Full Changelog: v1.2.2...v1.2.3
v1.2.2
Minor bug fix to the JS to support nested areas.
Full Changelog: v1.2.1...v1.2.2
v1.2.1
Minor bugfix after testing, where if you only have one language on your site the previews wouldn't load.
Full Changelog: v1.2.0...v1.2.1
v1.2.0
A new minor is here! This adds support for better culture variants and also removes some magic strings. Once installed, you'll need to add AddBlockPreview()
to your Startup.cs
file, before AddWebsite()
.
public void ConfigureServices(IServiceCollection services)
{
services.AddUmbraco(_env, _config)
.AddBackOffice()
+ .AddBlockPreview()
.AddWebsite()
.AddComposers()
.Build();
}
Bug fixes and enhancements
- Change BackOfficePreviewService to use the Razor Engine to find the View (#14)
- Variants not updating content (#16)
Full Changelog: v1.1.2...v1.2.0