Skip to content

Releases: rickbutterfield/Umbraco.Community.BlockPreview

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

v1.1.2

14 Mar 11:42
Compare
Choose a tag to compare

Another small patch release, fixing a bug where ModelsBuilder isn't enabled.

Bug fixes and enhancements

  • Two Column Layout error "Something went wrong rendering a preview" (#12)

Full Changelog: v1.1.1...v1.1.2

v1.1.1

07 Mar 13:01
Compare
Choose a tag to compare

Just a small patch release this time, fixing an issue where files in the App_Plugins folder weren't being correctly copied.

Bug fixes and enhancements

  • App_Plugins folder not being copied (#11)

Full Changelog: v1.1.0...v1.1.1