Skip to content

Commit

Permalink
fix output structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mweibel committed Jul 19, 2023
1 parent dfc8082 commit d54fe45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,10 @@ def invoke(self, context, event):
engine_id += '_optix'

major, minor, patch = bpy.app.version
full_version = f"{major}.{minor}.{patch}"
full_version = '.'.join(map(str, bpy.app.version))
data = {
"version": "1.0.0",
"addon_version": '.'.join(map(str, addon_updater_ops.updater.current_version)),
"catalog": {
"tool": {
"id": f"blender_{major}_{minor}",
Expand All @@ -290,6 +291,7 @@ def invoke(self, context, event):
"id": 1,
"scene_id": scene.name,
"scene_name": scene.name,
"color": "#250E37",
"enabled": True,
"camera": camera,
"resolution": {
Expand Down

0 comments on commit d54fe45

Please sign in to comment.