From 26bd882ee02c01ef626371c14ff1bca387198242 Mon Sep 17 00:00:00 2001 From: bsavery Date: Fri, 20 Dec 2019 14:06:34 -0800 Subject: [PATCH] Adding release notes. (#211) * Create CHANGELOG.MD * update changelog and readme * Update CHANGELOG.MD * Update Version.cmake --- CHANGELOG.MD | 34 ++++++++++++++++++++++++++++++++++ README.md | 6 +++--- cmake/defaults/Version.cmake | 2 +- 3 files changed, 38 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.MD diff --git a/CHANGELOG.MD b/CHANGELOG.MD new file mode 100644 index 000000000..512baf99a --- /dev/null +++ b/CHANGELOG.MD @@ -0,0 +1,34 @@ +# Change Log +## 1.1 Release +### New features + - Added Centos 7 build + - RPR Render Settings moved to tab in "Render Settings" LOP node for use in Houdini. + - Image Gamma supported for GL textures + - Add support for alpha compositing render output. This allows overlaying on the Houdini background and viewport gizmos + - Support for UsdTransform2D nodes in shading (Only single level, not nested) + - Per object subdivision. Also added a HDA RPR Mesh Properties Node for specifying subdivision level in Houdini + - Support of doublesided meshes + - Support of HdDisplayStyle::displacementEnabled attributes + - Camera FStop, Focal Length, Aperture, Focus Distance and Clipping Range is supported on cameras + - Support for tapered width curves (linear curves only) + - Add debugging environment variable. Set HD_RPR_ERROR_OUTPUT_FILE=some_file.txt to dump USD errors when rendering with hdRPR in Houdini. + + +### Fixes + - Fixed finding Hybrid.so on Ubuntu + - Houdini 18.0.311 changes orientation of Dome lights. Match this corrected behavior, but for users on older versions of Houdini can set HDRPR_INVERT_DOME_LIGHT_Z_AXIS=0 in enviroment variables to get old behavior. + - Hide "Error unsupported" warnings on hybrid modes + - Only Houdini 18 versions are shown in the installer script + - Fixed handling of USDUvTexture scale and bias + - Fixed an issue if an AOV was created but format changed + - Fix compilation warnings on macOS + - Subdivision is automatically enabled on objects with displacement + - Fix crash when releasing displacement nodes + - Render Quality setting is disabled on macOS + - Viewport "Headlight" is now removed when the user adds a light. + + +## 1.0 Release + - Denoiser support + - Full Spectrum Rendering modes on Windows and Ubuntu + - Support for USDPreviewSurface, USD lights, and Volumes \ No newline at end of file diff --git a/README.md b/README.md index 83e699b23..29a3c4c05 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ Build using cmake. | Dependency Name | Description | Version | | ------------------ |----------------------------------------------------------------------- | ------- | -| RPR_LOCATION | Radeon Pro Render directory with include and lib dirs | 1.3.20 or higher | +| RPR_LOCATION | Radeon Pro Render directory with include and lib dirs | 1.34.5 or higher | ##### Radeon Image Filters | Dependency Name | Description | Version | | ------------------ |----------------------------------------------------------------------- | ------- | -| RIF_LOCATION | Radeon Image Filter Library directory with include and lib dirs | 1.2.0 or higher | +| RIF_LOCATION | Radeon Image Filter Library directory with include and lib dirs | 1.4.2 or higher | ##### UsdView plugin Components @@ -49,7 +49,7 @@ UsdView plugin is build by default (```RPR_BUILD_AS_HOUDINI_PLUGIN=FALSE```). | Dependency Name | Description | Version | | ------------------ |----------------------------------------------------------------------- | ------- | -| USD_ROOT | USD directory with include and lib dirs | 19.07 | +| USD_ROOT | USD directory with include and lib dirs | 19.11 | ##### Houdini plugin Components diff --git a/cmake/defaults/Version.cmake b/cmake/defaults/Version.cmake index 81937c092..89547159b 100644 --- a/cmake/defaults/Version.cmake +++ b/cmake/defaults/Version.cmake @@ -23,5 +23,5 @@ # # Versioning information set(HD_RPR_MAJOR_VERSION "1") -set(HD_RPR_MINOR_VERSION "0") +set(HD_RPR_MINOR_VERSION "1") set(HD_RPR_PATCH_VERSION "0")