[Bf-extensions-cvs] [98344788] master: Collection Manager: Update bl_info. Task: T69577

Ryan Inch noreply at git.blender.org
Fri May 8 09:37:24 CEST 2020


Commit: 98344788e1c48e4d336cdee026e13c4a75f75438
Author: Ryan Inch
Date:   Fri May 8 03:30:35 2020 -0400
Branches: master
https://developer.blender.org/rBA98344788e1c48e4d336cdee026e13c4a75f75438

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.

===================================================================

M	object_collection_manager/__init__.py

===================================================================

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",
 }



More information about the Bf-extensions-cvs mailing list