Skip to content

Commit

Permalink
Update a few paths, URLs, and other details
Browse files Browse the repository at this point in the history
* Fix up URLs accordingly for new website.
* Fix up paths and URLs accordingly for new location on Github.
* Change current author shown from Brian Savery to Pixar.
* Bump version number from 21.4 to 21.5.
  • Loading branch information
a-e-k committed Aug 14, 2017
1 parent 7928959 commit b79523b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PRMan for Blender

Blender render addon for Pixar's RenderMan 21.0 and beyond. To use, install RenderMan, (free from [renderman.pixar.com](http://renderman.pixar.com/view/non-commercial-renderman)), download [the latest release](https://github.com/bsavery/PRMan-for-Blender/releases) and put it in the addons folder for Blender. See the [installation.txt](installation.txt) file for detailed instructions.
Blender render addon for Pixar's RenderMan 21.0 and beyond. To use, install RenderMan, (free from [renderman.pixar.com](https://renderman.pixar.com/store/intro)), download [the latest release](https://github.com/prman-pixar/RenderManForBlender/releases) and put it in the addons folder for Blender. See the [installation.txt](installation.txt) file for detailed instructions.

For support visit the [RenderMan forums](https://renderman.pixar.com/forum/forumdisplay.php?s=&forumid=166).

Expand Down
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

bl_info = {
"name": "RenderMan For Blender",
"author": "Brian Savery",
"version": (21, 4, 0),
"author": "Pixar",
"version": (21, 5, 0),
"blender": (2, 78, 0),
"location": "Info Header, render engine menu",
"description": "RenderMan 21.4 integration",
"description": "RenderMan 21.5 integration",
"warning": "",
"category": "Render"}

Expand Down
6 changes: 3 additions & 3 deletions installation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PRMan for Blender Installation Instructions
1. Install Blender if not already (2.78 recommended)

2. Register for the free Non-Commercial Version of RenderMan from Pixar.
https://renderman.pixar.com/view/non-commercial-renderman
https://renderman.pixar.com/store/intro

3. Download and install RenderMan Pro Server Package and
installation instructions at: http://rendermansite.pixar.com/view/get-renderman
Expand All @@ -14,7 +14,7 @@ It is recommended to install RenderMan Pro Server in the default location (or se
3.A If on Windows, be sure to restart after installing RenderMan Pro Server

4. Download the latest release of the RenderMan for Blender addon
https://github.com/bsavery/PRMan-for-Blender/releases save the zip file somewhere.
https://github.com/prman-pixar/RenderManForBlender/releases save the zip file somewhere.

5. Start Blender, and from the File->User Preferences->Add-ons install the zip file from step 4.

Expand All @@ -32,4 +32,4 @@ However, if you installed in a non-standard location, set the RMANTREE
environment variable before starting blender.

Furthermore, advanced options for finding the RenderMan Pro Server location
are in the addon preferences.
are in the addon preferences.
4 changes: 2 additions & 2 deletions operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ class PresetsMenu(bpy.types.Menu):
rendermanExampleFilesList = []
names = []
for path in blenderAddonPaths:
basePath = os.path.join(path, "PRMan-for-Blender", "examples")
basePath = os.path.join(path, "RenderManForBlender", "examples")
exists = os.path.exists(basePath)
if exists:
names = get_Files_in_Directory(basePath)
Expand All @@ -736,7 +736,7 @@ def invoke(self, context, event):
def loadFile(self, context, exampleName):
blenderAddonPaths = addon_utils.paths()
for path in blenderAddonPaths:
basePath = os.path.join(path, "PRMan-for-Blender", "examples")
basePath = os.path.join(path, "RenderManForBlender", "examples")
exists = os.path.exists(basePath)
if exists:
examplePath = os.path.join(
Expand Down
8 changes: 4 additions & 4 deletions ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2423,11 +2423,11 @@ def draw(self, context):
layout.separator()
# Renderman Doc
rman_help = icons.get("help")
layout.operator("wm.url_open", text="Renderman Docs",
icon_value=rman_help.icon_id).url = "https://github.com/bsavery/PRMan-for-Blender/wiki/Documentation-Home"
layout.operator("wm.url_open", text="RenderMan Docs",
icon_value=rman_help.icon_id).url = "https://github.com/prman-pixar/RenderManForBlender/wiki/Documentation-Home"
rman_info = icons.get("info")
layout.operator("wm.url_open", text="About Renderman",
icon_value=rman_info.icon_id).url = "http://renderman.pixar.com/view/non-commercial-renderman"
layout.operator("wm.url_open", text="About RenderMan",
icon_value=rman_info.icon_id).url = "https://renderman.pixar.com/store/intro"

# Reload the addon
# rman_reload = icons.get("reload_plugin")
Expand Down

0 comments on commit b79523b

Please sign in to comment.