Bug Fixes

- Fixes issue where console was getting spammed re armature selection.
- Fixes apply as rest pose issues and improves the system. https://github.com/teamneoneko/Avatar-Toolkit/issues/52
- Fixes Apply pose to shapekey, it does what it's meant to do now. https://github.com/teamneoneko/Avatar-Toolkit/issues/52
- Fixes error in updater when there no updates to list.
This commit is contained in:
Yusarina
2024-11-26 02:42:17 +00:00
parent 56706c859f
commit 346f73ebb0
4 changed files with 135 additions and 118 deletions
+4
View File
@@ -191,6 +191,10 @@ def finish_update_checking(error: str = '') -> None:
return None # Important for bpy.app.timers
def update_now(latest: bool = False) -> None:
if not version_list:
print("No version list available. Please check for updates first.")
return
if latest:
update_link = version_list[latest_version_str][0]
else: