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:
authorMartin Buerbaum <martin.buerbaum@gmx.at>2010-03-16 14:47:52 +0300
committerMartin Buerbaum <martin.buerbaum@gmx.at>2010-03-16 14:47:52 +0300
commitd9c6985b68c35c212bec40c01a4f9932fdf22066 (patch)
treefa2120b3bd63cba97273dbcb18d126c0bcb03d1f /add_mesh_pipe_joint.py
parent3ed99b48cb7162e6f277fc09915fe5767648cb1d (diff)
* Version 0.9.10
* Use bl_addon_info for Add-On information.
Diffstat (limited to 'add_mesh_pipe_joint.py')
-rw-r--r--add_mesh_pipe_joint.py27
1 files changed, 15 insertions, 12 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index 49f06331..5fc2e140 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -16,23 +16,25 @@
#
# ##### END GPL LICENSE BLOCK #####
-# Blender Add-Ons menu registration (in User Prefs)
-"Add Pipe Joint (View3D > Add > Mesh > Pipe Joint)"
-
import bpy
import Mathutils
from math import *
from bpy.props import *
-"""
-Name: 'Pipe Joints'
-Blender: 250
-"""
-__author__ = ["Buerbaum Martin (Pontiac)"]
-__url__ = ["http://gitorious.org/blender-scripts/blender-pipe-joint-script",
- "http://blenderartists.org/forum/showthread.php?t=154394",
- "http://wiki.blender.org/index.php/Extensions:Py/Scripts/Add/Pipe_Joint"]
-__version__ = '0.9.9'
+bl_addon_info = {
+ 'name': 'Add Mesh: Pipe Joints',
+ 'author': 'Buerbaum Martin (Pontiac)',
+ 'version': '0.9.10',
+ 'blender': '2.5.3',
+ 'location': 'View3D > Add > Mesh > Pipe Joint',
+ 'url':
+ 'http://wiki.blender.org/index.php/Extensions:Py/Scripts/Add/Pipe_Joint',
+ 'category': 'Add Mesh'}
+
+# More links:
+# http://gitorious.org/blender-scripts/blender-pipe-joint-script
+# http://blenderartists.org/forum/showthread.php?t=154394
+
__bpydoc__ = """
Pipe Joints
This script lets the user create various types of pipe joints.
@@ -44,6 +46,7 @@ The functionality can then be accessed via the
Note: Currently only the "Elbow" type supports odd number of vertices.
Version history:
+v0.9.10 - Use bl_addon_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.