commit 3ba47f5d132e39de80b3493a3679f59da7b87056 parent ddafaf26ea93791d949164061091bd41bd96cc4e Author: Vincent Forest <vincent.forest@meso-star.com> Date: Fri, 5 Jun 2020 11:50:29 +0200 Merge branch 'release_0.4' into develop Diffstat:
| M | README.md | | | 9 | +++++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -29,6 +29,15 @@ informations on CMake. ## Release notes +### Version 0.4 + +- Add the `gnuplot` parameter to the `-m` option. Once set, the result image is + written as a gnuplot script rather than a PPM image. This script generates a + PNG image with an embedded color ramp. +- Fix the tone map operator: the exposure term is now also applied to the white + radiance to ensure that it effectively corresponds to the white color in the + output image. + ### Version 0.3 - Add the `-i` option that regroups all the options controlling the diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -37,7 +37,7 @@ include_directories(${RSys_INCLUDE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) # Configure and define targets ################################################################################ set(VERSION_MAJOR 0) -set(VERSION_MINOR 3) +set(VERSION_MINOR 4) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})