From f92b6b7cff239034970b3cd9c64b7ff0d648e841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aldo=20V=C3=A1zquez?= <108836724+vazquea@users.noreply.github.com> Date: Mon, 13 Mar 2023 07:31:14 -0600 Subject: [PATCH] SG-28194: Updated latest Nuke supported version to v14.0 (#96) * Updated latest Nuke supported version to v14.0 * Updated latest Nuke supported version to v14.0 --- engine.py | 4 ++-- info.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/engine.py b/engine.py index 4716bf5..3262739 100644 --- a/engine.py +++ b/engine.py @@ -175,8 +175,8 @@ def pre_app_init(self): self.logger.error(msg) return - # Versions > 13.1 have not yet been tested so show a message to that effect. - if nuke_version[0] > 13 or (nuke_version[0] == 13 and nuke_version[1] > 1): + # Versions > 14.0 have not yet been tested so show a message to that effect. + if nuke_version[0] > 14 or (nuke_version[0] == 14 and nuke_version[1] > 0): # This is an untested version of Nuke. msg = ( "The SG Pipeline Toolkit has not yet been fully tested with Nuke %d.%dv%d. " diff --git a/info.yml b/info.yml index bb43d6d..fd0e7f7 100644 --- a/info.yml +++ b/info.yml @@ -148,7 +148,7 @@ configuration: type: int description: "Specify the minimum Application major version that will prompt a warning if it isn't yet fully supported and tested with Toolkit. To disable the warning - dialog for the version you are testing, it is recomended that you set this + dialog for the version you are testing, it is recommended that you set this value to the current major version + 1." default_value: 10