From 693ebbadd8b425e6cb8f699b5bf8d1a2e81931f6 Mon Sep 17 00:00:00 2001 From: Blender Defender Date: Tue, 19 Dec 2023 13:47:38 +0100 Subject: [PATCH] chore: Bump version number 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 --- __init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 3ac2a27..7e2437d 100644 --- a/__init__.py +++ b/__init__.py @@ -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.", @@ -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.