[Bf-extensions-cvs] [0d03d0b] master: add prefix object_ , update tracker url, move to Create tab

Brendon Murphy noreply at git.blender.org
Fri Aug 21 06:51:22 CEST 2015


Commit: 0d03d0b78a7dc0e70ca3c7207fd4157a758bfcb6
Author: Brendon Murphy
Date:   Fri Aug 21 14:50:51 2015 +1000
Branches: master
https://developer.blender.org/rBAC0d03d0b78a7dc0e70ca3c7207fd4157a758bfcb6

add prefix object_ , update tracker url, move to Create tab

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

A	object_particle_hair_lab.py
D	particle_hair_lab.py

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

diff --git a/particle_hair_lab.py b/object_particle_hair_lab.py
similarity index 99%
rename from particle_hair_lab.py
rename to object_particle_hair_lab.py
index bbfae27..2c8479c 100644
--- a/particle_hair_lab.py
+++ b/object_particle_hair_lab.py
@@ -20,12 +20,12 @@ bl_info = {
     "name": "Grass Lab",
     "author": "Ondrej Raha(lokhorn), meta-androcto",
     "version": (0, 5),
-    "blender": (2, 71, 0),
-    "location": "View3D > ToolShelf > Addons Tab",
+    "blender": (2, 75, 0),
+    "location": "View3D > ToolShelf > Create Tab",
     "description": "Creates particle grass with material",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Object/Hair_Lab",
-    "tracker_url": "https://developer.blender.org/T30238",
+    "tracker_url": "https://developer.blender.org/maniphest/task/create/?project=3&type=Bug",
     "category": "Object"}
 
 
@@ -65,7 +65,7 @@ class grassLabPanel(bpy.types.Panel):
     bl_label = "Grass Lab"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
-    bl_category = "Addons"
+    bl_category = "Create"
 
     def draw(self, context):
         active_obj = bpy.context.active_object
@@ -526,7 +526,7 @@ class HairLabPanel(bpy.types.Panel):
     bl_label = "Hair Lab"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
-    bl_category = "Addons"
+    bl_category = "Create"
 
     def draw(self, context):
         active_obj = bpy.context.active_object
@@ -979,7 +979,7 @@ class FurLabPanel(bpy.types.Panel):
     bl_label = "Fur Lab"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
-    bl_category = "Addons"
+    bl_category = "Create"
 
     def draw(self, context):
         active_obj = bpy.context.active_object



More information about the Bf-extensions-cvs mailing list