From 142ef5b432e883f70fdd103e006f47393c6b3a18 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle <carlisle.b3d@gmail.com> Date: Fri, 29 Jun 2018 15:13:22 -0400 Subject: [PATCH] Add missing add-on version metadata Only default enabled addons Give each the version: 1.0.0 --- io_anim_bvh/__init__.py | 1 + io_curve_svg/__init__.py | 1 + io_mesh_ply/__init__.py | 1 + io_scene_3ds/__init__.py | 1 + 4 files changed, 4 insertions(+) diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py index 27c8003b6..8a63fbbc8 100644 --- a/io_anim_bvh/__init__.py +++ b/io_anim_bvh/__init__.py @@ -21,6 +21,7 @@ bl_info = { "name": "BioVision Motion Capture (BVH) format", "author": "Campbell Barton", + "version": (1, 0, 0), "blender": (2, 74, 0), "location": "File > Import-Export", "description": "Import-Export BVH from armature objects", diff --git a/io_curve_svg/__init__.py b/io_curve_svg/__init__.py index d97b9b431..188e91897 100644 --- a/io_curve_svg/__init__.py +++ b/io_curve_svg/__init__.py @@ -21,6 +21,7 @@ bl_info = { "name": "Scalable Vector Graphics (SVG) 1.1 format", "author": "JM Soler, Sergey Sharybin", + "version": (1, 0, 0), "blender": (2, 57, 0), "location": "File > Import > Scalable Vector Graphics (.svg)", "description": "Import SVG as curves", diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py index 3e84a4fd8..77259690b 100644 --- a/io_mesh_ply/__init__.py +++ b/io_mesh_ply/__init__.py @@ -21,6 +21,7 @@ bl_info = { "name": "Stanford PLY format", "author": "Bruce Merry, Campbell Barton", + "version": (1, 0, 0), "blender": (2, 74, 0), "location": "File > Import-Export", "description": "Import-Export PLY mesh data withs UV's and vertex colors", diff --git a/io_scene_3ds/__init__.py b/io_scene_3ds/__init__.py index 4436141ed..9236c07e7 100644 --- a/io_scene_3ds/__init__.py +++ b/io_scene_3ds/__init__.py @@ -21,6 +21,7 @@ bl_info = { "name": "Autodesk 3DS format", "author": "Bob Holcomb, Campbell Barton", + "version": (1, 0, 0), "blender": (2, 74, 0), "location": "File > Import-Export", "description": "Import-Export 3DS, meshes, uvs, materials, textures, " -- GitLab