Noting Easing change

This commit is contained in:
Jonathan Johnson 2024-08-20 12:13:09 -07:00
parent 5f604c41dc
commit 06e9072a23
No known key found for this signature in database
GPG key ID: A66D6A34D6620579

View file

@ -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 - `CushyWindowBuilder` has been renamed to `StandaloneWindowBuilder` and
`MakeWidget::build_virtual_window` has been renamed to `MakeWidget::build_virtual_window` has been renamed to
`build_standalone_window`. `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 ### 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 but also fixes `Stack`, `Grid`, and `WidgetRef` to automatically remount as
needed. needed.
[158]: https://github.com/khonsulabs/cushy/issues/158 [158]: https://github.com/khonsulabs/cushy/issues/158
### Added ### Added