From 6952bc88c60efa9e02398d8ca9414809ce129cb9 Mon Sep 17 00:00:00 2001 From: Vincent Baaij Date: Tue, 26 Jan 2021 13:48:30 +0100 Subject: [PATCH] Correct type typo in view --- README.md | 2 ++ .../Views/CropProcessImageBlock.cshtml | 2 +- .../Views/CropProcessImageBlock.cshtml | 2 +- .../Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f59c5be..577547e 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,8 @@ GetPictureData parameters are similar to the parameters for the Picture html hel ## Change log To get a more exact overview of the changes, you can also take a look at the commit history. +#### V5.6.3 (Blocks) +- Fix type type in CropProcessImageBlock #### V5.6.5 - Fix #44. When '#' is found in color string for Tint, it will now be encoded in UrlBuilder. #### V5.6.4 diff --git a/build/content/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml b/build/content/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml index e65a9e5..37dd520 100644 --- a/build/content/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml +++ b/build/content/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml @@ -2,6 +2,6 @@ @using EPiServer.Web.Mvc.Html @using ImageProcessor.Web.Episerver -@model ImageProcessor.Web.Episerver.UI.Blocks.Models.Blocks.ProcessImageBlock +@model ImageProcessor.Web.Episerver.UI.Blocks.Models.Blocks.CropProcessImageBlock diff --git a/samples/AlloySampleLocal/modules/_protected/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml b/samples/AlloySampleLocal/modules/_protected/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml index e65a9e5..37dd520 100644 --- a/samples/AlloySampleLocal/modules/_protected/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml +++ b/samples/AlloySampleLocal/modules/_protected/ImageProcessor.Web.Episerver.UI.Blocks/Views/CropProcessImageBlock.cshtml @@ -2,6 +2,6 @@ @using EPiServer.Web.Mvc.Html @using ImageProcessor.Web.Episerver -@model ImageProcessor.Web.Episerver.UI.Blocks.Models.Blocks.ProcessImageBlock +@model ImageProcessor.Web.Episerver.UI.Blocks.Models.Blocks.CropProcessImageBlock diff --git a/src/ImageProcessor.Web.Episerver.UI.Blocks/Properties/AssemblyInfo.cs b/src/ImageProcessor.Web.Episerver.UI.Blocks/Properties/AssemblyInfo.cs index 1f0c7c2..937fdfd 100644 --- a/src/ImageProcessor.Web.Episerver.UI.Blocks/Properties/AssemblyInfo.cs +++ b/src/ImageProcessor.Web.Episerver.UI.Blocks/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyVersion("5.6.2.*")] -[assembly: AssemblyFileVersion("5.6.2.0")] +[assembly: AssemblyVersion("5.6.3.*")] +[assembly: AssemblyFileVersion("5.6.3.0")]