Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendon Murphy <meta.androcto1@gmail.com>2014-08-14 13:40:12 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2014-08-14 13:40:12 +0400
commit38c657a6cdfce83f2308d29f7625ce575f136311 (patch)
tree9e632e669ef4ab588cef81a68272676f00eb075d
parenta323e298ad971a5a670c9bf7b26600bc5e7b8b1c (diff)
fixes to bl_info, minor cleanup, toolshelf fix for bsurfaces.
-rw-r--r--add_curve_extra_objects/__init__.py2
-rw-r--r--add_curve_sapling/__init__.py2
-rw-r--r--mesh_bsurfaces.py1
-rw-r--r--object_add_chain.py2
-rw-r--r--object_cloud_gen.py4
-rw-r--r--space_view3d_3d_navigation.py4
-rw-r--r--ui_layer_manager.py6
7 files changed, 11 insertions, 10 deletions
diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index e1b7f7a7..434b7191 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 beae566e..089251ea 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 78b434ee..501221f2 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 cc1e4c15..264b5500 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 573ed66e..b2aa7f4a 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 c52030d1..5d324d61 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 5a94c2cf..1e0b6fb9 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'}