[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [729] trunk/py/scripts/addons/ space_view3d_property_chart.py: addons/space_view3d_property_chart. py fixed menu registration.

Brendon Murphy meta.androcto1 at gmail.com
Thu Jun 10 12:16:10 CEST 2010


Revision: 729
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=729
Author:   meta-androcto
Date:     2010-06-10 12:16:09 +0200 (Thu, 10 Jun 2010)

Log Message:
-----------
addons/space_view3d_property_chart.py fixed menu registration.

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

Modified: trunk/py/scripts/addons/space_view3d_property_chart.py
===================================================================
--- trunk/py/scripts/addons/space_view3d_property_chart.py	2010-06-10 10:00:00 UTC (rev 728)
+++ trunk/py/scripts/addons/space_view3d_property_chart.py	2010-06-10 10:16:09 UTC (rev 729)
@@ -21,12 +21,17 @@
 '''List properties of selected objects'''
 
 bl_addon_info = {
-    "name": "3D View: Object Property Chart",
-    "author": "Campbell Barton (ideasman42)",
-    "version": "0.1",
-    "blender": (2, 5, 3),
-    "location": "Tool Shelf",
-    "description": "Edit arbitrary selected properties for objects of the same type"}
+    'name': '3D View: Object Property Chart',
+    'author': 'Campbell Barton (ideasman42)',
+    'version': '0.1',
+    'blender': (2, 5, 3),
+    'location': 'Tool Shelf',
+    'description': 'Edit arbitrary selected properties for objects of the same type',
+    'wiki_url':
+    'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
+        'Scripts/',
+    'tracker_url': 'https://projects.blender.org/projects/bf-extensions/',
+    'category': '3D View'}
 
 import bpy
 
@@ -114,7 +119,7 @@
         col.label(text="Display Properties")
         col.prop(id_storage, '["%s"]' % self._PROP_STORAGE_ID, text="")
 
-
+	
 def register():
     bpy.types.register(View3DEditProps)
 




More information about the Bf-extensions-cvs mailing list