chore(release): publish packages
- thermion_dart@0.3.0 - thermion_flutter@0.3.0 - thermion_flutter_method_channel@0.3.0 - thermion_flutter_web@0.3.0 - thermion_flutter_platform_interface@0.3.0
This commit is contained in:
@@ -1,3 +1,15 @@
|
||||
## 0.3.0
|
||||
|
||||
> Note: This release has breaking changes.
|
||||
|
||||
- **REFACTOR**: rename ThermionFlutterTexture->PlatformTextureDescriptor.
|
||||
- **FIX**: rename msPerFrame property.
|
||||
- **FEAT**: add FocusNode to ThermionListenerWidget.
|
||||
- **FEAT**: use new createTextureAndBindToView in ThermionTextureWidget.
|
||||
- **BREAKING** **REFACTOR**: move light methods from FilamentViewer to SceneManager/TLightManager and rename clearLights/clearAssets to destroyLights/destroyAssets.
|
||||
- **BREAKING** **FEAT**: remove superseded ThermionWindows widget.
|
||||
- **BREAKING** **FEAT**: rename thermion_flutter_ffi package to thermion_flutter_method_channel.
|
||||
|
||||
## 0.2.1-dev.20.0
|
||||
|
||||
- Bump "thermion_flutter" to `0.2.1-dev.20.0`.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: thermion_flutter
|
||||
description: Flutter plugin for 3D rendering with the Thermion toolkit.
|
||||
version: 0.2.1-dev.20.0
|
||||
version: 0.3.0
|
||||
homepage: https://thermion.dev
|
||||
repository: https://github.com/nmfisher/thermion
|
||||
|
||||
@@ -17,11 +17,11 @@ dependencies:
|
||||
plugin_platform_interface: ^2.0.0
|
||||
ffi: ^2.1.2
|
||||
animation_tools_dart: ^0.1.0
|
||||
thermion_dart: ^0.2.1-dev.20.0
|
||||
thermion_flutter_platform_interface: ^0.2.1-dev.20.0
|
||||
thermion_dart: ^0.3.0
|
||||
thermion_flutter_platform_interface: ^0.3.0
|
||||
thermion_flutter_method_channel:
|
||||
path: ../thermion_flutter_method_channel
|
||||
thermion_flutter_web: ^0.2.0+11
|
||||
thermion_flutter_web: ^0.3.0
|
||||
logging: ^1.2.0
|
||||
web: ^1.0.0
|
||||
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
## 0.3.0
|
||||
|
||||
> Note: This release has breaking changes.
|
||||
|
||||
- **REFACTOR**: rename ThermionFlutterTexture->PlatformTextureDescriptor.
|
||||
- **BREAKING** **FEAT**: rename thermion_flutter_ffi package to thermion_flutter_method_channel.
|
||||
|
||||
## 0.2.1-dev.20.0
|
||||
|
||||
- Bump "thermion_flutter_ffi" to `0.2.1-dev.20.0`.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
name: thermion_flutter_method_channel
|
||||
description: Desktop + mobile implementation for texture creation + registration with Flutter.
|
||||
repository: https://github.com/nmfisher/thermion_flutter/thermion_flutter
|
||||
version: 0.2.1-dev.20.0
|
||||
version: 0.3.0
|
||||
|
||||
environment:
|
||||
sdk: ">=3.3.0 <4.0.0"
|
||||
@@ -23,8 +23,8 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
thermion_flutter_platform_interface: ^0.2.1-dev.20.0
|
||||
thermion_dart: ^0.2.1-dev.20.0
|
||||
thermion_flutter_platform_interface: ^0.3.0
|
||||
thermion_dart: ^0.3.0
|
||||
logging: ^1.2.0
|
||||
dependency_overrides:
|
||||
thermion_dart:
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
## 0.3.0
|
||||
|
||||
- **REFACTOR**: rename ThermionFlutterTexture->PlatformTextureDescriptor.
|
||||
- **FEAT**: create separate createTexture and createTextureAndBindToView interface methods.
|
||||
|
||||
## 0.2.1-dev.20.0
|
||||
|
||||
- Bump "thermion_flutter_platform_interface" to `0.2.1-dev.20.0`.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
name: thermion_flutter_platform_interface
|
||||
description: A common platform interface for the thermion_flutter plugin.
|
||||
repository: https://github.com/nmfisher/thermion_flutter/thermion_flutter
|
||||
version: 0.2.1-dev.20.0
|
||||
version: 0.3.0
|
||||
|
||||
environment:
|
||||
sdk: ">=3.3.0 <4.0.0"
|
||||
@@ -11,7 +11,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
thermion_dart: ^0.2.1-dev.20.0
|
||||
thermion_dart: ^0.3.0
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 0.3.0
|
||||
|
||||
- **REFACTOR**: rename ThermionFlutterTexture->PlatformTextureDescriptor.
|
||||
|
||||
## 0.2.0+11
|
||||
|
||||
- Update a dependency to the latest release.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
name: thermion_flutter_web
|
||||
description: A web platform interface for the thermion_flutter plugin.
|
||||
repository: https://github.com/nmfisher/thermion_flutter/thermion_flutter
|
||||
version: 0.2.0+11
|
||||
version: 0.3.0
|
||||
|
||||
environment:
|
||||
sdk: ">=3.3.0 <4.0.0"
|
||||
@@ -20,8 +20,8 @@ dependencies:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
web: ^1.0.0
|
||||
thermion_dart: ^0.2.1-dev.20.0
|
||||
thermion_flutter_platform_interface: ^0.2.1-dev.20.0
|
||||
thermion_dart: ^0.3.0
|
||||
thermion_flutter_platform_interface: ^0.3.0
|
||||
flutter_web_plugins:
|
||||
sdk: flutter
|
||||
dependency_overrides:
|
||||
|
||||
Reference in New Issue
Block a user