diff --git a/CHANGELOG.md b/CHANGELOG.md index 26f6e28b..db83aa3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,82 @@ # Change Log +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 2024-10-02 + +### Changes + +--- + +Packages with breaking changes: + + - [`thermion_dart` - `v0.2.0-dev.8.0.0`](#thermion_dart---v020-dev800) + - [`thermion_flutter_ffi` - `v0.2.0-dev.8.0.0`](#thermion_flutter_ffi---v020-dev800) + +Packages with other changes: + + - [`thermion_flutter` - `v0.2.0-dev.8.0.0`](#thermion_flutter---v020-dev800) + - [`thermion_flutter_platform_interface` - `v0.2.0-dev.8.0.0`](#thermion_flutter_platform_interface---v020-dev800) + - [`thermion_flutter_web` - `v0.1.0-dev.8.0.0`](#thermion_flutter_web---v010-dev800) + +Packages with dependency updates only: + +> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project. + + - `thermion_flutter_web` - `v0.1.0-dev.8.0.0` + +--- + +#### `thermion_dart` - `v0.2.0-dev.8.0.0` + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: camera and resizing improvements. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: use imported texture on iOS. + - **FEAT**: working implementation of multiple widgets on macos. + - **FEAT**: more work on multiple views/swapchains. + - **FEAT**: add setParameterFloat2 method. + - **FEAT**: add setParameterFloat2 method. + - **FEAT**: add uvScale to unlit material. + - **FEAT**: add ThirdPersonCameraDelegate. + - **FEAT**: set camera model matrix directly. + - **FEAT**: expose more camera methods. + - **BREAKING** **REFACTOR**: refactor to support multiple Views/Render Targets. + - **BREAKING** **REFACTOR**: remove RenderThread methods no longer needed. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FEAT**: big refactor to support multiple swapchains. + - **BREAKING** **FEAT**: set baseColorIndex to -1 by default in unlit materialss. + +#### `thermion_flutter_ffi` - `v0.2.0-dev.8.0.0` + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: use imported texture on iOS. + - **FEAT**: working implementation of multiple widgets on macos. + - **BREAKING** **REFACTOR**: refactor to support multiple Views/Render Targets. + - **BREAKING** **FEAT**: big refactor to support multiple swapchains. + +#### `thermion_flutter` - `v0.2.0-dev.8.0.0` + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: camera and resizing improvements. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: use imported texture on iOS. + - **FEAT**: working implementation of multiple widgets on macos. + - **FEAT**: add rendering check to ThermionWidget ticker. + +#### `thermion_flutter_platform_interface` - `v0.2.0-dev.8.0.0` + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: working implementation of multiple widgets on macos. + +# Change Log + v0.2.0 - **BREAKING** Dart SDK 3.6.0 required diff --git a/thermion_dart/CHANGELOG.md b/thermion_dart/CHANGELOG.md index a163d845..ed2fc099 100644 --- a/thermion_dart/CHANGELOG.md +++ b/thermion_dart/CHANGELOG.md @@ -1,3 +1,28 @@ +## 0.2.0-dev.8.0.0 + +> Note: This release has breaking changes. + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: camera and resizing improvements. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: use imported texture on iOS. + - **FEAT**: working implementation of multiple widgets on macos. + - **FEAT**: more work on multiple views/swapchains. + - **FEAT**: add setParameterFloat2 method. + - **FEAT**: add setParameterFloat2 method. + - **FEAT**: add uvScale to unlit material. + - **FEAT**: add ThirdPersonCameraDelegate. + - **FEAT**: set camera model matrix directly. + - **FEAT**: expose more camera methods. + - **BREAKING** **REFACTOR**: refactor to support multiple Views/Render Targets. + - **BREAKING** **REFACTOR**: remove RenderThread methods no longer needed. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FIX**: replace queuePosition/Rotation with queueTransforms. + - **BREAKING** **FEAT**: big refactor to support multiple swapchains. + - **BREAKING** **FEAT**: set baseColorIndex to -1 by default in unlit materialss. + ## 0.2.0-dev.7.0 > Note: This release has breaking changes. diff --git a/thermion_dart/pubspec.yaml b/thermion_dart/pubspec.yaml index afe0142b..b1237476 100644 --- a/thermion_dart/pubspec.yaml +++ b/thermion_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: thermion_dart description: 3D rendering toolkit for Dart. -version: 0.2.0-dev.7.0 +version: 0.2.0-dev.8.0.0 homepage: https://thermion.dev repository: https://github.com/nmfisher/thermion diff --git a/thermion_flutter/thermion_flutter/CHANGELOG.md b/thermion_flutter/thermion_flutter/CHANGELOG.md index a53788d0..14067586 100644 --- a/thermion_flutter/thermion_flutter/CHANGELOG.md +++ b/thermion_flutter/thermion_flutter/CHANGELOG.md @@ -1,3 +1,12 @@ +## 0.2.0-dev.8.0.0 + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: camera and resizing improvements. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: use imported texture on iOS. + - **FEAT**: working implementation of multiple widgets on macos. + - **FEAT**: add rendering check to ThermionWidget ticker. + ## 0.2.0-dev.7.0 - Update a dependency to the latest release. diff --git a/thermion_flutter/thermion_flutter/pubspec.yaml b/thermion_flutter/thermion_flutter/pubspec.yaml index 758a0196..533f199c 100644 --- a/thermion_flutter/thermion_flutter/pubspec.yaml +++ b/thermion_flutter/thermion_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: thermion_flutter description: Flutter plugin for 3D rendering with the Thermion toolkit. -version: 0.2.0-dev.7.0 +version: 0.2.0-dev.8.0.0 homepage: https://thermion.dev repository: https://github.com/nmfisher/thermion @@ -17,10 +17,10 @@ dependencies: plugin_platform_interface: ^2.0.0 ffi: ^2.1.2 animation_tools_dart: ^0.0.4 - thermion_dart: ^0.2.0-dev.7.0 - thermion_flutter_platform_interface: ^0.2.0-dev.7.0 - thermion_flutter_ffi: ^0.2.0-dev.7.0 - thermion_flutter_web: ^0.1.0-dev.7.0 + thermion_dart: ^0.2.0-dev.8.0.0 + thermion_flutter_platform_interface: ^0.2.0-dev.8.0.0 + thermion_flutter_ffi: ^0.2.0-dev.8.0.0 + thermion_flutter_web: ^0.1.0-dev.8.0.0 logging: ^1.2.0 web: ^1.0.0 diff --git a/thermion_flutter/thermion_flutter_ffi/CHANGELOG.md b/thermion_flutter/thermion_flutter_ffi/CHANGELOG.md index abc718e9..65c92586 100644 --- a/thermion_flutter/thermion_flutter_ffi/CHANGELOG.md +++ b/thermion_flutter/thermion_flutter_ffi/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.2.0-dev.8.0.0 + +> Note: This release has breaking changes. + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: use imported texture on iOS. + - **FEAT**: working implementation of multiple widgets on macos. + - **BREAKING** **REFACTOR**: refactor to support multiple Views/Render Targets. + - **BREAKING** **FEAT**: big refactor to support multiple swapchains. + ## 0.2.0-dev.7.0 - Update a dependency to the latest release. diff --git a/thermion_flutter/thermion_flutter_ffi/pubspec.yaml b/thermion_flutter/thermion_flutter_ffi/pubspec.yaml index 8d095e32..51ca519b 100644 --- a/thermion_flutter/thermion_flutter_ffi/pubspec.yaml +++ b/thermion_flutter/thermion_flutter_ffi/pubspec.yaml @@ -1,7 +1,7 @@ name: thermion_flutter_ffi description: An FFI interface for the thermion_flutter plugin (all platforms except web). repository: https://github.com/nmfisher/thermion_flutter/thermion_flutter -version: 0.2.0-dev.7.0 +version: 0.2.0-dev.8.0.0 environment: sdk: ">=3.3.0 <4.0.0" @@ -22,8 +22,8 @@ dependencies: flutter: sdk: flutter plugin_platform_interface: ^2.1.0 - thermion_flutter_platform_interface: ^0.2.0-dev.7.0 - thermion_dart: ^0.2.0-dev.7.0 + thermion_flutter_platform_interface: ^0.2.0-dev.8.0.0 + thermion_dart: ^0.2.0-dev.8.0.0 logging: ^1.2.0 dev_dependencies: diff --git a/thermion_flutter/thermion_flutter_platform_interface/CHANGELOG.md b/thermion_flutter/thermion_flutter_platform_interface/CHANGELOG.md index 394503e2..4445f13d 100644 --- a/thermion_flutter/thermion_flutter_platform_interface/CHANGELOG.md +++ b/thermion_flutter/thermion_flutter_platform_interface/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.2.0-dev.8.0.0 + + - **REFACTOR**: continual refactor to support multiple render targets. + - **FEAT**: support multiple ThermionWidget on Android. + - **FEAT**: working implementation of multiple widgets on macos. + ## 0.2.0-dev.7.0 - Update a dependency to the latest release. diff --git a/thermion_flutter/thermion_flutter_platform_interface/pubspec.yaml b/thermion_flutter/thermion_flutter_platform_interface/pubspec.yaml index a3228fe7..0dfab7ef 100644 --- a/thermion_flutter/thermion_flutter_platform_interface/pubspec.yaml +++ b/thermion_flutter/thermion_flutter_platform_interface/pubspec.yaml @@ -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.0-dev.7.0 +version: 0.2.0-dev.8.0.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.0-dev.7.0 + thermion_dart: ^0.2.0-dev.8.0.0 dev_dependencies: flutter_test: diff --git a/thermion_flutter/thermion_flutter_web/CHANGELOG.md b/thermion_flutter/thermion_flutter_web/CHANGELOG.md index 6c0597f5..e7a75347 100644 --- a/thermion_flutter/thermion_flutter_web/CHANGELOG.md +++ b/thermion_flutter/thermion_flutter_web/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.0-dev.8.0.0 + + - Update a dependency to the latest release. + ## 0.1.0-dev.7.0 - Update a dependency to the latest release. diff --git a/thermion_flutter/thermion_flutter_web/pubspec.yaml b/thermion_flutter/thermion_flutter_web/pubspec.yaml index 235a5d93..ca592961 100644 --- a/thermion_flutter/thermion_flutter_web/pubspec.yaml +++ b/thermion_flutter/thermion_flutter_web/pubspec.yaml @@ -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.1.0-dev.7.0 +version: 0.1.0-dev.8.0.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.0-dev.7.0 - thermion_flutter_platform_interface: ^0.2.0-dev.7.0 + thermion_dart: ^0.2.0-dev.8.0.0 + thermion_flutter_platform_interface: ^0.2.0-dev.8.0.0 flutter_web_plugins: sdk: flutter