[Bf-extensions-cvs] [9ffc13c] master: Add some versionning to obj and fbx addons.

Bastien Montagne noreply at git.blender.org
Tue May 6 15:17:58 CEST 2014


Commit: 9ffc13cad61375a7facec905c1e0c0df60057d9b
Author: Bastien Montagne
Date:   Tue May 6 15:15:22 2014 +0200
https://developer.blender.org/rBA9ffc13cad61375a7facec905c1e0c0df60057d9b

Add some versionning to obj and fbx addons.

Rough guess, 2.0 for obj (because of quite heavy changes in it this fall/winter),
and 3.0 for FBX (assuming 1.0 = 6.1 exporter, and 2.0 = 7.x importer, makes 3.0 = 7.4 exporter)

===================================================================

M	io_scene_fbx/__init__.py
M	io_scene_obj/__init__.py

===================================================================

diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 0631c03..a3ac38d 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -21,6 +21,7 @@
 bl_info = {
     "name": "Autodesk FBX format",
     "author": "Campbell Barton, Bastien Montagne",
+    "version": (3, 0, 0),
     "blender": (2, 70, 0),
     "location": "File > Import-Export",
     "description": "Export FBX meshes, UV's, vertex colors, materials, "
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 9ee19fa..72ea746 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -20,7 +20,8 @@
 
 bl_info = {
     "name": "Wavefront OBJ format",
-    "author": "Campbell Barton",
+    "author": "Campbell Barton, Bastien Montagne",
+    "version": (2, 0, 0),
     "blender": (2, 58, 0),
     "location": "File > Import-Export",
     "description": "Import-Export OBJ, Import OBJ mesh, UV's, "



More information about the Bf-extensions-cvs mailing list