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:
authorThomas Larsson <thomas_larsson_01@hotmail.com>2011-03-28 07:07:21 +0400
committerThomas Larsson <thomas_larsson_01@hotmail.com>2011-03-28 07:07:21 +0400
commit206725be30875670b0663ea56055922cace6305c (patch)
tree120cacce88cf027f307c0e0d5837b6073957f8bc /io_import_scene_mhx.py
parenta2e55353bf78810f4402cb6274367b50a427791e (diff)
Raised MHX version number to catch incompatibility between old mhx files and changed Blender API.
Modified the wiki_url link to point to the MH site. To link to external sites may be frowned upon, but I don't want to maintain duplicate copies of the documentation. This is at any rate better than before, when the the link pointed to outdated info.
Diffstat (limited to 'io_import_scene_mhx.py')
-rw-r--r--io_import_scene_mhx.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/io_import_scene_mhx.py b/io_import_scene_mhx.py
index 59d24494..c2b2dfa1 100644
--- a/io_import_scene_mhx.py
+++ b/io_import_scene_mhx.py
@@ -26,7 +26,7 @@
"""
Abstract
MHX (MakeHuman eXchange format) importer for Blender 2.5x.
-Version 1.3.1
+Version 1.4.0
This script should be distributed with Blender.
If not, place it in the .blender/scripts/addons dir
@@ -39,22 +39,21 @@ Alternatively, run the script in the script editor (Alt-P), and access from the
bl_info = {
'name': 'Import: MakeHuman (.mhx)',
'author': 'Thomas Larsson',
- 'version': (1, 3, 1),
+ 'version': (1, 4, 0),
"blender": (2, 5, 7),
- "api": 35622,
+ "api": 35774,
'location': "File > Import",
'description': 'Import files in the MakeHuman eXchange format (.mhx)',
'warning': '',
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/'\
- 'Scripts/Import-Export/Make_Human',
+ 'wiki_url': 'http://sites.google.com/site/makehumandocs/blender-export-and-mhx',
'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
'func=detail&aid=21872',
'category': 'Import-Export'}
MAJOR_VERSION = 1
-MINOR_VERSION = 3
-SUB_VERSION = 1
-BLENDER_VERSION = (2, 56, 0)
+MINOR_VERSION = 4
+SUB_VERSION = 0
+BLENDER_VERSION = (2, 57, 0)
#
#
@@ -389,7 +388,8 @@ def getObject(name, var, glbals, lcals):
def checkMhxVersion(major, minor):
global warnedVersion
- if major != MAJOR_VERSION or (major == MAJOR_VERSION and minor > MINOR_VERSION):
+ print((major,minor), (MAJOR_VERSION, MINOR_VERSION), warnedVersion)
+ if major != MAJOR_VERSION or minor != MINOR_VERSION:
if warnedVersion:
return
else: