Skip to content

Commit

Permalink
Merge pull request #40 from Yusarina/blender-36-dev
Browse files Browse the repository at this point in the history
Cats Blender Plugin 3.6.5.1 (Only for Blender 3.6)
  • Loading branch information
Yusarina authored Feb 1, 2024
2 parents f68425e + df7493b commit d5c7cb6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ resources/icons/supporters/**
resources/supporters.json
.coverage
mmd_tools_local2
README.md
README
readme.md
readme
readme.txt
README.text
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Cats Blender Plugin Blender 3.6 Main.

### This is the main version for blender 3.6 only! you can use this branch but we recomend using an released version from releases tab.
Expand Down
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': (3, 6, 5, 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': (3, 6, 5, 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': (3, 6, 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 d5c7cb6

Please sign in to comment.