Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blender_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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", ]
Expand Down
4 changes: 2 additions & 2 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}
}
}