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:
authorJens <Jens.Ne>2020-12-15 14:11:41 +0300
committerBastien Montagne <bastien@blender.org>2020-12-15 14:14:40 +0300
commitf8a16827a2568088e5206e9d4432c5b57aae3eb5 (patch)
treeaff896ad88ed69bdb104ee2910906e84a02cb179 /io_scene_obj/__init__.py
parent285deaf22c279a607867158b529c0ddec01f9202 (diff)
Fix T83671: OBJ Import: Ignore invalid lines (with 'command' but no data).
OBJ files require that parameters are specified after every line start element except the "end" command. This patch skips all lines that are missing that information unless there is a multi line context. Reviewed By: mont29 Maniphest Tasks: T83671 Differential Revision: https://developer.blender.org/D9828
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 e20d50ea..df600bf1 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, 8, 0),
+ "version": (3, 8, 1),
"blender": (2, 81, 6),
"location": "File > Import-Export",
"description": "Import-Export OBJ, Import OBJ mesh, UV's, materials and textures",