X-Git-Url: http://users.mur.at/ms/git/gitweb/?p=OpenColorIO-Configs.git;a=blobdiff_plain;f=aces_1.0.1%2Fpython%2Faces_ocio%2F__init__.py;fp=aces_1.0.1%2Fpython%2Faces_ocio%2F__init__.py;h=23a4f59695b8a9798e8af69ddfc5c33b420da82e;hp=ed02d6bdb88fbdbd18bcd483093a696a2501988f;hb=8c825fb5e6a8be88fb6a2e9620d35bf88d661377;hpb=15e9a5502f8db027a48b4a5869ab9dad955ddac8 diff --git a/aces_1.0.1/python/aces_ocio/__init__.py b/aces_1.0.1/python/aces_ocio/__init__.py index ed02d6b..23a4f59 100644 --- a/aces_1.0.1/python/aces_ocio/__init__.py +++ b/aces_1.0.1/python/aces_ocio/__init__.py @@ -12,16 +12,16 @@ Python ****** >>> from aces_ocio.generate_config import generate_config ->>> aces_ctl_directory = '/path/to/github/checkout/releases/v1.0.0/transforms/ctl' +>>> aces_ctl_directory = '/path/to/github/checkout/releases/v1.0.1/transforms/ctl' >>> config_directory = '/path/to/configuration/dir' ->>> generate_config(aces_ctl_directory, config_directory, 1024, 33, True) +>>> generate_config(aces_ctl_directory, config_directory, 4096, 65, True) Command Line ************ Using the *create_aces_config* binary: -$ create_aces_config -a '/path/to/github/checkout/releases/v0.7.1/transforms/ctl' -c '/path/to/config/dir' --lutResolution1d 1024 --lutResolution3d 33 --keepTempImages +$ create_aces_config -a '/path/to/github/checkout/releases/v1.0.1/transforms/ctl' -c '/path/to/config/dir' --lutResolution1d 4096 --lutResolution3d 65 --keepTempImages It is possible to set the following environment variables to avoid passing the paths to the binary: @@ -31,7 +31,7 @@ the paths to the binary: The above command line call would be done as follows: -$ create_aces_config --lutResolution1d 1024 --lutResolution3d 33 --keepTempImages +$ create_aces_config --lutResolution1d 4096 --lutResolution3d 65 --keepTempImages Testing the generated configuration is needs the *ACES_OCIO_CTL_DIRECTORY* environment variable to be set and is done as @@ -85,7 +85,7 @@ __status__ = 'Production' __major_version__ = '1' __minor_version__ = '0' -__change_version__ = '0' +__change_version__ = '1' __version__ = '.'.join((__major_version__, __minor_version__, __change_version__))