commit 5291d5a2bc147bceb3ca34c6afef786a0c0f5ec3
parent 46953b096214b6c9bf604192c671ceb104d611ab
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 18 Apr 2018 16:06:49 +0200
Merge branch 'release_0.3' into develop
Diffstat:
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -23,6 +23,22 @@ variable the install directories of its dependencies.
## Release notes
+### Version 0.3
+
+- Some interface properties become double sided: the temperature, emissivity
+ and specular fraction is defined for each side of the interface. Actually,
+ only the convection coefficient is shared by the 2 sides of the interface.
+ The per side interface properties are grouped into the new `struct
+ sdis_interface_side_shader` data structure.
+- Add the support of fixed flux: the flux is per side interface property.
+ Currently, the flux can be fixed only for the interface sides facing a solid
+ medium.
+- Update the default comportment of the interface shader when a function is not
+ set.
+- Rename the `SDIS_MEDIUM_<FLUID|SOLID>` constants in `SDIS_<FLUID|SOLID>`.
+- Rename the `enum sdis_side_flag` enumerate in `enum sdis_side` and update its
+ values.
+
### Version 0.2
- Add the support of volumic power to solid media: add the `volumic_power`
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -40,7 +40,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys Star3D StarSP)
# Configure and define targets
################################################################################
set(VERSION_MAJOR 0)
-set(VERSION_MINOR 2)
+set(VERSION_MINOR 3)
set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})