Skip to content

Commit

Permalink
chore: Bump version number
Browse files Browse the repository at this point in the history
Updated the version number of Gizmodal Ops to 1.0.1. This release contains two bug fixes and makes Gizmodal Ops compatible with Blender 4.0

closes #12 and #10
  • Loading branch information
BlenderDefender committed Dec 19, 2023
1 parent 2eeceec commit 693ebba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
bl_info = {
"name": "Gizmodal Ops",
"author": "Mat Brady, Blender Defender",
"version": (1, 0, 0),
"version": (1, 0, 1),
"blender": (2, 83, 0),
"location": "Sidebar > View Tab",
"description": "An add-on that seamlessly blends Gizmo and Modal operations.",
Expand All @@ -57,7 +57,8 @@ def register_keymap(*args):

# ! The 3D View keymap is not needed in Blender 4.0 and newer.
# ! It is there, to work with legacy Blender versions (3.x and older)
keymaps = ["3D View", "Pose", "Object Mode", "Curve", "Curves", "Mesh", "Armature", "Metaball", "Lattice", "UV Editor"]
keymaps = ["3D View", "Pose", "Object Mode", "Curve", "Curves",
"Mesh", "Armature", "Metaball", "Lattice", "UV Editor"]

for map in keymaps:
# Try to get the active keymap for the current map name.
Expand Down

0 comments on commit 693ebba

Please sign in to comment.