diff --git a/README.md b/README.md index 7009ab1..b8630a3 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,15 @@ This plugin will NOT work without the following software: ## Release notes +### 0.3.0 + +* **new** + * UDIM support + * The export code converts SP images to RenderMan textures + +* **code** + * Refactored javascript json export. + ### 0.2.2 * new diff --git a/RenderMan/plugin.json b/RenderMan/plugin.json index 838ad98..34982be 100644 --- a/RenderMan/plugin.json +++ b/RenderMan/plugin.json @@ -1,6 +1,6 @@ { "description": "This plugin exports a painter project to RenderMan Assets.", "url": "https://github.com/pleprince/RfSP", - "version": "0.2.2", + "version": "0.3.0", "license": "MIT" } \ No newline at end of file diff --git a/RenderMan/rmanAssetsSubstancePainter.py b/RenderMan/rmanAssetsSubstancePainter.py index b61353b..a789a79 100755 --- a/RenderMan/rmanAssetsSubstancePainter.py +++ b/RenderMan/rmanAssetsSubstancePainter.py @@ -198,7 +198,7 @@ def add_texture_node(asset, node_name, ntype, filepath): def set_metadata(asset, mat_dict): meta = asset.stdMetadata() meta['author'] = getpass.getuser() - meta['description'] = 'Created by RenderMan for Substance Painter 0.2.2' + meta['description'] = 'Created by RenderMan for Substance Painter 0.3.0' meta['resolution'] = '%d x %d' % (mat_dict['resolution'][0], mat_dict['resolution'][1]) for k, v in meta.iteritems():