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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-07-22 19:36:55 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-07-22 19:41:05 +0300
commit05dc8caa35da9914a0c0da61bb0dd49aa292e9ce (patch)
tree1b062d3e0ea149e555f3693212fa1c84240e9851 /io_scene_obj/__init__.py
parent24eec014a6fb16ca092bf77a835c95b412795017 (diff)
Fix T67266: .obj import error with mtllib name in quotes - regression from 2.79b.
While this is not officialy part of OBJ format, some softwares 'solve' the spaces-in-filenames issue by delimiting those with quotes. Since this is not too much a hassle, let's add back support for this. Based on work from Robert Guetzkow (@rjg), thanks. Note: not sure whether this should be ported to 2.80 release, while this change should be reasonably safe, it's not an obvious one-liner either, and the issue is not really critical (don’t think any major software uses that trick?)...
Diffstat (limited to 'io_scene_obj/__init__.py')
-rw-r--r--io_scene_obj/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index ae3780bd..fdcb3021 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "Wavefront OBJ format",
"author": "Campbell Barton, Bastien Montagne",
- "version": (3, 5, 9),
+ "version": (3, 5, 10),
"blender": (2, 80, 0),
"location": "File > Import-Export",
"description": "Import-Export OBJ, Import OBJ mesh, UV's, materials and textures",