Skip to content

Commit 63c69b5

Browse files
author
Philippe Leprince
committed
0.3.0 release notes
1 parent 971691e commit 63c69b5

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,15 @@ This plugin will NOT work without the following software:
6666

6767
## Release notes
6868

69+
### 0.3.0
70+
71+
* **new**
72+
* UDIM support
73+
* The export code converts SP images to RenderMan textures
74+
75+
* **code**
76+
* Refactored javascript json export.
77+
6978
### 0.2.2
7079

7180
* new

RenderMan/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "This plugin exports a painter project to RenderMan Assets.",
33
"url": "https://github.com/pleprince/RfSP",
4-
"version": "0.2.2",
4+
"version": "0.3.0",
55
"license": "<a href=\"https://opensource.org/licenses/MIT\">MIT</a>"
66
}

RenderMan/rmanAssetsSubstancePainter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def add_texture_node(asset, node_name, ntype, filepath):
198198
def set_metadata(asset, mat_dict):
199199
meta = asset.stdMetadata()
200200
meta['author'] = getpass.getuser()
201-
meta['description'] = 'Created by RenderMan for Substance Painter 0.2.2'
201+
meta['description'] = 'Created by RenderMan for Substance Painter 0.3.0'
202202
meta['resolution'] = '%d x %d' % (mat_dict['resolution'][0],
203203
mat_dict['resolution'][1])
204204
for k, v in meta.iteritems():

0 commit comments

Comments
 (0)