diff --git a/blender_manifest.toml b/blender_manifest.toml index 815cc16..aee6249 100644 --- a/blender_manifest.toml +++ b/blender_manifest.toml @@ -10,7 +10,7 @@ type = "add-on" # Blender version support blender_version_min = "4.2.0" -blender_version_max = "5.1.0" +blender_version_max = "5.2.0" # License - update as needed license = [ "SPDX:GPL-3.0-or-later", ] diff --git a/constants.py b/constants.py index da8e5e2..fabaa4c 100644 --- a/constants.py +++ b/constants.py @@ -7,7 +7,7 @@ # Version and metadata ADDON_VERSION = (1, 3, 0) BLENDER_MIN_VERSION = (4, 2, 0) # Extension format introduced in 4.2.0 -BLENDER_MAX_VERSION = (5, 1, 0) # Tested up to 5.0, allow 5.1 minor updates +BLENDER_MAX_VERSION = (5, 2, 0) # Tested up to 5.0, allow 5.1 minor updates ADDON_NAME = "Physics Dropper" # Default values @@ -170,4 +170,4 @@ 'drop': {'type': 'V', 'shift': False, 'ctrl': False, 'alt': False}, 'apply': {'type': 'V', 'shift': True, 'ctrl': False, 'alt': False}, 'force': {'type': 'F', 'shift': False, 'ctrl': False, 'alt': False} -} \ No newline at end of file +}