File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## 2.3.1 - 2019-07-14
9+
10+ ### Fixed
11+ - Fixed build configuration bug where resources were not being linked on Linux
12+
813## 2.3.0 - 2019-07-13
914
1015### Added
1116- Added menu bar with option to save simulation result as image
12- - Added slider for setting the probability of double scattering
17+ - Added slider for setting the probability of simple double scattering
1318
1419### Changed
1520- Replaced Add Population and Remove Population texts with icons
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ Here are some general settings for the whole simulation.
4343- ** Double scattering:** Probability of a single light ray to scatter from two
4444 different ice crystals
4545 - Note that this slows down the simulation significantly!
46+ - The current implementation only does double scattering inside one crystal
47+ population
4648 - A value of 0.0 means no rays are scattered twice, and 1.0 means all rays
4749 are scattered twice
4850
Original file line number Diff line number Diff line change 1- version : ' 2.3.0 -{build}'
1+ version : ' 2.3.1 -{build}'
22branches :
33 only :
44 - master
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ set(RESOURCE_FILES resources/haloray.qrc resources/haloray.rc)
3232IF (WIN32 )
3333 add_executable (haloray WIN32 ${HALORAY_SOURCES} ${RESOURCE_FILES} )
3434ELSE ()
35- add_executable (haloray ${HALORAY_SOURCES} )
35+ add_executable (haloray ${HALORAY_SOURCES} ${RESOURCE_FILES} )
3636ENDIF ()
3737
3838target_link_libraries (haloray Qt5::Core Qt5::Widgets Qt5::Gui)
You can’t perform that action at this time.
0 commit comments