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:
authorLuca Bonavita <mindrones@gmail.com>2010-08-31 06:43:31 +0400
committerLuca Bonavita <mindrones@gmail.com>2010-08-31 06:43:31 +0400
commit01564c0f25797dd213157388291331b66034488e (patch)
tree77cb5ef7d20c7f34db6d1bf10f60236277cddb63 /add_mesh_BoltFactory
parent6cc0943c59112e4679dd2e01a8ee75669a05385e (diff)
== trunk addons ==
- comforming after my commit in bf-blender: - removed the categories from addons names - made 'version' a tuple of integers - added 'api' field - formatted wiki and trackers pages and added where needed (empty pages are yet to be written by the authors though) - more conforming: - 1 tab = 4 spaces - please check everything is fine in case I made some gross mistake
Diffstat (limited to 'add_mesh_BoltFactory')
-rw-r--r--add_mesh_BoltFactory/__init__.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/add_mesh_BoltFactory/__init__.py b/add_mesh_BoltFactory/__init__.py
index d81d5d80..80ca1e34 100644
--- a/add_mesh_BoltFactory/__init__.py
+++ b/add_mesh_BoltFactory/__init__.py
@@ -17,13 +17,16 @@
# ##### END GPL LICENSE BLOCK #####
bl_addon_info = {
- "name": "Add Mesh: BoltFactory",
+ "name": "BoltFactory",
"author": "Aaron Keith",
- "version": "3.9",
+ "version": (3,9),
"blender": (2, 5, 3),
+ "api": 31667,
"location": "add Mesh",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Mesh/BoltFactory",
- "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=22842&group_id=153&atid=468",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\
+ "Scripts/Add_Mesh/BoltFactory",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?"\
+ "func=detail&aid=22842&group_id=153&atid=468",
"category": "Add Mesh"}
import bpy
@@ -53,4 +56,4 @@ def unregister():
#bpy.types.VIEW3D_PT_tools_objectmode.remove(add_mesh_bolt_button) #just for testing
if __name__ == "__main__":
- register() \ No newline at end of file
+ register()