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:
authorCoDEmanX <codemanx@gmx.de>2013-11-19 18:58:46 +0400
committerCoDEmanX <codemanx@gmx.de>2013-11-19 19:01:22 +0400
commitcd103cbac5c5d80d94e19cfb84fe768e82601d6f (patch)
tree114ce3e5ca107db3e56ed10bee7c2706e8ac6c80 /uv_texture_atlas.py
parent84b1dfdb5e7e1aef9421aa5bbe397b5e23d5ea9f (diff)
Fix for bl_info blender versions, use (2, 6x, 0) not (2, 6, x).
Diffstat (limited to 'uv_texture_atlas.py')
-rw-r--r--uv_texture_atlas.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uv_texture_atlas.py b/uv_texture_atlas.py
index 1365d3bd..92838402 100644
--- a/uv_texture_atlas.py
+++ b/uv_texture_atlas.py
@@ -21,7 +21,7 @@ bl_info = {
"name": "Texture Atlas",
"author": "Andreas Esau, Paul Geraskin, Campbell Barton",
"version": (0, 2, 0),
- "blender": (2, 6, 7),
+ "blender": (2, 67, 0),
"location": "Properties > Render",
"description": "A simple Texture Atlas for unwrapping many objects. It creates additional UV",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/UV/TextureAtlas",