[Bf-extensions-cvs] [41d4aaf] master: update carver re: T48561 remove links, fix bl_info

meta-androcto noreply at git.blender.org
Sat Jul 30 15:05:53 CEST 2016


Commit: 41d4aaf9ad92017a586b165d49dc1e3a86a0270a
Author: meta-androcto
Date:   Sat Jul 30 23:05:28 2016 +1000
Branches: master
https://developer.blender.org/rBAC41d4aaf9ad92017a586b165d49dc1e3a86a0270a

update carver re: T48561 remove links, fix bl_info

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

M	mesh_carver.py

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

diff --git a/mesh_carver.py b/mesh_carver.py
index 6c7cd09..ae6f3ec 100644
--- a/mesh_carver.py
+++ b/mesh_carver.py
@@ -23,6 +23,8 @@ bl_info = {
     "author": "Pixivore, Cédric LEPILLER",
     "version": (1, 1, 5),
     "blender": (2, 77, 0),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+                "Scripts/Modeling/Carver",
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
     "description": "Multiple tools to carve or to create objects.",
 }
@@ -456,7 +458,6 @@ class CarverPrefs(bpy.types.AddonPreferences):
 
     bpy.types.Scene.Enable_Tab_01 = bpy.props.BoolProperty(default=False)
     bpy.types.Scene.Enable_Tab_02 = bpy.props.BoolProperty(default=False)
-    bpy.types.Scene.Enable_Tab_03 = bpy.props.BoolProperty(default=False)
 
     bpy.types.Scene.Key_Create = bpy.props.StringProperty(
         name="Object creation",
@@ -558,13 +559,8 @@ class CarverPrefs(bpy.types.AddonPreferences):
             layout.label(text="Carver Operator")
             layout.label(text="Select object and [CTRL]+[SHIFT]+[X] to carve")
 
-        layout.prop(scene, "Enable_Tab_02", text="URL's", icon="URL")
+        layout.prop(scene, "Enable_Tab_02", text="Keys", icon="KEYINGSET")
         if scene.Enable_Tab_02:
-            row = layout.row()
-            row.operator("wm.url_open", text="pixivores.com").url = "http://pixivores.com"
-
-        layout.prop(scene, "Enable_Tab_03", text="Keys", icon="KEYINGSET")
-        if scene.Enable_Tab_03:
             split = layout.split()
             col = split.column()
             col.label("Object Creation:")



More information about the Bf-extensions-cvs mailing list