feat: improve addon bl_infos and changelog

This commit is contained in:
Swann 2020-02-27 23:15:31 +01:00
parent 99feeb9b5e
commit d22586cd6e
No known key found for this signature in database
GPG Key ID: B880407E0F5F413E
2 changed files with 8 additions and 3 deletions

View File

@ -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.

View File

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