Skip to content

Commit

Permalink
Merge pull request #39 from Yusarina/blender-40-dev
Browse files Browse the repository at this point in the history
Cats Blender Plugin 4.0.3.0 (For blender 4.0)
  • Loading branch information
Yusarina authored Feb 1, 2024
2 parents eaecc2b + 7dfb88c commit cd83058
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion resources/translations.csv
Original file line number Diff line number Diff line change
Expand Up @@ -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,,
Expand Down
2 changes: 1 addition & 1 deletion ui/mmdoptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'}

Expand Down
2 changes: 1 addition & 1 deletion ui/quickaccess.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit cd83058

Please sign in to comment.