Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-03-05 04:14:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-05 04:14:43 +0300
commitbb977fbc723c44333f33b6d5617354240ac9c9b7 (patch)
treeb7d8dc7f894d16ff2701cefde2120e65fc38dcef /add_curve_extra_objects
parentf4e12a20f5d0362091ed0f895b8ec902e65c82a5 (diff)
Update 'bl_info' use 'doc_url' instead of 'wiki_url'
Diffstat (limited to 'add_curve_extra_objects')
-rw-r--r--add_curve_extra_objects/__init__.py8
-rw-r--r--add_curve_extra_objects/add_curve_aceous_galore.py4
-rw-r--r--add_curve_extra_objects/add_curve_braid.py5
-rw-r--r--add_curve_extra_objects/add_curve_celtic_links.py5
-rw-r--r--add_curve_extra_objects/add_curve_curly.py7
-rw-r--r--add_curve_extra_objects/add_curve_simple.py7
-rw-r--r--add_curve_extra_objects/add_curve_spirals.py4
-rw-r--r--add_curve_extra_objects/add_curve_spirofit_bouncespline.py4
-rw-r--r--add_curve_extra_objects/add_curve_torus_knots.py7
-rw-r--r--add_curve_extra_objects/add_surface_plane_cone.py2
-rw-r--r--add_curve_extra_objects/beveltaper_curve.py7
11 files changed, 33 insertions, 27 deletions
diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index 1e63e812..6f4ac24f 100644
--- a/add_curve_extra_objects/__init__.py
+++ b/add_curve_extra_objects/__init__.py
@@ -28,10 +28,10 @@ bl_info = {
"location": "View3D > Add > Curve > Extra Objects",
"description": "Add extra curve object types",
"warning": "",
- "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
- "add_curve/extra_objects.html",
- "category": "Add Curve"
- }
+ "doc_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "add_curve/extra_objects.html",
+ "category": "Add Curve",
+}
if "bpy" in locals():
import importlib
diff --git a/add_curve_extra_objects/add_curve_aceous_galore.py b/add_curve_extra_objects/add_curve_aceous_galore.py
index dfe8753f..463b05a0 100644
--- a/add_curve_extra_objects/add_curve_aceous_galore.py
+++ b/add_curve_extra_objects/add_curve_aceous_galore.py
@@ -25,8 +25,8 @@ bl_info = {
"location": "View3D > Add > Curve",
"description": "Adds many different types of Curves",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Curve/Curves_Galore",
+ "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
+ "Scripts/Curve/Curves_Galore",
"category": "Add Curve",
}
"""
diff --git a/add_curve_extra_objects/add_curve_braid.py b/add_curve_extra_objects/add_curve_braid.py
index 8041b4bf..5f52d455 100644
--- a/add_curve_extra_objects/add_curve_braid.py
+++ b/add_curve_extra_objects/add_curve_braid.py
@@ -9,8 +9,9 @@ bl_info = {
"location": "View3D > Add > Mesh > New Braid",
"description": "Adds a new Braid",
"warning": "",
- "wiki_url": "",
- "category": "Add Mesh"}
+ "doc_url": "",
+ "category": "Add Mesh",
+}
"""
import bpy
diff --git a/add_curve_extra_objects/add_curve_celtic_links.py b/add_curve_extra_objects/add_curve_celtic_links.py
index d3136bdb..663f8b7e 100644
--- a/add_curve_extra_objects/add_curve_celtic_links.py
+++ b/add_curve_extra_objects/add_curve_celtic_links.py
@@ -30,8 +30,9 @@ bl_info = {
"blender": (2, 80, 0),
"location": "View3D > Add > Curve",
"warning": "",
- "wiki_url": "https://github.com/BorisTheBrave/celtic-knot/wiki",
- "category": "Add Curve"}
+ "doc_url": "https://github.com/BorisTheBrave/celtic-knot/wiki",
+ "category": "Add Curve",
+}
import bpy
import bmesh
diff --git a/add_curve_extra_objects/add_curve_curly.py b/add_curve_extra_objects/add_curve_curly.py
index 637269b5..72f82f05 100644
--- a/add_curve_extra_objects/add_curve_curly.py
+++ b/add_curve_extra_objects/add_curve_curly.py
@@ -10,9 +10,10 @@ bl_info = {
"location": "View3D > Add > Curve > Curly Curve",
"description": "Adds a new Curly Curve",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
- "Py/Scripts/Curve/Curly_Curves",
- "category": "Add Curve"}
+ "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
+ "Py/Scripts/Curve/Curly_Curves",
+ "category": "Add Curve",
+}
import bpy
from bpy.types import Operator
diff --git a/add_curve_extra_objects/add_curve_simple.py b/add_curve_extra_objects/add_curve_simple.py
index af055589..c994acb9 100644
--- a/add_curve_extra_objects/add_curve_simple.py
+++ b/add_curve_extra_objects/add_curve_simple.py
@@ -24,9 +24,10 @@ bl_info = {
"location": "View3D > Add > Curve",
"description": "Adds Simple Curve",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
- "Py/Scripts/Curve/Simple_curves",
- "category": "Add Curve"}
+ "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
+ "Py/Scripts/Curve/Simple_curves",
+ "category": "Add Curve",
+}
# ------------------------------------------------------------
diff --git a/add_curve_extra_objects/add_curve_spirals.py b/add_curve_extra_objects/add_curve_spirals.py
index 55495ddf..2ccdc51a 100644
--- a/add_curve_extra_objects/add_curve_spirals.py
+++ b/add_curve_extra_objects/add_curve_spirals.py
@@ -9,8 +9,8 @@ bl_info = {
"blender": (2, 80, 0),
"location": "View3D > Add > Curve",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.4/Py/"
- "Scripts/Object/Spirals",
+ "doc_url": "https://wiki.blender.org/index.php/Extensions:2.4/Py/"
+ "Scripts/Object/Spirals",
"tracker_url": "http://alexvaqp.googlepages.com?"
"func=detail&aid=<number>",
"category": "Add Curve",
diff --git a/add_curve_extra_objects/add_curve_spirofit_bouncespline.py b/add_curve_extra_objects/add_curve_spirofit_bouncespline.py
index 97310799..764e4ff5 100644
--- a/add_curve_extra_objects/add_curve_spirofit_bouncespline.py
+++ b/add_curve_extra_objects/add_curve_spirofit_bouncespline.py
@@ -26,9 +26,9 @@ bl_info = {
"description": "SpiroFit, BounceSpline and Catenary adds "
"splines to selected mesh or objects",
"warning": "",
- "wiki_url": "",
+ "doc_url": "",
"category": "Object",
- }
+}
import bpy
from bpy.types import (
diff --git a/add_curve_extra_objects/add_curve_torus_knots.py b/add_curve_extra_objects/add_curve_torus_knots.py
index 427aaf4a..d394484d 100644
--- a/add_curve_extra_objects/add_curve_torus_knots.py
+++ b/add_curve_extra_objects/add_curve_torus_knots.py
@@ -25,9 +25,10 @@ bl_info = {
"location": "View3D > Add > Curve",
"description": "Adds many types of (torus) knots",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Curve/Torus_Knot",
- "category": "Add Curve"}
+ "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
+ "Scripts/Curve/Torus_Knot",
+ "category": "Add Curve",
+}
"""
import bpy
diff --git a/add_curve_extra_objects/add_surface_plane_cone.py b/add_curve_extra_objects/add_surface_plane_cone.py
index 2cd148d6..67026c16 100644
--- a/add_curve_extra_objects/add_surface_plane_cone.py
+++ b/add_curve_extra_objects/add_surface_plane_cone.py
@@ -8,7 +8,7 @@ bl_info = {
"blender": (2, 80, 0),
"location": "View3D > Add > Surface",
"warning": "",
- "wiki_url": "",
+ "doc_url": "",
"category": "Add Mesh"
}
diff --git a/add_curve_extra_objects/beveltaper_curve.py b/add_curve_extra_objects/beveltaper_curve.py
index 6e11ada6..c6ce4f93 100644
--- a/add_curve_extra_objects/beveltaper_curve.py
+++ b/add_curve_extra_objects/beveltaper_curve.py
@@ -25,9 +25,10 @@ bl_info = {
"location": "View3D > Object > Bevel/Taper",
"description": "Adds bevel and/or taper curve to active curve",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
- "Py/Scripts/Curve/Bevel_-Taper_Curve",
- "category": "Curve"}
+ "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
+ "Py/Scripts/Curve/Bevel_-Taper_Curve",
+ "category": "Curve",
+}
import bpy