From 38c657a6cdfce83f2308d29f7625ce575f136311 Mon Sep 17 00:00:00 2001
From: Brendon Murphy <meta.androcto1@gmail.com>
Date: Thu, 14 Aug 2014 19:40:12 +1000
Subject: [PATCH] fixes to bl_info, minor cleanup, toolshelf fix for bsurfaces.

---
 add_curve_extra_objects/__init__.py | 2 +-
 add_curve_sapling/__init__.py       | 2 +-
 mesh_bsurfaces.py                   | 1 +
 object_add_chain.py                 | 2 +-
 object_cloud_gen.py                 | 4 ++--
 space_view3d_3d_navigation.py       | 4 ++--
 ui_layer_manager.py                 | 6 +++---
 7 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index e1b7f7a77..434b71915 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 beae566ee..089251ea7 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 78b434ee6..501221f23 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 cc1e4c15f..264b55001 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 573ed66e8..b2aa7f4a9 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 c52030d1e..5d324d610 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 5a94c2cfd..1e0b6fb9b 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'}
 
-- 
GitLab