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>2011-01-05 16:48:41 +0300
committerLuca Bonavita <mindrones@gmail.com>2011-01-05 16:48:41 +0300
commitd83540fdb17ef9f748dfe44e8e6d77231aa9375c (patch)
treef7fbaa046c2c554ad9d56974100bf0859a90deca /io_import_scene_dxf.py
parent48237a65bccf7ba0edc0eacd911d9d300bb452b1 (diff)
== 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.]]
Diffstat (limited to 'io_import_scene_dxf.py')
-rw-r--r--io_import_scene_dxf.py28
1 files changed, 15 insertions, 13 deletions
diff --git a/io_import_scene_dxf.py b/io_import_scene_dxf.py
index 4f1924b4..03614957 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