diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py index e1b7f7a77cc8b2f409d80cfd94bafbfc9a86edef..434b71915abc9c1317820e348295f8f662b299d5 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 beae566ee6a23cf0cb8136120bab5bc7b96ad7ec..089251ea73c0f784df3528639cc29732e5ff66ba 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 78b434ee67393bca3f848cf78a866dfc7cc4fbef..501221f235563f92732d429f0cbee0b5f79eee3c 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 cc1e4c15fe9df09375a2d6949f59924253d01b18..264b550015e7790887ca64ae3a43b568fa30856a 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 573ed66e8ded665dba70f80581e61a6f2a94c4b4..b2aa7f4a9d6d107f0890bf18e15bd9e361d2777d 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 c52030d1eb34337698fd5bf6c538d6791a9c9050..5d324d6109fae83ba11c4946273d7deb1536d476 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 5a94c2cfdf9f8316184e555b4bb48d41ec4bb669..1e0b6fb9b552c69002176a5ef8eff0086651a0df 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'}