prepping flutter runtime release

just prepping for a rive-flutter runtime release

Diffs=
ea255ef1b prepping flutter runtime release (#4994)
6e95e7e1f fix up the viewer to progress time even when we miss a frame or two (#4912)
b90ac530a Decompose accounts for 0 scale, adds test. (#4975)
This commit is contained in:
mjtalbot
2023-03-13 19:19:49 +00:00
parent fbe1850620
commit ae4f4e71dd
4 changed files with 8 additions and 7 deletions

View File

@ -1 +1 @@
2504d2ab24d258621fc89a0120c794f2b53a2ffc ea255ef1b40c203f3aaf3a84da5698e2987b7ac4

View File

@ -1,3 +1,9 @@
## 0.10.3
- Fixes animations with negative speed to play from the end with ping pong and one shot animations.
- Update runtime to consider speed on animation states when playing state machines.
- Fix edge case with spilled time, by clearing spilled time after an advance cycle.
## 0.10.2 ## 0.10.2
- Performance improvement: No longer drawing components with an opacity of 0. - Performance improvement: No longer drawing components with an opacity of 0.

View File

@ -578,9 +578,4 @@ class Artboard extends ArtboardBase with ShapePaintContainer {
void defaultStateMachineIdChanged(int from, int to) { void defaultStateMachineIdChanged(int from, int to) {
defaultStateMachine = to == Core.missingId ? null : context.resolve(to); defaultStateMachine = to == Core.missingId ? null : context.resolve(to);
} }
@override
void selectedAnimationsChanged(List<int> from, List<int> to) {
// If the selection is different, we might have a different Editing Animation
}
} }

View File

@ -1,5 +1,5 @@
name: rive name: rive
version: 0.10.2 version: 0.10.3
homepage: https://rive.app homepage: https://rive.app
description: Rive 2 Flutter Runtime. This package provides runtime functionality for playing back and interacting with animations built with the Rive editor available at https://rive.app. description: Rive 2 Flutter Runtime. This package provides runtime functionality for playing back and interacting with animations built with the Rive editor available at https://rive.app.
repository: https://github.com/rive-app/rive-flutter repository: https://github.com/rive-app/rive-flutter