From 4802d6516ba5ba60076085c51683e9b4d6a92066 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Aug 2010 14:35:58 +0000 Subject: fix for registering scripts. - mesh_surface_sketch.py - render_renderfarmfi.py - space_view3d_align_tools.py - object_cloud_gen.py also move bl_addon_info to the top for faster parsing. --- io_mesh_raw/__init__.py | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'io_mesh_raw') diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py index f2f8124a..2e4cf72f 100644 --- a/io_mesh_raw/__init__.py +++ b/io_mesh_raw/__init__.py @@ -17,18 +17,16 @@ # ##### END GPL LICENSE BLOCK ##### bl_addon_info = { - 'name': 'Import/Export: Raw mesh', - 'author': 'Anthony D,Agostino (Scorpius), Aurel Wildfellner', - 'version': '0.2', - 'blender': (2, 5, 3), - 'location': 'File > Import/Export > Raw faces ', - 'description': 'Import Raw Faces (.raw format)', - '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/Raw_Mesh_IO', - 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\ - 'func=detail&aid=21733&group_id=153&atid=469', - 'category': 'Import/Export'} + "name": "Import/Export: Raw mesh", + "author": "Anthony D,Agostino (Scorpius), Aurel Wildfellner", + "version": "0.2", + "blender": (2, 5, 3), + "location": "File > Import/Export > Raw faces ", + "description": "Import Raw Faces (.raw format)", + "warning": "", + "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/File_I-O/Raw_Mesh_IO", + "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=21733&group_id=153&atid=469", + "category": "Import/Export"} import bpy -- cgit v1.2.3