From b5cd123b04e6c46642b3e5617c8d354eb3eac744 Mon Sep 17 00:00:00 2001 From: Luca Bonavita Date: Tue, 13 Jul 2010 14:08:29 +0000 Subject: == trunk scripts confirming == - every script is now (2,5,3) - added warning field in bl_addon_info so every dev knows about this: when "warning" field is not empty, a warning icon appears and text alerts users about a buggy script (this is used during development, released scripts should must have this empty of course) - formatted scripts info like this - GPL - docstring - bl_addon_info - imports so that the actual script starts after the bl_addon_info dict - removed old 2.4x cruft like __url__, __bpydoc__, __author__ etc, not needed anymore (when the case integrated info with bl_addon_info and in case of one email meta just put it in the GPL) - next commits I plan to do contrib scripts and conform io scripts naming --- import_scene_mhx.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'import_scene_mhx.py') diff --git a/import_scene_mhx.py b/import_scene_mhx.py index b7d100f6..f233b89a 100644 --- a/import_scene_mhx.py +++ b/import_scene_mhx.py @@ -20,17 +20,18 @@ Version 0.9 """ bl_addon_info = { - 'name': 'Import MakeHuman (.mhx)', - 'author': 'Thomas Larsson', - 'version': '0.9, Make Human Alpha 5', - 'blender': (2, 5, 3), - 'location': 'File > Import', - 'description': 'Import files in the MakeHuman eXchange format (.mhx)', - 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \ + 'name': 'Import MakeHuman (.mhx)', + 'author': 'Thomas Larsson', + 'version': '0.9, Make Human Alpha 5', + 'blender': (2, 5, 3), + 'location': 'File > Import', + 'description': 'Import files in the MakeHuman eXchange format (.mhx)', + 'warning': '', # used for warning icon and text in addons panel + 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \ 'Scripts/File_I-O/Make_Human', 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\ 'func=detail&aid=21872&group_id=153&atid=469', - 'category': 'Import/Export'} + 'category': 'Import/Export'} """ Place this file in the .blender/scripts/addons dir -- cgit v1.2.3