From cd103cbac5c5d80d94e19cfb84fe768e82601d6f Mon Sep 17 00:00:00 2001 From: CoDEmanX <codemanx@gmx.de> Date: Tue, 19 Nov 2013 15:58:46 +0100 Subject: [PATCH] Fix for bl_info blender versions, use (2, 6x, 0) not (2, 6, x). --- io_export_after_effects.py | 2 +- node_efficiency_tools.py | 12 ++++++------ uv_texture_atlas.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/io_export_after_effects.py b/io_export_after_effects.py index 56396eef1..1594b6258 100644 --- a/io_export_after_effects.py +++ b/io_export_after_effects.py @@ -23,7 +23,7 @@ bl_info = { "description": "Export cameras, selected objects & camera solution 3D Markers to Adobe After Effects CS3 and above", "author": "Bartek Skorupa", "version": (0, 64), - "blender": (2, 6, 9), + "blender": (2, 69, 0), "location": "File > Export > Adobe After Effects (.jsx)", "warning": "", "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"\ diff --git a/node_efficiency_tools.py b/node_efficiency_tools.py index 1046e60ec..64461aa26 100644 --- a/node_efficiency_tools.py +++ b/node_efficiency_tools.py @@ -20,8 +20,8 @@ bl_info = { 'name': "Nodes Efficiency Tools", 'author': "Bartek Skorupa", 'version': (2, 33), - 'blender': (2, 6, 9), - 'location': "Node Editor Properties Panel (Ctrl-SPACE)", + 'blender': (2, 69, 0), + 'location': "Node Editor Properties Panel (Ctrl+Space)", 'description': "Nodes Efficiency Tools", 'warning': "", 'wiki_url': "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Nodes/Nodes_Efficiency_Tools", @@ -1106,7 +1106,7 @@ class DetachOutputs(Operator, NodeToolBase): bl_idname = "node.detach_outputs" bl_label = "Detach Outputs" bl_options = {'REGISTER', 'UNDO'} - + def execute(self, context): nodes, links = get_nodes_links(context) selected = context.selected_nodes @@ -1119,7 +1119,7 @@ class DetachOutputs(Operator, NodeToolBase): for new_node in new_nodes: new_node.select = True bpy.ops.transform.translate('INVOKE_DEFAULT') - + return {'FINISHED'} @@ -1127,7 +1127,7 @@ class LinkToOutputNode(Operator, NodeToolBase): bl_idname = "node.link_to_output_node" bl_label = "Link to Output Node" bl_options = {'REGISTER', 'UNDO'} - + @classmethod def poll(cls, context): space = context.space_data @@ -1138,7 +1138,7 @@ class LinkToOutputNode(Operator, NodeToolBase): ): valid = True return valid - + def execute(self, context): nodes, links = get_nodes_links(context) active = nodes.active diff --git a/uv_texture_atlas.py b/uv_texture_atlas.py index 1365d3bdc..928384023 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", -- GitLab