commit c633e57816b67c83c2aeb740528217206fb6886a
parent 9413ef8d9f92662c0932eeb5d7010836295b1323
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Sat, 16 Sep 2017 15:31:25 +0200
Merge branch 'release_0.4' into develop
Diffstat:
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -60,6 +60,14 @@ informations on CMake.
## Release notes
+### Version 0.4
+
+- Update the color of the paths outputted with the `-p` option. A path is blue,
+ turquoise or yellow if it reaches a receiver, misses the receivers or is
+ occluded before it reaches a primary reflector, respectively.
+- Add a new type of paths tracked with the `-p` option: a path is red if it
+ travels unforeseen mediums.
+
### Version 0.3
- Fix several issues in the output results. Refer to the Solsice-Solver 0.3
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -45,7 +45,7 @@ find_package(LibYAML REQUIRED)
find_package(RCMake 0.2.3 REQUIRED)
find_package(RSys 0.4 REQUIRED)
find_package(SolAnim 0.1 REQUIRED)
-find_package(SolSolver 0.3 REQUIRED)
+find_package(SolSolver 0.4 REQUIRED)
find_package(Star3DUT 0.2 REQUIRED)
find_package(StarSP 0.4 REQUIRED)
find_package(StarSTL 0.3.1 REQUIRED)
@@ -96,7 +96,7 @@ configure_file(${SOLSTICE_SOURCE_DIR}/../doc/solstice.1.txt.in
${CMAKE_CURRENT_BINARY_DIR}/doc/solstice.1.txt @ONLY)
set(VERSION_MAJOR 0)
-set(VERSION_MINOR 3)
+set(VERSION_MINOR 4)
set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})