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>2011-01-14 19:09:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-14 19:09:46 +0300
commitc7c6d6d879875a3734a73eafee652488d2d10534 (patch)
tree493650b69c4c2310f2f70b445afb7d997dd2f4ea /add_mesh_pipe_joint.py
parent181da6cf251af0782e3e874ddf54a62743bc2d2a (diff)
bl_addon_info -> bl_info
Diffstat (limited to 'add_mesh_pipe_joint.py')
-rw-r--r--add_mesh_pipe_joint.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index f7578349..83eec159 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Pipe Joints",
"author": "Buerbaum Martin (Pontiac)",
"version": (0, 10, 6),
@@ -47,7 +47,7 @@ v0.10.6 - Removed "recall properties" from all functions.
API: mathutils.RotationMatrix -> mathutils.Matrix.Rotation
API: xxx.selected -> xxx.select
API: "invoke" function for each operator.
- Updated for new bl_addon_info structure.
+ Updated for new bl_info structure.
New code for the "align_matrix".
made script PEP8 compatible.
v0.10.5 - createFaces can now create fan/star like faces.
@@ -61,7 +61,7 @@ v0.10.2 - API change Mathutils -> mathutils (r557)
v0.10.1 - Use hidden "edit" property for "recall" operator.
v0.10 - Store "recall" properties in the created objects.
Align the geometry to the view if the user preference says so.
-v0.9.10 - Use bl_addon_info for Add-On information.
+v0.9.10 - Use bl_info for Add-On information.
v0.9.9 - Changed the script so it can be managed from the "Add-Ons" tab in
the user preferences.
Added dummy "PLUGIN" icon.