diff --git a/__init__.py b/__init__.py index 31cce67..b1e83e4 100644 --- a/__init__.py +++ b/__init__.py @@ -6,7 +6,7 @@ 'author': 'GiveMeAllYourCats & Hotox, Unofficial version maintained by Yusarina', 'location': 'View 3D > Tool Shelf > CATS', 'description': 'A tool designed to shorten steps needed to import and optimize models into VRChat', - 'version': (4, 0, 3, 0), # Has to be (x, x, x) not [x, x, x]!! Only change this version and the dev branch var right before publishing the new update! + 'version': (4, 0, 3, 1), # Has to be (x, x, x) not [x, x, x]!! Only change this version and the dev branch var right before publishing the new update! 'blender': (4, 0, 0), 'wiki_url': 'https://github.com/Yusarina/Cats-Blender-Plugin-Unofficial-/wiki', 'tracker_url': 'https://github.com/Yusarina/Cats-Blender-Plugin-Unofficial-/issues', diff --git a/resources/translations.csv b/resources/translations.csv index 1fe93b7..db9997a 100644 --- a/resources/translations.csv +++ b/resources/translations.csv @@ -539,7 +539,7 @@ LegacyReadButton.label,Legacy features wiki,従来の機能の Wiki,레거시 LegacyReadButton.URL,https://github.com/Yusarina/Cats-Blender-Plugin-Unofficial-/wiki/Legacy-Features,, LegacyReadButton.success,Github wiki opened.,, MMDOptionswiki.label,MMD Options Wiki,従来の機能の Wiki,레거시 기능 위키 -MMDOptionswiki.URL,https://github.com/Yusarina/Cats-Blender-Plugin-Unofficial-/wiki/Legacy-Features,, +MMDOptionswiki.URL,https://github.com/Yusarina/Cats-Blender-Plugin-Unofficial-/wiki/Features#mmd-options,, MMDOptionswiki.success,Github wiki opened.,, PatchnotesButton.label,Latest Patchnotes,最新のパッチノート,최신 패치노트 PatchnotesButton.URL,https://github.com/Yusarina/Cats-Blender-Plugin-Unofficial-/releases,, diff --git a/ui/mmdoptions.py b/ui/mmdoptions.py index b1f09ac..ae2c2da 100644 --- a/ui/mmdoptions.py +++ b/ui/mmdoptions.py @@ -73,7 +73,7 @@ def draw(self, context): @register_wrap class MMDOptionswiki(bpy.types.Operator): - bl_idname = 'legacy_read.help' + bl_idname = 'mmdoptionwiki_read.help' bl_label = t('MMDOptionswiki.label') bl_options = {'REGISTER', 'UNDO', 'INTERNAL'} diff --git a/ui/quickaccess.py b/ui/quickaccess.py index c6f8ad5..630f117 100644 --- a/ui/quickaccess.py +++ b/ui/quickaccess.py @@ -140,7 +140,7 @@ def draw(self, context): row.alignment = 'RIGHT' row.scale_y = 1.1 row.operator(Armature_manual.StopPoseModeNoReset.bl_idname, text='', icon=globs.ICON_POSE_MODE) - if not Eyetracking.eye_left: + if armature_obj or armature_obj.mode != 'POSE': row = col.row(align=True) row.scale_y = 0.9 row.operator(Armature_manual.PoseToShape.bl_idname, icon='SHAPEKEY_DATA')