Skip to content

Releases: rickbutterfield/Umbraco.Community.BlockPreview

v1.6.0

01 Sep 16:24
Compare
Choose a tag to compare

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

Full Changelog: v1.5.0...v1.6.0

v1.5.0

18 Aug 09:21
Compare
Choose a tag to compare

Bugs Fixed

  • Fixed an issue where the block overlay may appear when resizing a block in the grid

What's Changed

New Contributors

Full Changelog: v1.4.1...v1.5.0

v1.4.1

30 Jun 12:32
Compare
Choose a tag to compare

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

29 Jun 08:20
f635490
Compare
Choose a tag to compare

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

26 Jun 13:08
Compare
Choose a tag to compare

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

20 Jun 09:56
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.3...v1.3.0

v1.2.3

25 May 12:34
Compare
Choose a tag to compare

Second minor bug fix to the JS to support nested areas.

Full Changelog: v1.2.2...v1.2.3

v1.2.2

24 May 11:30
Compare
Choose a tag to compare

Minor bug fix to the JS to support nested areas.

Full Changelog: v1.2.1...v1.2.2

v1.2.1

12 Apr 13:34
Compare
Choose a tag to compare

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

12 Apr 13:21
Compare
Choose a tag to compare

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