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>2015-04-08 13:39:30 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-08 13:39:30 +0300
commit74df87c3589053cc567493657bef20160a5e67df (patch)
tree8c6257b5bb95ea3d04faa6ddf71fc35a4758cfe3 /io_mesh_stl/__init__.py
parent8ec82c7a976fc13bdb9dae3c84ac58e13e01a8b9 (diff)
Fix T44292: Work around invalid binary STL files on import.
Some report a size (facet number) of zero... To think even something as simple as STL format cannot be respected universally... :'(
Diffstat (limited to 'io_mesh_stl/__init__.py')
-rw-r--r--io_mesh_stl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 8a0b1086..9e693271 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "STL format",
"author": "Guillaume Bouchard (Guillaum)",
- "version": (1, 1, 1),
+ "version": (1, 1, 2),
"blender": (2, 74, 0),
"location": "File > Import-Export > Stl",
"description": "Import-Export STL files",