From d83540fdb17ef9f748dfe44e8e6d77231aa9375c Mon Sep 17 00:00:00 2001 From: Luca Bonavita <mindrones@gmail.com> Date: Wed, 5 Jan 2011 13:48:41 +0000 Subject: [PATCH] == dxf import == - removed the version in contrib, has been left by mistake - formatted the version in trunk to have the main docstring after bl_addon_info - formatted bl_addon_info itself [[Split portion of a mixed commit.]] --- io_import_scene_dxf.py | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/io_import_scene_dxf.py b/io_import_scene_dxf.py index 4f1924b4e..03614957b 100644 --- a/io_import_scene_dxf.py +++ b/io_import_scene_dxf.py @@ -16,6 +16,21 @@ # # ##### END GPL LICENSE BLOCK ##### +bl_addon_info = { + 'name': 'Import Autocad DXF (.dxf)', + 'author': 'Thomas Larsson', + 'version': (0, 1, 3), + 'blender': (2, 5, 6), + 'api': 32738, + 'location': 'File > Import', + 'description': 'Import files in the Autocad DXF format (.dxf)', + 'warning': 'supporting only a sub-set of DXF specification', + 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/'\ + 'Scripts/Import-Export/DXF_Importer', + 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\ + 'func=detail&aid=23480&group_id=153&atid=469', + 'category': 'Import-Export'} + """ Release note by migius (DXF support maintainer) 2011.01.02: Script supports only a small part of DXF specification: @@ -58,19 +73,6 @@ ver 0.1.1 - 2010.09.07 by migius ver 0.1 - 2010.06.10 by Thomas Larsson """ -bl_addon_info = { - 'name': 'Import Autocad DXF (.dxf)', - 'author': 'Thomas Larsson', - 'version': (0,1,3), - 'blender': (2, 5, 6), - 'api': 32738, - 'location': 'File > Import', - 'description': 'Import files in the Autocad DXF format (.dxf)', - 'warning': 'supporting only a sub-set of DXF specification', - 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Import-Export/DXF_Importer', - 'tracker_url': 'https://projects.blender.org/tracker/index.php?func=detail&aid=23480&group_id=153&atid=469', - 'category': 'Import-Export'} - __version__ = '.'.join([str(s) for s in bl_addon_info['version']]) import os -- GitLab