[Bf-extensions-cvs] [5b864d5] master: fix tracker url, move panel to create tab

Brendon Murphy noreply at git.blender.org
Fri Aug 21 05:57:28 CEST 2015


Commit: 5b864d529fb088e40742572a0dbf249c05cd46de
Author: Brendon Murphy
Date:   Fri Aug 21 13:56:52 2015 +1000
Branches: master
https://developer.blender.org/rBAC5b864d529fb088e40742572a0dbf249c05cd46de

fix tracker url, move panel to create tab

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

M	btrace/__init__.py
M	wetted_mesh.py

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

diff --git a/btrace/__init__.py b/btrace/__init__.py
index 4760588..8ff2f75 100644
--- a/btrace/__init__.py
+++ b/btrace/__init__.py
@@ -25,7 +25,7 @@ bl_info = {
     "description": "Tools for converting/animating objects/particles into curves",
     "warning": "Still under development, bug reports appreciated",
     "wiki_url": "",
-    "tracker_url": "https://developer.blender.org/T29563",
+    "tracker_url": "https://developer.blender.org/maniphest/project/3/type/Bug/",
     "category": "Add Curve"}
 
 
diff --git a/wetted_mesh.py b/wetted_mesh.py
index 84cac47..b4f0dc4 100644
--- a/wetted_mesh.py
+++ b/wetted_mesh.py
@@ -23,10 +23,10 @@ bl_info = {
     "blender": (2, 58, 0),
     "location": "View3D > Tool Shelf > Wetted Mesh Panel",
     "description": "Adds separated fluid, dry and wetted mesh for selected pair.",
-    "warning": "",
+    "warning": "Broken",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
         "Scripts/Mesh/Wetted_Mesh",
-    "tracker_url": "https://developer.blender.org/T27156",
+    "tracker_url": "https://developer.blender.org/maniphest/project/3/type/Bug/",
     "category": "Mesh"}
 
 
@@ -41,7 +41,7 @@ class VIEW3D_PT_tools_WettedMesh(bpy.types.Panel):
     bl_region_type = 'TOOLS'
     bl_label = 'Wetted Mesh'
     bl_context = 'objectmode'
-    bl_category = 'Addons'
+    bl_category = 'Create'
     bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):



More information about the Bf-extensions-cvs mailing list