Skip to content

Commit

Permalink
version 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mweibel committed Jul 21, 2023
1 parent c1f0809 commit 5cf7b37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helio_blender_addon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
bl_info = {
"name": "Helio Cloud Rendering",
"blender": (3, 20, 0),
"version": (0, 1, 11),
"version": (0, 1, 12),
"category": "Render",
"tracker_url": "https://github.com/helio/blender-addon/issues"
}
Expand Down
2 changes: 1 addition & 1 deletion helio_blender_addon/addon_updater_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,7 @@ def select_link_function(self, tag):
link = tag["zipball_url"]

# -- Example: select the first (or only) asset instead source code --
if "assets" in tag and "browser_download_url" in tag["assets"][0]:
if "assets" in tag and len(tag["assets"]) > 0 and "browser_download_url" in tag["assets"][0]:
link = tag["assets"][0]["browser_download_url"]

# -- Example: select asset based on OS, where multiple builds exist --
Expand Down

0 comments on commit 5cf7b37

Please sign in to comment.