Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/pluggableWidgets/image-cropper-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [1.1.0] - 2026-08-11

### Added

- Custom aspect ratio width and height can now be set with an expression or bound to an attribute.

### Fixed

- The crop selection no longer briefly appears at the wrong ratio while a custom aspect ratio expression is still loading.

- The crop selection is no longer cleared and the image no longer reloaded when unrelated properties on the page change.

## [1.0.0] - 2026-07-14
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/image-cropper-web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mendix/image-cropper-web",
"widgetName": "ImageCropper",
"version": "1.0.0",
"version": "1.1.0",
"description": "Crop images bound to a Mendix image attribute",
"copyright": "© Mendix Technology BV 2026. All rights reserved.",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="ImageCropper" version="1.0.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="ImageCropper" version="1.1.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="ImageCropper.xml" />
</widgetFiles>
Expand Down
Loading