From 06e9072a23877a46fd6c16aa03536752b27a4d14 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Tue, 20 Aug 2024 12:13:09 -0700 Subject: [PATCH] Noting Easing change --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f844f45..55148c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `CushyWindowBuilder` has been renamed to `StandaloneWindowBuilder` and `MakeWidget::build_virtual_window` has been renamed to `build_standalone_window`. +- All animation easing related functionality has been reactored into a separate + crate: `easing-function`. Most code will remain unaffected due to re-exports, + but the `Easing` trait no longer accepts a `ZeroToOne` parameter, instead + accepting an `f32` value. ### Fixed @@ -45,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 but also fixes `Stack`, `Grid`, and `WidgetRef` to automatically remount as needed. + [158]: https://github.com/khonsulabs/cushy/issues/158 ### Added