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 /curve_tools
parentf4e12a20f5d0362091ed0f895b8ec902e65c82a5 (diff)
Update 'bl_info' use 'doc_url' instead of 'wiki_url'
Diffstat (limited to 'curve_tools')
-rw-r--r--curve_tools/__init__.py9
-rw-r--r--curve_tools/cad.py2
-rw-r--r--curve_tools/fillet.py5
-rw-r--r--curve_tools/outline.py2
-rw-r--r--curve_tools/path_finder.py5
5 files changed, 13 insertions, 10 deletions
diff --git a/curve_tools/__init__.py b/curve_tools/__init__.py
index 17108ef1..50641f0a 100644
--- a/curve_tools/__init__.py
+++ b/curve_tools/__init__.py
@@ -29,10 +29,11 @@ bl_info = {
"blender": (2, 80, 0),
"location": "View3D > Tool Shelf > Edit Tab",
"warning": "WIP",
- "wiki_url": "",
- "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
- "add_curve/curve_tools.html",
- "category": "Add Curve"}
+ "doc_url": "",
+ "doc_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "add_curve/curve_tools.html",
+ "category": "Add Curve",
+}
import os, bpy, importlib, math
diff --git a/curve_tools/cad.py b/curve_tools/cad.py
index 8e62e295..3d3f87bd 100644
--- a/curve_tools/cad.py
+++ b/curve_tools/cad.py
@@ -22,7 +22,7 @@ bl_info = {
'version': (1, 0, 0),
'blender': (2, 80, 0),
'category': 'Curve',
- 'wiki_url': 'https://github.com/Lichtso/curve_cad',
+ 'doc_url': 'https://github.com/Lichtso/curve_cad',
'tracker_url': 'https://github.com/lichtso/curve_cad/issues'
}
diff --git a/curve_tools/fillet.py b/curve_tools/fillet.py
index c9fcb688..911d88c4 100644
--- a/curve_tools/fillet.py
+++ b/curve_tools/fillet.py
@@ -24,9 +24,10 @@ bl_info = {
'location': 'Curve Tools addon. (N) Panel',
'description': 'Various types of fillet (chamfering)',
'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': '',
+ 'doc_url': '',
'tracker_url': '',
- 'category': 'Curve'}
+ 'category': 'Curve',
+}
import bpy
diff --git a/curve_tools/outline.py b/curve_tools/outline.py
index b1f8561e..4122482c 100644
--- a/curve_tools/outline.py
+++ b/curve_tools/outline.py
@@ -23,10 +23,10 @@ END GPL LICENCE BLOCK
bl_info = {
"name": "Curve Outline",
"description": "creates an Outline",
- "category": "Object",
"author": "Yann Bertrand (jimflim), Vladimir Spivak (cwolf3d)",
"version": (0, 5),
"blender": (2, 69, 0),
+ "category": "Object",
}
import bpy
diff --git a/curve_tools/path_finder.py b/curve_tools/path_finder.py
index 9093f5f2..e0b3fa98 100644
--- a/curve_tools/path_finder.py
+++ b/curve_tools/path_finder.py
@@ -24,9 +24,10 @@ bl_info = {
'location': 'Curve Tools addon. (N) Panel',
'description': 'PathFinder - quick search, selection, removal of splines',
'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': '',
+ 'doc_url': '',
'tracker_url': '',
- 'category': 'Curve'}
+ 'category': 'Curve',
+}
import time
import threading