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>2014-05-21 07:04:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-21 07:04:43 +0400
commit5bc482f647af6a3bf2e2b980108a25fa4c3ba352 (patch)
tree8762e4147b2bcc4225017d25a147410026b3c94a /add_curve_extra_objects
parent0962e658947844d22a9ad4dc929f7792e56ee284 (diff)
Maintenance to bl_info, remove redundant tracker URL's
Diffstat (limited to 'add_curve_extra_objects')
-rw-r--r--add_curve_extra_objects/__init__.py3
-rw-r--r--add_curve_extra_objects/add_curve_aceous_galore.py20
-rw-r--r--add_curve_extra_objects/add_curve_spirals.py6
-rw-r--r--add_curve_extra_objects/add_curve_torus_knots.py3
4 files changed, 16 insertions, 16 deletions
diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index cd9f8c96..fab9f383 100644
--- a/add_curve_extra_objects/__init__.py
+++ b/add_curve_extra_objects/__init__.py
@@ -27,8 +27,7 @@ bl_info = {
"description": "Add extra curve object types",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Curve/Curve_Objects",
- "tracker_url": "https://developer.blender.org/T32477",
+ "Scripts/Curve/Curve_Objects",
"category": "Add Curve"}
diff --git a/add_curve_extra_objects/add_curve_aceous_galore.py b/add_curve_extra_objects/add_curve_aceous_galore.py
index 2389f00f..0eae5e80 100644
--- a/add_curve_extra_objects/add_curve_aceous_galore.py
+++ b/add_curve_extra_objects/add_curve_aceous_galore.py
@@ -17,17 +17,17 @@
# ##### END GPL LICENSE BLOCK #####
'''
bl_info = {
- 'name': 'Curveaceous Galore!',
- 'author': 'Jimmy Hazevoet, testscreenings',
- 'version': (0, 2),
+ "name": "Curveaceous Galore!",
+ "author": "Jimmy Hazevoet, testscreenings",
+ "version": (0, 2),
"blender": (2, 59, 0),
- 'location': 'View3D > Add > Curve',
- 'description': 'Adds many different types of Curves',
- 'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'
- 'Scripts/Curve/Curves_Galore',
- 'tracker_url': 'https://developer.blender.org/T22404',
- 'category': 'Add Curve'}
+ "location": "View3D > Add > Curve",
+ "description": "Adds many different types of Curves",
+ "warning": "", # used for warning icon and text in addons panel
+ "wiki_url": "http://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_spirals.py b/add_curve_extra_objects/add_curve_spirals.py
index 9e178812..11d86eb7 100644
--- a/add_curve_extra_objects/add_curve_spirals.py
+++ b/add_curve_extra_objects/add_curve_spirals.py
@@ -6,10 +6,12 @@
"blender": (2, 62, 0),
"location": "View3D > Add > Curve",
"warning": "", # used for warning icon and text in addons panel
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.4/Py/Scripts/Object/Spirals",
+ "wiki_url": "http://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"}
+ "category": "Add Curve",
+}
'''
import bpy, time
from bpy.props import *
diff --git a/add_curve_extra_objects/add_curve_torus_knots.py b/add_curve_extra_objects/add_curve_torus_knots.py
index 591517cd..22fe48fe 100644
--- a/add_curve_extra_objects/add_curve_torus_knots.py
+++ b/add_curve_extra_objects/add_curve_torus_knots.py
@@ -26,8 +26,7 @@ bl_info = {
"description": "Adds many types of (torus) knots",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Curve/Torus_Knot",
- "tracker_url": "https://developer.blender.org/T22403",
+ "Scripts/Curve/Torus_Knot",
"category": "Add Curve"}
'''