diff --git a/CHANGELOG.md b/CHANGELOG.md index 8700ad6..da2de97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,3 +35,4 @@ All notable changes to this project will be documented in this file. - Right management takes view-layer in account for object selection. - Use a basic BFS approach for replication graph pre-load. - Serialization is now based on marshal (2x performance improvements). +- Let pip chose python dependencies install path. \ No newline at end of file diff --git a/multi_user/__init__.py b/multi_user/__init__.py index ef130a4..2c8b800 100644 --- a/multi_user/__init__.py +++ b/multi_user/__init__.py @@ -1,11 +1,15 @@ bl_info = { "name": "Multi-User", "author": "Swann Martinez", - "description": "", + "version": (0, 0, 2), + "description": "Enable real-time collaborative workflow inside blender", "blender": (2, 80, 0), - "location": "", + "location": "3D View > Sidebar > Multi-User tab", "warning": "Unstable addon, use it at your own risks", - "category": "Collaboration" + "category": "Collaboration", + "wiki_url": "https://multi-user.readthedocs.io/en/develop/index.html", + "tracker_url": "https://gitlab.com/slumber/multi-user/issues", + "support": "COMMUNITY" }