Skip to content

Commit

Permalink
Hotfix 0.12.1
Browse files Browse the repository at this point in the history
Update 0.12.1
  • Loading branch information
Darkblader24 committed Dec 10, 2018
2 parents c78bb13 + c1890db commit 83642ac
Show file tree
Hide file tree
Showing 11 changed files with 461 additions and 191 deletions.
32 changes: 8 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cats Blender Plugin (0.12.0)
# Cats Blender Plugin (0.12.1)

A tool designed to shorten steps needed to import and optimize models into VRChat.
Compatible models are: MMD, XNALara, Mixamo, Source Engine, Unreal Engine, DAZ/Poser, Blender Rigify, Sims 2, Motion Builder, 3DS Max and potentially more
Expand Down Expand Up @@ -333,6 +333,13 @@ It checks for a new version automatically once every day.

## Changelog

#### 0.12.1
- **General**:
- Fixed an error removing the whole Cats UI
- Fixed an error on Fix Model and other various buttons
- Stopping Pose Mode in Blender 2.8 now selects the Box Selection tool instead of the 3D Cursor
- Updated mmd_tools (improved 2.8 materials)

#### 0.12.0
- **Model**:
- Made VRoid (.vrm) models compatible
Expand Down Expand Up @@ -390,29 +397,6 @@ It checks for a new version automatically once every day.
- **Custom Model Creation**:
- Fixed Attach Mesh throwing an error when the mesh has no vertex groups

#### 0.11.3 [YANKED]

#### 0.11.2
- **Model**:
- Fix: Joints and Rigidbodies now get deleted correctly

#### 0.11.1
- **Export**:
- Embed Textures is not longer enabled by default, but can now be enabled in the settings
- **Settings and Updates:**
- Renamed "Updater" panel to "Settings & Updates"
- Added setting to embed textures on export
- Settings are saved into a local settings file
- Issue: Settings get reset with every CATS update currently
- This panel now shows the current CATS version
- **Translations:**
- Added a warning when you are temporarily IP banned by Google Translate
- **Eye Tracking:**
- Wink Right shape keys are now detected more reliably
- **General**:
- Cats no longer unhides everything whenever it does something, it only unhides the current model
- This helps a lot when working with multiple models

Read the full changelog [here](https://github.com/michaeldegroot/cats-blender-plugin/releases).


Expand Down
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'author': 'GiveMeAllYourCats',
'location': 'View 3D > Tool Shelf > CATS',
'description': 'A tool designed to shorten steps needed to import and optimize models into VRChat',
'version': [0, 12, 0], # Only change this version and the dev branch var right before publishing the new update!
'version': (0, 12, 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': (2, 80, 0),
'wiki_url': 'https://github.com/michaeldegroot/cats-blender-plugin',
'tracker_url': 'https://github.com/michaeldegroot/cats-blender-plugin/issues',
Expand Down Expand Up @@ -117,8 +117,8 @@ def register():
# Register updater
try:
addon_updater_ops.register(bl_info)
except ValueError:
print('Error while registering updater.')
except ValueError as e:
print('\n!!! Error while registering Updater:\n' + str(e) + '\n')
pass

# Register all classes
Expand Down
Loading

0 comments on commit 83642ac

Please sign in to comment.