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:
authorRyan Inch <mythologylover75@gmail.com>2020-05-08 10:30:35 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-05-08 10:30:35 +0300
commit980668439a65506da6c46d60ebcaae807d030dbb (patch)
tree80a6dd8803e277f45d73ffd306603d54623dd806
parent4fe390b6bad2807f604656752f122861fd26efc1 (diff)
Collection Manager: Update bl_info. Task: T69577
Added wiki_url back to bl_info because the addon can be downloaded from feedback threads and used with older blender versions. Added tracker_url to bl_info to point people to my thread on blenderartists.org for feedback and bug reports.
-rw-r--r--object_collection_manager/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 242ca1aa..65ebe49c 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,11 +22,13 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
- "version": (2, 7, 19),
+ "version": (2, 7, 20),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel
"doc_url": "{BLENDER_MANUAL_URL}/addons/interface/collection_manager.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/interface/collection_manager.html",
+ "tracker_url": "https://blenderartists.org/t/release-addon-collection-manager-feedback/1186198/",
"category": "Interface",
}