Commit b1dac931 authored by justin's avatar justin

Release a new version

parent 7fb8b435
## 1.12.13
Supported Flutter sdk 1.12.13
## 1.9.1+2 ## 1.9.1+2
Rename the version number and start supporting androidx by default, Based on the flutter 1.9.1 - hotfixs。 Rename the version number and start supporting androidx by default, Based on the flutter 1.9.1 - hotfixs。
......
...@@ -30,6 +30,9 @@ You need to add Flutter to your project before moving on.The version of the flut ...@@ -30,6 +30,9 @@ You need to add Flutter to your project before moving on.The version of the flut
| 0.1.61-0.1.69 | 1.9.1-hotfixes | bugfix for 0.1.60. | No | | 0.1.61-0.1.69 | 1.9.1-hotfixes | bugfix for 0.1.60. | No |
| 0.1.63 | 1.9.1-hotfixes | If other branches will compile incorrectly. Synchronize with the 0.1.60 code, and bugfix also merge to this branch. | No | | 0.1.63 | 1.9.1-hotfixes | If other branches will compile incorrectly. Synchronize with the 0.1.60 code, and bugfix also merge to this branch. | No |
| 1.9.1+2 | 1.9.1-hotfixes | Rename the version number and start supporting androidx by default | Yes | | 1.9.1+2 | 1.9.1-hotfixes | Rename the version number and start supporting androidx by default | Yes |
| 1.12.13 | 1.12.13-hotfixes | supporting androidx | Yes |
...@@ -53,14 +56,14 @@ androidx branch ...@@ -53,14 +56,14 @@ androidx branch
flutter_boost: flutter_boost:
git: git:
url: 'https://github.com/alibaba/flutter_boost.git' url: 'https://github.com/alibaba/flutter_boost.git'
ref: ' 1.9.1+2' ref: ' 1.12.13'
``` ```
support branch support branch
```json ```json
flutter_boost: flutter_boost:
git: git:
url: 'https://github.com/alibaba/flutter_boost.git' url: 'https://github.com/alibaba/flutter_boost.git'
ref: 'task/task_v1.9.1_support_hotfixes' ref: 'task/task_v1.12.13_support_hotfixes'
``` ```
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
| 0.1.63 | 1.9.1-hotfixes | 和 0.1.60 代码同步, bugfix 也会合入该分支,如果其他分支会编译错误。 | No | | 0.1.63 | 1.9.1-hotfixes | 和 0.1.60 代码同步, bugfix 也会合入该分支,如果其他分支会编译错误。 | No |
| 0.1.61-0.1.69 | 1.9.1-hotfixes | 0.1.60 的 bugfix。 | No | | 0.1.61-0.1.69 | 1.9.1-hotfixes | 0.1.60 的 bugfix。 | No |
| 1.9.1+2 | 1.9.1-hotfixes | 版本号重新命名,开始默认支持androidx | Yes | | 1.9.1+2 | 1.9.1-hotfixes | 版本号重新命名,开始默认支持androidx | Yes |
| 1.12.13 | 1.12.13 -hotfixes | 支持androidx | Yes |
...@@ -55,14 +56,15 @@ androidx branch ...@@ -55,14 +56,15 @@ androidx branch
flutter_boost: flutter_boost:
git: git:
url: 'https://github.com/alibaba/flutter_boost.git' url: 'https://github.com/alibaba/flutter_boost.git'
ref: ' 1.9.1+2' ref: '1.12.13'
``` ```
support branch support branch
```json ```json
flutter_boost: flutter_boost:
git: git:
url: 'https://github.com/alibaba/flutter_boost.git' url: 'https://github.com/alibaba/flutter_boost.git'
ref: 'task/task_v1.9.1_support_hotfixes' ref: 'task/task_v1.12.13_support_hotfixes'
``` ```
......
...@@ -100,13 +100,13 @@ class BoostContainer extends Navigator { ...@@ -100,13 +100,13 @@ class BoostContainer extends Navigator {
static BoostContainerState tryOf(BuildContext context) { static BoostContainerState tryOf(BuildContext context) {
final BoostContainerState container = final BoostContainerState container =
context.ancestorStateOfType(const TypeMatcher<BoostContainerState>()); context.findAncestorStateOfType<BoostContainerState>();
return container; return container;
} }
static BoostContainerState of(BuildContext context) { static BoostContainerState of(BuildContext context) {
final BoostContainerState container = final BoostContainerState container =
context.ancestorStateOfType(const TypeMatcher<BoostContainerState>()); context.findAncestorStateOfType<BoostContainerState>();
assert(container != null, 'not in flutter boost'); assert(container != null, 'not in flutter boost');
return container; return container;
} }
......
...@@ -270,7 +270,7 @@ class ContainerCoordinator { ...@@ -270,7 +270,7 @@ class ContainerCoordinator {
performContainerLifeCycle(_createContainerSettings(name, params, pageId), performContainerLifeCycle(_createContainerSettings(name, params, pageId),
ContainerLifeCycle.Destroy); ContainerLifeCycle.Destroy);
} catch (e) { } catch (e) {
Logger.log('nativeContainerWillDealloc error: ${e}'); Logger.log('nativeContainerWillDealloc error: $e');
} }
FlutterBoost.containerManager?.remove(pageId); FlutterBoost.containerManager?.remove(pageId);
......
...@@ -47,13 +47,13 @@ class BoostContainerManager extends StatefulWidget { ...@@ -47,13 +47,13 @@ class BoostContainerManager extends StatefulWidget {
static ContainerManagerState tryOf(BuildContext context) { static ContainerManagerState tryOf(BuildContext context) {
final ContainerManagerState manager = final ContainerManagerState manager =
context.ancestorStateOfType(const TypeMatcher<ContainerManagerState>()); context.findAncestorStateOfType<ContainerManagerState>();
return manager; return manager;
} }
static ContainerManagerState of(BuildContext context) { static ContainerManagerState of(BuildContext context) {
final ContainerManagerState manager = final ContainerManagerState manager =
context.ancestorStateOfType(const TypeMatcher<ContainerManagerState>()); context.findAncestorStateOfType<ContainerManagerState>();
assert(manager != null, 'not in flutter boost'); assert(manager != null, 'not in flutter boost');
return manager; return manager;
} }
......
name: flutter_boost name: flutter_boost
description: A next-generation Flutter-Native hybrid solution. FlutterBoost is a Flutter plugin which enables hybrid integration of Flutter for your existing native apps with minimum efforts. description: A next-generation Flutter-Native hybrid solution. FlutterBoost is a Flutter plugin which enables hybrid integration of Flutter for your existing native apps with minimum efforts.
version: 1.9.1+2 version: 1.12.13
author: Alibaba Xianyu author: Alibaba Xianyu
homepage: https://github.com/alibaba/flutter_boost homepage: https://github.com/alibaba/flutter_boost
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment