[Bf-extensions-cvs] [2f1ac05] master: fixes for toolshelf

Brendon Murphy noreply at git.blender.org
Tue Jul 8 14:44:51 CEST 2014


Commit: 2f1ac05c01f9bba7b5f939fe03923c07bebea7d8
Author: Brendon Murphy
Date:   Tue Jul 8 22:43:48 2014 +1000
https://developer.blender.org/rBAC2f1ac05c01f9bba7b5f939fe03923c07bebea7d8

fixes for toolshelf

Signed-off-by: Brendon Murphy <meta.androcto1 at gmail.com>

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

M	ewoc_projects_tools/__init__.py
M	object_mangle_tools.py
M	space_view3d_simple_align.py

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

diff --git a/ewoc_projects_tools/__init__.py b/ewoc_projects_tools/__init__.py
index 04b407b..ab28f24 100644
--- a/ewoc_projects_tools/__init__.py
+++ b/ewoc_projects_tools/__init__.py
@@ -22,8 +22,8 @@ bl_info = {
 	"name": "EWOCprojects tools",
 	"author": "Gert De Roost - paleajed",
 	"version": (1, 3, 1),
-	"blender": (2, 63, 0),
-	"location": "View3D > Toolbar and View3D > Specials (W-key)",
+	"blender": (2, 71, 0),
+	"location": "View3D > Tool Shelf > Addons & Specials (W-key)",
 	"description": "Edit mode tools - contrib version",
 	"warning": "",
 	"wiki_url": "",
@@ -115,6 +115,9 @@ class PaleajedPanel(bpy.types.Panel):
 	bl_label = "EWOCprojects tools"
 	bl_space_type = 'VIEW_3D'
 	bl_region_type = 'TOOLS'
+	bl_options = {'DEFAULT_CLOSED'}
+	bl_category = "Addons"
+
 
 	def draw(self, context):
 		scn = bpy.context.scene
diff --git a/object_mangle_tools.py b/object_mangle_tools.py
index 843d60d..eb2965e 100644
--- a/object_mangle_tools.py
+++ b/object_mangle_tools.py
@@ -23,8 +23,8 @@ bl_info = {
     "name": "Mangle Tools",
     "author": "Phil Cote",
     "version": (0, 2),
-    "blender": (2, 63, 0),
-    "location": "View3D > Tools",
+    "blender": (2, 71, 0),
+    "location": "View3D > Toolshelf > Addons Tab",
     "description": "Set of tools to mangle curves, meshes, and shape keys",
     "warning": "", # used for warning icon and text in addons panel
     "wiki_url": "",
@@ -156,6 +156,7 @@ class MangleToolsPanel(bpy.types.Panel):
     bl_region_type="TOOLS"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
+    bl_category = "Addons"
 
     def draw(self, context):
         scn = context.scene
diff --git a/space_view3d_simple_align.py b/space_view3d_simple_align.py
index b9583ce..e8a39fe 100644
--- a/space_view3d_simple_align.py
+++ b/space_view3d_simple_align.py
@@ -23,8 +23,8 @@ bl_info = {
     "name": "Simple Align",
     "author": "Gabriel Beaudin (gabhead)",
     "version": (0,1),
-    "blender": (2, 61, 0),
-    "location": "View3D > Tool Shelf > Simple Align Panel",
+    "blender": (2, 71, 0),
+    "location": "View3D > Tool Shelf > Addons",
     "description": "Align Selected Objects to Active Object",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -42,6 +42,7 @@ class AlignUi(bpy.types.Panel):
     bl_region_type = 'TOOLS'
     bl_label = "Simple Align"
     bl_context = "objectmode"
+    bl_category = 'Addons'
     bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):



More information about the Bf-extensions-cvs mailing list