From 6c6e9c5d4034a1c4b484d3a282224b91c4bdbc1f Mon Sep 17 00:00:00 2001 From: John Haddon Date: Fri, 10 Nov 2023 09:21:11 +0000 Subject: [PATCH] CI : Update to Cortex version 10.5.4.0 --- .github/workflows/main/installDependencies.py | 2 +- Changes.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main/installDependencies.py b/.github/workflows/main/installDependencies.py index db0018772a6..a2ac3737e92 100755 --- a/.github/workflows/main/installDependencies.py +++ b/.github/workflows/main/installDependencies.py @@ -48,7 +48,7 @@ # Determine default archive URL. -defaultURL = "https://github.com/ImageEngine/cortex/releases/download/10.5.3.0/cortex-10.5.3.0-{platform}-python3.{extension}".format( +defaultURL = "https://github.com/ImageEngine/cortex/releases/download/10.5.4.0/cortex-10.5.4.0-{platform}-python3.{extension}".format( platform = { "darwin" : "osx", "win32" : "windows" }.get( sys.platform, "linux" ), extension = "tar.gz" if sys.platform != "win32" else "zip" ) diff --git a/Changes.md b/Changes.md index 57ad7170f37..d6755177005 100644 --- a/Changes.md +++ b/Changes.md @@ -9,12 +9,18 @@ Fixes - Fixed failure to update encapsulated instancers when prototype properties changed during interactive renders. - Prevented unnecessary updates for encapsulated instancers when prototype globals changed. - Process : Fixed bug which caused a `No result found` exception to be thrown when a more descriptive exception should have been thrown instead. +- Shader : Added support for reading from USD `token` attributes in `` string parameter substitutions. API --- - Display : Added `driverClosed()` method. +Build +----- + +- Cortex : Updated to version 10.5.4.0. + 1.3.6.0 (relative to 1.3.5.0) =======