[Bf-extensions-cvs] [38c657a] master: fixes to bl_info, minor cleanup, toolshelf fix for bsurfaces.

Brendon Murphy noreply at git.blender.org
Thu Aug 14 11:41:44 CEST 2014


Commit: 38c657a6cdfce83f2308d29f7625ce575f136311
Author: Brendon Murphy
Date:   Thu Aug 14 19:40:12 2014 +1000
Branches: master
https://developer.blender.org/rBA38c657a6cdfce83f2308d29f7625ce575f136311

fixes to bl_info, minor cleanup, toolshelf fix for bsurfaces.

===================================================================

M	add_curve_extra_objects/__init__.py
M	add_curve_sapling/__init__.py
M	mesh_bsurfaces.py
M	object_add_chain.py
M	object_cloud_gen.py
M	space_view3d_3d_navigation.py
M	ui_layer_manager.py

===================================================================

diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index e1b7f7a..434b719 100644
--- a/add_curve_extra_objects/__init__.py
+++ b/add_curve_extra_objects/__init__.py
@@ -51,7 +51,7 @@ class INFO_MT_curve_extras_add(bpy.types.Menu):
     def draw(self, context):
         layout = self.layout
         layout.operator_context = 'INVOKE_REGION_WIN'
-        layout.operator("mesh.curveaceous_galor e",
+        layout.operator("mesh.curveaceous_galore",
             text="Curves Galore!")
         layout.operator("curve.spirals",
             text="Spirals")
diff --git a/add_curve_sapling/__init__.py b/add_curve_sapling/__init__.py
index beae566..089251e 100644
--- a/add_curve_sapling/__init__.py
+++ b/add_curve_sapling/__init__.py
@@ -20,7 +20,7 @@ bl_info = {
     "name": "Sapling",
     "author": "Andrew Hale (TrumanBlending)",
     "version": (0, 2, 6),
-    "blender": (2, 64, 0),
+    "blender": (2, 71, 0),
     "location": "View3D > Add > Curve",
     "description": ("Adds a parametric tree. The method is presented by "
     "Jason Weber & Joseph Penn in their paper 'Creation and Rendering of "
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index 78b434e..501221f 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -75,6 +75,7 @@ class VIEW3D_PT_tools_SURFSK_curve(bpy.types.Panel):
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'TOOLS'
     bl_context = "curve_edit"
+    bl_category = 'Tools'
     bl_label = "Bsurfaces"
 
     @classmethod
diff --git a/object_add_chain.py b/object_add_chain.py
index cc1e4c1..264b550 100644
--- a/object_add_chain.py
+++ b/object_add_chain.py
@@ -21,7 +21,7 @@ bl_info = {
     "author": "Brian Hinton (Nichod)",
     "version": (0, 1, 1),
     "blender": (2, 71, 0),
-    "location": "View3D > Add > Mesh",
+    "location": "Toolshelf > Create Tab",
     "description": "Adds Chain with curve guide for easy creation",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
diff --git a/object_cloud_gen.py b/object_cloud_gen.py
index 573ed66..b2aa7f4 100644
--- a/object_cloud_gen.py
+++ b/object_cloud_gen.py
@@ -22,8 +22,8 @@ bl_info = {
     "name": "Cloud Generator",
     "author": "Nick Keeline(nrk)",
     "version": (1, 0),
-    "blender": (2, 59, 0),
-    "location": "View3D > Tool Shelf > Cloud Generator Panel",
+    "blender": (2, 71, 0),
+    "location": "Tool Shelf > Create Tab",
     "description": "Creates Volumetric Clouds",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
                 "Scripts/Object/Cloud_Gen",
diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index c52030d..5d324d6 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -25,8 +25,8 @@ bl_info = {
     "name": "3D Navigation",
     "author": "Demohero, uriel",
     "version": (1, 2),
-    "blender": (2, 57, 0),
-    "location": "View3D > Tool Shelf > 3D Nav",
+    "blender": (2, 71, 0),
+    "location": "View3D > Tool Shelf > 3D Navigation Tab",
     "description": "Navigate the Camera & 3D View from the Toolshelf",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
diff --git a/ui_layer_manager.py b/ui_layer_manager.py
index 5a94c2c..1e0b6fb 100644
--- a/ui_layer_manager.py
+++ b/ui_layer_manager.py
@@ -22,8 +22,8 @@ bl_info = {
     "name": "Layer Management",
     "author": "Alfonso Annarumma",
     "version": (1, 5, 1),
-    "blender": (2, 70, 0),
-    "location": "View3D > Properties panel > Layer Management",
+    "blender": (2, 71, 0),
+    "location": "Toolshelf > Layers Tab",
     "warning": "",
     "description": "Display and Edit Layer Name",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/3D_interaction/layer_manager",
@@ -510,7 +510,7 @@ class SCENE_UL_namedlayer_groups(UIList):
 class SCENE_PT_namedlayer_groups(bpy.types.Panel):
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'TOOLS'
-    bl_category = "Layer"
+    bl_category = "Layers"
     bl_label = "Layer Groups"
     bl_options = {'DEFAULT_CLOSED'}



More information about the Bf-extensions-cvs mailing list