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:
authorBrendon Murphy <meta.androcto1@gmail.com>2010-03-16 07:55:26 +0300
committerBrendon Murphy <meta.androcto1@gmail.com>2010-03-16 07:55:26 +0300
commit0b7e48cbba0a07af09e55360537d340c58e4d66d (patch)
tree9c0b874114bbb41e6e60f46ddf1589798bc91d82 /add_mesh_3d_function_surface.py
parent646cae43545bd2dacf51497c4e6946de64e025ef (diff)
changes by meta-androcto
bl_addon_info change name to Add_Mesh: 3d_function_surface (for consistancy with menu changes) change link to wiki
Diffstat (limited to 'add_mesh_3d_function_surface.py')
-rw-r--r--add_mesh_3d_function_surface.py26
1 files changed, 15 insertions, 11 deletions
diff --git a/add_mesh_3d_function_surface.py b/add_mesh_3d_function_surface.py
index 8e12c9a6..64338419 100644
--- a/add_mesh_3d_function_surface.py
+++ b/add_mesh_3d_function_surface.py
@@ -16,22 +16,24 @@
#
# ##### END GPL LICENSE BLOCK #####
-# Blender Add-Ons menu registration (in User Prefs)
-"3d Function Surface (View3D > Add > Mesh > 3D Function Surface)"
-
import bpy
import Mathutils
from math import *
from bpy.props import *
-"""
-Name: '3D Function Surface'
-Blender: 250
-"""
-__author__ = ["Buerbaum Martin (Pontiac)"]
-__url__ = ["http://gitorious.org/blender-scripts/blender-3d-function-surface",
- "http://blenderartists.org/forum/showthread.php?t=179043"]
-__version__ = '0.2.1'
+
+bl_addon_info = {
+ 'name': 'Add_Mesh: 3D Function Surface',
+ 'author': 'Buerbaum Martin (Pontiac)',
+ 'version': '0.2.3',
+ 'blender': '2.5.3',
+ 'location': 'View3D > Add > Mesh > 3D Function Surface',
+ 'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_3d_Function_Surface',
+ 'category': 'Add Mesh'}
+
+# More Links:
+# http://blenderartists.org/forum/showthread.php?t=179043
+
__bpydoc__ = """
3D Function Surface
@@ -46,6 +48,8 @@ The functionality can then be accessed via the
"Add Mesh" -> "3D Function Surface" menu.
Version history:
+v0.2.3 - Use bl_addon_info for Add-On information.
+v0.2.2 - Fixed Add-On registration text.
v0.2.1 - Fixed some new API stuff.
Mainly we now have the register/unregister functions.
Also the new() function for objects now accepts a mesh object.