mirror of
				https://github.com/rive-app/rive-flutter.git
				synced 2025-11-04 22:49:15 +08:00 
			
		
		
		
	chore: release flutter 0.13.12
Fixes: https://github.com/rive-app/rive-flutter/issues/410 Diffs= 462725b07 chore: release flutter 0.13.12 (#7693) 1c067cba8 Implement layout scale type in CPP runtime (#7665) Co-authored-by: Gordon <pggordonhayes@gmail.com>
This commit is contained in:
		@ -1 +1 @@
 | 
				
			|||||||
e5920f4a03339ac7c3b12ce2287404b7ed38687c
 | 
					462725b0766c65fe6b69530e86cd0de46a8795b3
 | 
				
			||||||
 | 
				
			|||||||
@ -1,3 +1,7 @@
 | 
				
			|||||||
 | 
					## 0.13.12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Fix [410](https://github.com/rive-app/rive-flutter/issues/410) Rive not compatible with Flutter web.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 0.13.11
 | 
					## 0.13.11
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Add `applyWorkaroundToRiveOnOldAndroidVersions`. Experimental workaround when loading native libraries on Android 6 (see [this issue](https://github.com/rive-app/rive-flutter/issues/403)). The method should be called before using any Rive APIs.
 | 
					- Add `applyWorkaroundToRiveOnOldAndroidVersions`. Experimental workaround when loading native libraries on Android 6 (see [this issue](https://github.com/rive-app/rive-flutter/issues/403)). The method should be called before using any Rive APIs.
 | 
				
			||||||
 | 
				
			|||||||
@ -46,5 +46,6 @@ export 'package:rive/src/runtime_event.dart';
 | 
				
			|||||||
export 'package:rive/src/runtime_mounted_artboard.dart';
 | 
					export 'package:rive/src/runtime_mounted_artboard.dart';
 | 
				
			||||||
export 'package:rive/src/runtime_nested_artboard.dart';
 | 
					export 'package:rive/src/runtime_nested_artboard.dart';
 | 
				
			||||||
export 'package:rive/src/widgets/rive_animation.dart';
 | 
					export 'package:rive/src/widgets/rive_animation.dart';
 | 
				
			||||||
export 'package:rive_common/src/dynamic_library_helper.dart'
 | 
					export 'src/dynamic_library_helper/dynamic_library_helper_stub.dart'
 | 
				
			||||||
    show applyWorkaroundToRiveOnOldAndroidVersions;
 | 
					    if (dart.library.js_interop) 'src/dynamic_library_helper/dynamic_library_helper_web.dart'
 | 
				
			||||||
 | 
					    if (dart.library.ffi) 'src/dynamic_library_helper/dynamic_library_helper_ffi.dart';
 | 
				
			||||||
 | 
				
			|||||||
@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					export 'package:rive_common/src/dynamic_library_helper.dart'
 | 
				
			||||||
 | 
					    show applyWorkaroundToRiveOnOldAndroidVersions;
 | 
				
			||||||
@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					void applyWorkaroundToRiveOnOldAndroidVersions() {
 | 
				
			||||||
 | 
					  throw UnsupportedError('Platform not supported');
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					// Mock implementation for web
 | 
				
			||||||
 | 
					void applyWorkaroundToRiveOnOldAndroidVersions() {}
 | 
				
			||||||
@ -49,6 +49,7 @@ class DataBind extends DataBindBase {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @override
 | 
					  @override
 | 
				
			||||||
 | 
					  // ignore: override_on_non_overriding_member
 | 
				
			||||||
  void targetIdChanged(int from, int to) {
 | 
					  void targetIdChanged(int from, int to) {
 | 
				
			||||||
    // TODO: @hernan implement nameChanged
 | 
					    // TODO: @hernan implement nameChanged
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
name: rive
 | 
					name: rive
 | 
				
			||||||
version: 0.13.11
 | 
					version: 0.13.12
 | 
				
			||||||
homepage: https://rive.app
 | 
					homepage: https://rive.app
 | 
				
			||||||
description: Rive 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 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
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,5 @@
 | 
				
			|||||||
import 'package:flutter_test/flutter_test.dart';
 | 
					import 'package:flutter_test/flutter_test.dart';
 | 
				
			||||||
import 'package:rive/rive.dart';
 | 
					import 'package:rive/rive.dart';
 | 
				
			||||||
import 'package:rive/src/rive_core/shapes/image.dart';
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
import 'src/utils.dart';
 | 
					import 'src/utils.dart';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user