Skip to content

Commit

Permalink
0.3.0 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe Leprince committed Oct 24, 2018
1 parent 971691e commit 63c69b5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion RenderMan/plugin.json
Original file line number Diff line number Diff line change
@@ -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": "<a href=\"https://opensource.org/licenses/MIT\">MIT</a>"
}
2 changes: 1 addition & 1 deletion RenderMan/rmanAssetsSubstancePainter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 63c69b5

Please sign in to comment.