[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1533] trunk/py/scripts/addons: And again, polishing off some more that I missed.

Jonathan Smith j.jaydez at gmail.com
Tue Feb 1 13:09:21 CET 2011


Revision: 1533
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=1533
Author:   jaydez
Date:     2011-02-01 12:09:20 +0000 (Tue, 01 Feb 2011)
Log Message:
-----------
And again, polishing off some more that I missed.

Modified Paths:
--------------
    trunk/py/scripts/addons/animation_rotobezier.py
    trunk/py/scripts/addons/mesh_surface_sketch.py
    trunk/py/scripts/addons/object_add_chain.py
    trunk/py/scripts/addons/object_animrenderbake.py
    trunk/py/scripts/addons/object_cloud_gen.py
    trunk/py/scripts/addons/space_view3d_3d_navigation.py
    trunk/py/scripts/addons/space_view3d_math_vis/__init__.py
    trunk/py/scripts/addons/space_view3d_panel_measure.py
    trunk/py/scripts/addons/system_blend_info.py
    trunk/py/scripts/addons/text_editor_api_navigator.py

Modified: trunk/py/scripts/addons/animation_rotobezier.py
===================================================================
--- trunk/py/scripts/addons/animation_rotobezier.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/animation_rotobezier.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -22,7 +22,7 @@
     'version': (0, 8),
     'blender': (2, 5, 5),
     'api': 33232,
-    'location': 'Select a Curve: Tool Shelf > RotoBezier panel',
+    'location': 'Select a Curve: Tool Shelf > RotoBezier Panel',
     'description': 'Allows animation of Bezier and NURBS curves',
     'warning': '',
     'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/'\

Modified: trunk/py/scripts/addons/mesh_surface_sketch.py
===================================================================
--- trunk/py/scripts/addons/mesh_surface_sketch.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/mesh_surface_sketch.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -22,7 +22,7 @@
     "version": (0,8),
     "blender": (2, 5, 3),
     "api": 31847,
-    "location": "View3D > EditMode > ToolShelf",
+    "location": "View3D > EditMode > Tool Shelf > Surface Sketching Panel",
     "description": "Draw meshes and re-topologies with Grease Pencil",
     "warning": "Beta",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\

Modified: trunk/py/scripts/addons/object_add_chain.py
===================================================================
--- trunk/py/scripts/addons/object_add_chain.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/object_add_chain.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -22,7 +22,7 @@
     "version": (0,1),
     "blender": (2, 5, 3),
     "api": 31965,
-    "location": "View3D > Add > Mesh > Chain",
+    "location": "View3D > Add > Mesh",
     "description": "Adds Chain with curve guide for easy creation",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\

Modified: trunk/py/scripts/addons/object_animrenderbake.py
===================================================================
--- trunk/py/scripts/addons/object_animrenderbake.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/object_animrenderbake.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -21,7 +21,7 @@
     "author": "Janne Karhu (jahka)",
     "version": (1, 0),
     "blender": (2, 5, 5),
-    "location": "Render Properties > Bake",
+    "location": "Properties > Render > Bake Panel",
     "description": "Renderbakes a series of frames",
     "category": "Object",
     'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \

Modified: trunk/py/scripts/addons/object_cloud_gen.py
===================================================================
--- trunk/py/scripts/addons/object_cloud_gen.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/object_cloud_gen.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -22,7 +22,7 @@
     "version": (1,0),
     "blender": (2, 5, 5),
     "api": 31965,
-    "location": "Tool Shelf ",
+    "location": "View3D > Tool Shelf > Cloud Generator Panel",
     "description": "Creates Volumetric Clouds",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\

Modified: trunk/py/scripts/addons/space_view3d_3d_navigation.py
===================================================================
--- trunk/py/scripts/addons/space_view3d_3d_navigation.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/space_view3d_3d_navigation.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -27,7 +27,7 @@
     "version": (1, 2),
     "blender": (2, 5, 4),
     "api": 32411,
-    "location": "View3D > Tool Shelf",
+    "location": "View3D > Tool Shelf > 3D Nav",
     "description": "Navigate the Camera & 3D View from the Toolshelf",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\
@@ -43,7 +43,7 @@
 class VIEW3D_PT_3dnavigationPanel(bpy.types.Panel):
     bl_space_type = "VIEW_3D"
     bl_region_type = "TOOLS"
-    bl_label = "3D Views "
+    bl_label = "3D Nav"
 
     def draw(self, context):
         layout = self.layout

Modified: trunk/py/scripts/addons/space_view3d_math_vis/__init__.py
===================================================================
--- trunk/py/scripts/addons/space_view3d_math_vis/__init__.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/space_view3d_math_vis/__init__.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -22,7 +22,7 @@
     "version": (0, 1),
     "blender": (2, 5, 6),
     "api": 33110,
-    "location": "3D View Toolbar, Python Console",
+    "location": "View3D > Tool Shelf or Console",
     "description": "Display console defined mathutils variables in the 3D view",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\
         "Scripts/3D_interaction/Math_Viz",

Modified: trunk/py/scripts/addons/space_view3d_panel_measure.py
===================================================================
--- trunk/py/scripts/addons/space_view3d_panel_measure.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/space_view3d_panel_measure.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -22,7 +22,7 @@
     "version": (0, 7, 12),
     "blender": (2, 5, 5),
     "api": 33931,
-    "location": "View3D > Properties > Measure",
+    "location": "View3D > Properties > Measure Panel",
     "description": "Measure distances between objects",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/" \

Modified: trunk/py/scripts/addons/system_blend_info.py
===================================================================
--- trunk/py/scripts/addons/system_blend_info.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/system_blend_info.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -26,7 +26,7 @@
     "version": (0,3),
     "blender": (2, 5, 3),
     "api": 32411,
-    "location": "Properties space > Scene tab > Blend Info panel",
+    "location": "Properties > Scene > Blend Info Panel",
     "description": "Show information about the .blend",
     "warning": "",
     "wiki_url": 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \

Modified: trunk/py/scripts/addons/text_editor_api_navigator.py
===================================================================
--- trunk/py/scripts/addons/text_editor_api_navigator.py	2011-02-01 11:47:29 UTC (rev 1532)
+++ trunk/py/scripts/addons/text_editor_api_navigator.py	2011-02-01 12:09:20 UTC (rev 1533)
@@ -25,7 +25,7 @@
     "version": (1, 0),
     "blender": (2, 5, 5),
     "api": 32760,
-    "location": "Text Editor -> Properties (CTRL+F) -> API Navigator Panel",
+    "location": "Text Editor > Properties > API Navigator Panel",
     "description": "Allows to explore the python api via the user interface",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"



More information about the Bf-extensions-cvs mailing list