Skip to content

Commit 2443c07

Browse files
committed
🔖 release v0.4.1
1 parent 6436d77 commit 2443c07

File tree

5 files changed

+41
-3
lines changed

5 files changed

+41
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2023-06-06
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`box_transform` - `v0.4.1`](#box_transform---v041)
19+
- [`flutter_box_transform` - `v0.4.1`](#flutter_box_transform---v041)
20+
21+
---
22+
23+
#### `box_transform` - `v0.4.1`
24+
25+
- Remove `DoubleExt` from package exports.
26+
27+
#### `flutter_box_transform` - `v0.4.1`
28+
29+
- Deny trackpad pointer devices to prevent erratic drag events when interacting with TransformableBox.
30+
- Inherit `handleAlignment` from `TransformableBox` for `AngularHandle`.
31+
- Add `debugPaintHandleBounds` param for painting handle bounds.
32+
633
## 2023-06-04
734

835
### Changes

packages/box_transform/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.1
2+
3+
- Remove `DoubleExt` from package exports.
4+
15
## 0.4.0
26

37
- Fix stack overflow error when the clamping rect is smaller than the box rect.

packages/box_transform/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: box_transform
22
description: A pure dart implementation of advanced 2D box transformation with easy and simple API.
33

4-
version: 0.4.0
4+
version: 0.4.1
55

66
repository: https://github.com/hyper-designed/box_transform
77
homepage: https://github.com/hyper-designed/box_transform

packages/flutter_box_transform/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1+
## 0.4.1
2+
3+
- Deny trackpad pointer devices to prevent erratic drag events when interacting with TransformableBox.
4+
- Inherit `handleAlignment` from `TransformableBox` for `AngularHandle`.
5+
- Add `debugPaintHandleBounds` param for painting handle bounds.
6+
17
## 0.4.0
8+
29
- [BREAKING]: Replace `hideHandlesWhenNotResizable` with `enabledHandles` and `visibleHandles`.
310
- Replace the usage of Listener widgets with GestureDetectors in the TransformableBox.
411
- Add new controls to the playground to reflect the new handle parameters.

packages/flutter_box_transform/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_box_transform
22
description: A Flutter implementation of box_transform package that provides easy 2D box transform operations with advanced resizing of rect in UI.
33

4-
version: 0.4.0
4+
version: 0.4.1
55

66
repository: https://github.com/hyper-designed/box_transform
77
homepage: https://github.com/hyper-designed/box_transform
@@ -15,7 +15,7 @@ environment:
1515
dependencies:
1616
flutter:
1717
sdk: flutter
18-
box_transform: ^0.4.0
18+
box_transform: ^0.4.1
1919
vector_math: ^2.1.4
2020

2121
dev_dependencies:

0 commit comments

Comments
 (0)