[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3165] trunk/py/scripts/addons/ render_renderfarmfi.py: Max length of frame format was too short for including the entire name of multilayer EXR

Jesse Kaukonen jesse.kaukonen at gmail.com
Fri Mar 23 13:06:27 CET 2012


Revision: 3165
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3165
Author:   gekko
Date:     2012-03-23 12:06:23 +0000 (Fri, 23 Mar 2012)
Log Message:
-----------
Max length of frame format was too short for including the entire name of multilayer EXR

Modified Paths:
--------------
    trunk/py/scripts/addons/render_renderfarmfi.py

Modified: trunk/py/scripts/addons/render_renderfarmfi.py
===================================================================
--- trunk/py/scripts/addons/render_renderfarmfi.py	2012-03-23 11:10:23 UTC (rev 3164)
+++ trunk/py/scripts/addons/render_renderfarmfi.py	2012-03-23 12:06:23 UTC (rev 3165)
@@ -21,7 +21,7 @@
 bl_info = {
     "name": "Renderfarm.fi",
     "author": "Nathan Letwory <nathan at letworyinteractive.com>, Jesse Kaukonen <jesse.kaukonen at gmail.com>",
-    "version": (18,),
+    "version": (19,),
     "blender": (2, 6, 2),
     "location": "Render > Engine > Renderfarm.fi",
     "description": "Send .blend as session to http://www.renderfarm.fi to render",
@@ -127,7 +127,7 @@
     engine = StringProperty(name='Engine', description='The rendering engine that is used for rendering', maxlen=64, default='blender')
     samples = IntProperty(name='Samples', description='Number of samples that is used (Cycles only)', min=1, max=1000000, soft_min=1, soft_max=100000, default=100)
     subsamples = IntProperty(name='Subsample Frames', description='Number of subsample frames that is used (Cycles only)', min=1, max=1000000, soft_min=1, soft_max=1000, default=10)
-    file_format = StringProperty(name='File format', description='File format used for the rendering', maxlen=20, default='PNG_FORMAT')
+    file_format = StringProperty(name='File format', description='File format used for the rendering', maxlen=30, default='PNG_FORMAT')
     
     parts = IntProperty(name='Parts/Frame', description='', min=1, max=1000, soft_min=1, soft_max=64, default=1)
     resox = IntProperty(name='Resolution X', description='X of render', min=1, max=10000, soft_min=1, soft_max=10000, default=1920)



More information about the Bf-extensions-cvs mailing list