Skip to content

Commit 0a5be53

Browse files
committed
Merge branch 'release/2.3.1'
2 parents c80ddb0 + 1b984b0 commit 0a5be53

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '2.3.0-{build}'
1+
version: '2.3.1-{build}'
22
branches:
33
only:
44
- master

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ set(RESOURCE_FILES resources/haloray.qrc resources/haloray.rc)
3232
IF (WIN32)
3333
add_executable(haloray WIN32 ${HALORAY_SOURCES} ${RESOURCE_FILES})
3434
ELSE()
35-
add_executable(haloray ${HALORAY_SOURCES})
35+
add_executable(haloray ${HALORAY_SOURCES} ${RESOURCE_FILES})
3636
ENDIF()
3737

3838
target_link_libraries(haloray Qt5::Core Qt5::Widgets Qt5::Gui)

0 commit comments

Comments
 (0)