Skip to content

Commit

Permalink
Correct type typo in view
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Jan 26, 2021
1 parent e8f556b commit 6952bc8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

<img src="@Model.GetMethods()" />
Original file line number Diff line number Diff line change
Expand Up @@ -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

<img src="@Model.GetMethods()" />
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 6952bc8

Please sign in to comment.