From bb977fbc723c44333f33b6d5617354240ac9c9b7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Mar 2020 12:14:23 +1100 Subject: Update 'bl_info' use 'doc_url' instead of 'wiki_url' --- mesh_tools/__init__.py | 4 ++-- mesh_tools/mesh_cut_faces.py | 3 ++- mesh_tools/mesh_edge_roundifier.py | 3 +-- mesh_tools/mesh_edges_floor_plan.py | 5 +++-- mesh_tools/mesh_edges_length.py | 4 ++-- mesh_tools/mesh_edgetools.py | 7 ++++--- mesh_tools/mesh_extrude_and_reshape.py | 7 ++++--- mesh_tools/mesh_filletplus.py | 5 +++-- mesh_tools/mesh_mextrude_plus.py | 5 +++-- mesh_tools/mesh_offset_edges.py | 5 +++-- mesh_tools/mesh_relax.py | 4 ++-- mesh_tools/mesh_vertex_chamfer.py | 5 +++-- mesh_tools/pkhg_faces.py | 2 +- mesh_tools/random_vertices.py | 5 +++-- mesh_tools/split_solidify.py | 5 +++-- mesh_tools/vertex_align.py | 5 +++-- 16 files changed, 42 insertions(+), 32 deletions(-) (limited to 'mesh_tools') diff --git a/mesh_tools/__init__.py b/mesh_tools/__init__.py index f87b4057..d55ce7e6 100644 --- a/mesh_tools/__init__.py +++ b/mesh_tools/__init__.py @@ -29,8 +29,8 @@ bl_info = { "location": "View3D > Sidebar > Edit Tab / Edit Mode Context Menu", "warning": "", "description": "Mesh modelling toolkit. Several tools to aid modelling", - "wiki_url": "https://docs.blender.org/manual/en/dev/addons/" - "mesh/edit_mesh_tools.html", + "doc_url": "https://docs.blender.org/manual/en/dev/addons/" + "mesh/edit_mesh_tools.html", "category": "Mesh", } diff --git a/mesh_tools/mesh_cut_faces.py b/mesh_tools/mesh_cut_faces.py index a5297c9f..23324f1c 100644 --- a/mesh_tools/mesh_cut_faces.py +++ b/mesh_tools/mesh_cut_faces.py @@ -4,7 +4,8 @@ bl_info = { "version" : (1, 0, 0), "blender" : (2, 80, 0), "description" : "Cut Faces and Deselect Boundary operators", - "category" : "Mesh",} + "category" : "Mesh", +} import bpy import bmesh diff --git a/mesh_tools/mesh_edge_roundifier.py b/mesh_tools/mesh_edge_roundifier.py index 2d7ed3d3..418d97fd 100644 --- a/mesh_tools/mesh_edge_roundifier.py +++ b/mesh_tools/mesh_edge_roundifier.py @@ -18,14 +18,13 @@ bl_info = { "name": "Edge Roundifier", - "category": "Mesh", "author": "Piotr Komisarczyk (komi3D), PKHG", "version": (1, 0, 2), "blender": (2, 80, 0), "location": "SPACE > Edge Roundifier or CTRL-E > " "Edge Roundifier or Tools > Addons > Edge Roundifier", "description": "Mesh editing script allowing edge rounding", - "wiki_url": "", + "doc_url": "", "category": "Mesh" } diff --git a/mesh_tools/mesh_edges_floor_plan.py b/mesh_tools/mesh_edges_floor_plan.py index 1bbd7748..6a303ffb 100644 --- a/mesh_tools/mesh_edges_floor_plan.py +++ b/mesh_tools/mesh_edges_floor_plan.py @@ -26,8 +26,9 @@ bl_info = { "blender": (2, 78, 0), "location": "View3D > EditMode > Mesh", "description": "Make a Floor Plan from Edges", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy import bmesh diff --git a/mesh_tools/mesh_edges_length.py b/mesh_tools/mesh_edges_length.py index 44b415c9..adaee650 100644 --- a/mesh_tools/mesh_edges_length.py +++ b/mesh_tools/mesh_edges_length.py @@ -8,9 +8,9 @@ bl_info = { "blender": (2, 80, 0), "location": "Toolbar > Tools > Mesh Tools: set Length(Shit+Alt+E)", "warning": "", - "wiki_url": "", + "doc_url": "", "category": "Mesh", - } +} import bpy import bmesh diff --git a/mesh_tools/mesh_edgetools.py b/mesh_tools/mesh_edgetools.py index 6fd98b75..b9b61958 100644 --- a/mesh_tools/mesh_edgetools.py +++ b/mesh_tools/mesh_edgetools.py @@ -28,9 +28,10 @@ bl_info = { "location": "View3D > Toolbar and View3D > Specials (W-key)", "warning": "", "description": "CAD style edge manipulation tools", - "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/" - "Scripts/Modeling/EdgeTools", - "category": "Mesh"} + "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/" + "Scripts/Modeling/EdgeTools", + "category": "Mesh", +} import bpy diff --git a/mesh_tools/mesh_extrude_and_reshape.py b/mesh_tools/mesh_extrude_and_reshape.py index f4245ac2..ee26cdcd 100644 --- a/mesh_tools/mesh_extrude_and_reshape.py +++ b/mesh_tools/mesh_extrude_and_reshape.py @@ -27,9 +27,10 @@ bl_info = { "location": "View3D > UI > Tools > Mesh Tools > Add: > Extrude Menu (Alt + E)", "description": "Extrude face and merge edge intersections " "between the mesh and the new edges", - "wiki_url": "http://blenderartists.org/forum/" - "showthread.php?376618-Addon-Push-Pull-Face", - "category": "Mesh"} + "doc_url": "http://blenderartists.org/forum/" + "showthread.php?376618-Addon-Push-Pull-Face", + "category": "Mesh", +} import bpy import bmesh diff --git a/mesh_tools/mesh_filletplus.py b/mesh_tools/mesh_filletplus.py index 01f2f67e..73e62198 100644 --- a/mesh_tools/mesh_filletplus.py +++ b/mesh_tools/mesh_filletplus.py @@ -26,8 +26,9 @@ bl_info = { "location": "View3D > Tool Shelf", "description": "", "warning": "", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy diff --git a/mesh_tools/mesh_mextrude_plus.py b/mesh_tools/mesh_mextrude_plus.py index 5fa2aa2b..eea04a51 100644 --- a/mesh_tools/mesh_mextrude_plus.py +++ b/mesh_tools/mesh_mextrude_plus.py @@ -30,8 +30,9 @@ bl_info = { "location": "View3D > Tool Shelf", "description": "Repeat extrusions from faces to create organic shapes", "warning": "", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy diff --git a/mesh_tools/mesh_offset_edges.py b/mesh_tools/mesh_offset_edges.py index 5372cb30..30248304 100644 --- a/mesh_tools/mesh_offset_edges.py +++ b/mesh_tools/mesh_offset_edges.py @@ -26,9 +26,10 @@ bl_info = { "location": "VIEW3D > Edge menu(CTRL-E) > Offset Edges", "description": "Offset Edges", "warning": "", - "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Modeling/offset_edges", + "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Modeling/offset_edges", "tracker_url": "", - "category": "Mesh"} + "category": "Mesh", +} import math from math import sin, cos, pi, copysign, radians diff --git a/mesh_tools/mesh_relax.py b/mesh_tools/mesh_relax.py index 8416ea9a..c646e81b 100644 --- a/mesh_tools/mesh_relax.py +++ b/mesh_tools/mesh_relax.py @@ -29,8 +29,8 @@ bl_info = { "location": "View3D > Edit Mode Context Menu > Relax ", "description": "Relax the selected verts while retaining the shape", "warning": "", - "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/" - "Scripts/Modeling/Relax", + "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/" + "Scripts/Modeling/Relax", "category": "Mesh", } diff --git a/mesh_tools/mesh_vertex_chamfer.py b/mesh_tools/mesh_vertex_chamfer.py index 9ac3f814..e43d0729 100644 --- a/mesh_tools/mesh_vertex_chamfer.py +++ b/mesh_tools/mesh_vertex_chamfer.py @@ -25,8 +25,9 @@ bl_info = { "blender": (2, 63, 0), "location": "Spacebar Menu", "description": "Chamfer vertex", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy diff --git a/mesh_tools/pkhg_faces.py b/mesh_tools/pkhg_faces.py index 2b93d4d7..93a05209 100644 --- a/mesh_tools/pkhg_faces.py +++ b/mesh_tools/pkhg_faces.py @@ -8,7 +8,7 @@ bl_info = { "location": "View3D > Tools > PKHG (tab)", "description": "Faces selected will become added faces of different style", "warning": "", - "wiki_url": "", + "doc_url": "", "category": "Mesh", } diff --git a/mesh_tools/random_vertices.py b/mesh_tools/random_vertices.py index 51f8be24..8025b577 100644 --- a/mesh_tools/random_vertices.py +++ b/mesh_tools/random_vertices.py @@ -8,8 +8,9 @@ bl_info = { "location": "Object > Transform > Random Vertices", "description": "Randomize selected components of active object", "warning": "", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy diff --git a/mesh_tools/split_solidify.py b/mesh_tools/split_solidify.py index 690557ed..7158089e 100644 --- a/mesh_tools/split_solidify.py +++ b/mesh_tools/split_solidify.py @@ -26,8 +26,9 @@ bl_info = { "location": "View3D > Tool Shelf", "description": "", "warning": "", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy import bmesh diff --git a/mesh_tools/vertex_align.py b/mesh_tools/vertex_align.py index eb66d747..41d09a71 100644 --- a/mesh_tools/vertex_align.py +++ b/mesh_tools/vertex_align.py @@ -28,8 +28,9 @@ bl_info = { "location": "View3D > Tool Shelf", "description": "", "warning": "", - "wiki_url": "", - "category": "Mesh"} + "doc_url": "", + "category": "Mesh", +} import bpy -- cgit v1.2.3