Skip to content
Snippets Groups Projects
Commit d9c6985b authored by Martin Buerbaum's avatar Martin Buerbaum
Browse files

* Version 0.9.10

* Use bl_addon_info for Add-On information.
parent 3ed99b48
No related branches found
No related tags found
No related merge requests found
...@@ -16,23 +16,25 @@ ...@@ -16,23 +16,25 @@
# #
# ##### END GPL LICENSE BLOCK ##### # ##### END GPL LICENSE BLOCK #####
# Blender Add-Ons menu registration (in User Prefs)
"Add Pipe Joint (View3D > Add > Mesh > Pipe Joint)"
import bpy import bpy
import Mathutils import Mathutils
from math import * from math import *
from bpy.props import * from bpy.props import *
""" bl_addon_info = {
Name: 'Pipe Joints' 'name': 'Add Mesh: Pipe Joints',
Blender: 250 'author': 'Buerbaum Martin (Pontiac)',
""" 'version': '0.9.10',
__author__ = ["Buerbaum Martin (Pontiac)"] 'blender': '2.5.3',
__url__ = ["http://gitorious.org/blender-scripts/blender-pipe-joint-script", 'location': 'View3D > Add > Mesh > Pipe Joint',
"http://blenderartists.org/forum/showthread.php?t=154394", 'url':
"http://wiki.blender.org/index.php/Extensions:Py/Scripts/Add/Pipe_Joint"] 'http://wiki.blender.org/index.php/Extensions:Py/Scripts/Add/Pipe_Joint',
__version__ = '0.9.9' 'category': 'Add Mesh'}
# More links:
# http://gitorious.org/blender-scripts/blender-pipe-joint-script
# http://blenderartists.org/forum/showthread.php?t=154394
__bpydoc__ = """ __bpydoc__ = """
Pipe Joints Pipe Joints
This script lets the user create various types of 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 ...@@ -44,6 +46,7 @@ The functionality can then be accessed via the
Note: Currently only the "Elbow" type supports odd number of vertices. Note: Currently only the "Elbow" type supports odd number of vertices.
Version history: 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 v0.9.9 - Changed the script so it can be managed from the "Add-Ons" tab in
the user preferences. the user preferences.
Added dummy "PLUGIN" icon. Added dummy "PLUGIN" icon.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment