Docs: Improve Add-on Table and readmes #70

Merged
Nick Alberelli merged 16 commits from docs/addon-release-improvements into main 2023-06-05 16:09:57 +02:00
2 changed files with 38 additions and 25 deletions
Showing only changes of commit 4c4910c002 - Show all commits

View File

@ -0,0 +1,13 @@
## 0.1.1 - 2023-06-02
### ADDED
- Add release system
### FIXED
- Fix Addon Install Instructions
- Fix Addons Spelling and Links (#54)
### UN-CATEGORIZED
- [DOCS] add lighting_override readme from notion
- Include Addon READMEs in Pipeline Docs (#49)

View File

@ -1,26 +1,26 @@
from . import categories
from .categories import *
from . import templates, json_io, execution, ui, override_picker
bl_info = {
"name": "Lighting Overrider",
"author": "Simon Thommes",
"version": (0, 1, 0),
"blender": (3, 0, 0),
"location": "3D Viewport > Sidebar > Overrides",
"description": "Tool for the Blender Studio to create, manage and store local python overrides of linked data on a shot and sequence level.",
"category": "Workflow",
}
modules = [templates]
modules += [globals()[mod] for mod in categories.__all__]
modules += [json_io, execution, ui, override_picker]
def register():
for m in modules:
m.register()
def unregister():
for m in modules:
from . import categories
from .categories import *
from . import templates, json_io, execution, ui, override_picker
bl_info = {
"name": "Lighting Overrider",
"author": "Simon Thommes",
"version": (0, 1, 1),
"blender": (3, 0, 0),
"location": "3D Viewport > Sidebar > Overrides",
"description": "Tool for the Blender Studio to create, manage and store local python overrides of linked data on a shot and sequence level.",
"category": "Workflow",
}
modules = [templates]
modules += [globals()[mod] for mod in categories.__all__]
modules += [json_io, execution, ui, override_picker]
def register():
for m in modules:
m.register()
def unregister():
for m in modules:
m.unregister()