diff --git a/CHANGELOG.md b/CHANGELOG.md index 2948ee8a..e745e0dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Change Log -- Ray Tracing in One Weekend ==================================================================================================== +# v3.2.3 (2020-12-07) + +### Common + - Change: Markdeep library URL updated to new location + +### The Next Week + - Fix: Correct parameter name typo for `bvh_node` constructor parameter `src_objects` + + +---------------------------------------------------------------------------------------------------- # v3.2.2 (2020-10-31) ### Common diff --git a/README.md b/README.md index 4fcf0193..2a48605c 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,14 @@ versions, use the print function in your browser. Project Status --------------- -Hot on the heels of [v3.2.1][], we have a special Halloween release, [v3.2.2][], less than four -weeks later. After this, we're going to hunker down for a while, working on our next major release: -v4.0.0. We'll be tackling some larger refactorings to further simplify the code, tackle some large -outstanding issues, and focus on more development of book 3: _Ray Tracing: The Rest of Your Life_. +We just shipped a tiny release, [v3.2.3][], to get out two quick small fixes. Mostly we're very +heads-down right now working on our major v4 release. Lots of changes. If you'd like to check it +out, we're developing on the `dev-major` branch. We're tackling some larger refactorings to further +simplify the code, address some large outstanding issues, and focus on more development and +expansion of book 3: _Ray Tracing: The Rest of Your Life_. -If you have a change you'd like to contribute, [please see our contribution -guidelines][CONTRIBUTING]. +If you have a change you'd like to contribute, +[please see our contribution guidelines][CONTRIBUTING]. Directory Structure @@ -157,8 +158,7 @@ review the [CONTRIBUTING][] document for the most effective way to proceed. [GitHub home]: https://github.com/RayTracing/raytracing.github.io/ [ImageMagick]: https://imagemagick.org/ [implementations]: https://github.com/RayTracing/raytracing.github.io/wiki/Implementations -[v3.2.1]: https://github.com/RayTracing/raytracing.github.io/releases/tag/v3.2.1 -[v3.2.2]: https://github.com/RayTracing/raytracing.github.io/releases/tag/v3.2.2 +[v3.2.3]: https://github.com/RayTracing/raytracing.github.io/releases/tag/v3.2.3 [web1]: https://raytracing.github.io/books/RayTracingInOneWeekend.html [web2]: https://raytracing.github.io/books/RayTracingTheNextWeek.html [web3]: https://raytracing.github.io/books/RayTracingTheRestOfYourLife.html diff --git a/books/RayTracingInOneWeekend.html b/books/RayTracingInOneWeekend.html index 3dcd45f6..bee9fac1 100644 --- a/books/RayTracingInOneWeekend.html +++ b/books/RayTracingInOneWeekend.html @@ -7,7 +7,7 @@ [Peter Shirley][] edited by [Steve Hollasch][] and [Trevor David Black][]
- Version 3.2.2, 2020-10-31 + Version 3.2.3, 2020-12-07
Copyright 2018-2020 Peter Shirley. All rights reserved. @@ -3176,8 +3176,8 @@ - **Title (book)**: “Ray Tracing in One Weekend” - **Author**: Peter Shirley - **Editors**: Steve Hollasch, Trevor David Black - - **Version/Edition**: v3.2.2 - - **Date**: 2020-10-31 + - **Version/Edition**: v3.2.3 + - **Date**: 2020-12-07 - **URL (series)**: https://raytracing.github.io/ - **URL (book)**: https://raytracing.github.io/books/RayTracingInOneWeekend.html @@ -3204,7 +3204,7 @@ title = {Ray Tracing in One Weekend}, author = {Peter Shirley}, year = {2020}, - month = {October}, + month = {December}, note = {\small \texttt{https://raytracing.github.io/books/RayTracingInOneWeekend.html}}, url = {https://raytracing.github.io/books/RayTracingInOneWeekend.html} } @@ -3220,7 +3220,7 @@ title = {Ray Tracing in One Weekend}, author = {Peter Shirley}, year = {2020}, - month = {October} + month = {December} url = {https://raytracing.github.io/books/RayTracingInOneWeekend.html} } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -3249,5 +3249,5 @@ - + diff --git a/books/RayTracingTheNextWeek.html b/books/RayTracingTheNextWeek.html index ba0a9e3c..bc6276c7 100644 --- a/books/RayTracingTheNextWeek.html +++ b/books/RayTracingTheNextWeek.html @@ -7,7 +7,7 @@ [Peter Shirley][] edited by [Steve Hollasch][] and [Trevor David Black][]
- Version 3.2.2, 2020-10-31 + Version 3.2.3, 2020-12-07
Copyright 2018-2020 Peter Shirley. All rights reserved. @@ -973,7 +973,7 @@ ... bvh_node::bvh_node( - std::vector>& objects, + std::vector>& src_objects, size_t start, size_t end, double time0, double time1 ) { auto objects = src_objects; // Create a modifiable array of the source scene objects @@ -3405,8 +3405,8 @@ - **Title (book)**: “Ray Tracing: The Next Week” - **Author**: Peter Shirley - **Editors**: Steve Hollasch, Trevor David Black - - **Version/Edition**: v3.2.2 - - **Date**: 2020-10-31 + - **Version/Edition**: v3.2.3 + - **Date**: 2020-12-07 - **URL (series)**: https://raytracing.github.io/ - **URL (book)**: https://raytracing.github.io/books/RayTracingTheNextWeek.html @@ -3433,7 +3433,7 @@ title = {Ray Tracing: The Next Week}, author = {Peter Shirley}, year = {2020}, - month = {October} + month = {December} note = {\small \texttt{https://raytracing.github.io/books/RayTracingTheNextWeek.html}}, url = {https://raytracing.github.io/books/RayTracingTheNextWeek.html} } @@ -3449,7 +3449,7 @@ title = {Ray Tracing: The Next Week}, author = {Peter Shirley}, year = {2020}, - month = {October} + month = {December} url = {https://raytracing.github.io/books/RayTracingTheNextWeek.html} } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -3479,5 +3479,5 @@ - + diff --git a/books/RayTracingTheRestOfYourLife.html b/books/RayTracingTheRestOfYourLife.html index 85bb7f00..2e0595c1 100644 --- a/books/RayTracingTheRestOfYourLife.html +++ b/books/RayTracingTheRestOfYourLife.html @@ -7,7 +7,7 @@ [Peter Shirley][] edited by [Steve Hollasch][] and [Trevor David Black][]
- Version 3.2.2, 2020-10-31 + Version 3.2.3, 2020-12-07
Copyright 2018-2020 Peter Shirley. All rights reserved. @@ -2561,8 +2561,8 @@ - **Title (book)**: “Ray Tracing: The Rest of Your Life” - **Author**: Peter Shirley - **Editors**: Steve Hollasch, Trevor David Black - - **Version/Edition**: v3.2.2 - - **Date**: 2020-10-31 + - **Version/Edition**: v3.2.3 + - **Date**: 2020-12-07 - **URL (series)**: https://raytracing.github.io/ - **URL (book)**: https://raytracing.github.io/books/RayTracingTheRestOfYourLife.html @@ -2589,7 +2589,7 @@ title = {Ray Tracing: The Rest of Your Life}, author = {Peter Shirley}, year = {2020}, - month = {October} + month = {December} note = {\small \texttt{https://raytracing.github.io/books/RayTracingTheRestOfYourLife.html}}, url = {https://raytracing.github.io/books/RayTracingTheRestOfYourLife.html} } @@ -2605,7 +2605,7 @@ title = {Ray Tracing: The Rest of Your Life}, author = {Peter Shirley}, year = {2020}, - month = {October} + month = {December} url = {https://raytracing.github.io/books/RayTracingTheRestOfYourLife.html} } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -2634,5 +2634,5 @@ - + diff --git a/books/acknowledgments.md.html b/books/acknowledgments.md.html index 35f02e32..52fbb75c 100644 --- a/books/acknowledgments.md.html +++ b/books/acknowledgments.md.html @@ -82,5 +82,5 @@ - +