commit 2fbe6b55f8145672c8cd5c01dc3a3db44a826069
parent 6faf2caafe28c02ec18717002952d874deda22d3
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 19 Nov 2020 18:58:30 +0100
Merge branch 'release_0.6' into develop
Diffstat:
2 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -59,6 +59,27 @@ informations on CMake.
## Release notes
+### Version 0.6
+
+#### New features
+
+- Add support of flux map computation for both shortwave and longwave. The flux
+ is computed for the part of the flux map lying outside any geometry. The new
+ command line option `-p` defines the rectangle in the scene onto which the
+ flux is going to be integrated. The flux map resolution and the realisations
+ count per pixel is controlled by the `-i` option.
+- Add support of thin materials, i.e. materials without geometric thickness as
+ for instance the leaves of the trees.
+- Add the temperature property to the materials and used it as the limit
+ condition during longwave computations. Previously, the surface temperatures
+ were fetched from the atmosphere at the given surface position.
+- Add the `-n` option to fix the name of the material defining the atmosphere.
+
+#### Fix
+
+- In shortwave, fix how direct contribution is handled for purely specular
+ BRDF.
+
### Version 0.5.1
- Fix the `undefined strtok_r symbol` issue exhibited by some GCC versions that
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -59,8 +59,8 @@ include_directories(
# Generate files
################################################################################
set(VERSION_MAJOR 0)
-set(VERSION_MINOR 5)
-set(VERSION_PATCH 1)
+set(VERSION_MINOR 6)
+set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(HTRDR_ARGS_DEFAULT_CAMERA_POS "0,0,0")