Skip to content

Commit

Permalink
Version bump to 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarEmaraDev committed Jan 25, 2025
1 parent 8fc1b90 commit 8a98c9e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Unreleased

### Added

### Fixed

### Changed

## 2.3 (25 January 2025)

### Added
Expand Down
11 changes: 6 additions & 5 deletions animation_nodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
"name": "Animation Nodes",
"description": "Node based visual scripting system designed for motion graphics in Blender.",
"author": "Jacques Lucke, Omar Emara",
"version": (2, 3, 0),
"blender": (4, 2, 0),
"version": (2, 4, 0),
"blender": (4, 4, 0),
"location": "Animation Nodes Editor",
"category": "Node",
"warning": "This version is still in development."
}


Expand Down Expand Up @@ -90,9 +91,9 @@


from . preferences import getBlenderVersion
if getBlenderVersion() < (4, 2, 0):
if getBlenderVersion() < (4, 4, 0):
message = ("\n\n"
"The Animation Nodes addon requires at least Blender 4.2.\n"
"The Animation Nodes addon requires at least Blender 4.4.\n"
"Your are using an older version.\n"
"Please download the latest official release.")
raise Exception(message)
Expand Down Expand Up @@ -129,7 +130,7 @@
"You have four options:\n"
" 1. Download a version of Animation Nodes with a suitable python version.\n"
" 2. Try to make Blender use another Python version.\n"
" (Blender 4.2 officially uses Python 3.11.x)\n"
" (Blender 4.4 officially uses Python 3.11.x)\n"
" 3. Compile Animation Nodes yourself using the correct Python version.\n"
" (Look in the developer manual for more information)\n"
" 4. Create an issue on Github and ask if someone can create a build for you."
Expand Down

0 comments on commit 8a98c9e

Please sign in to comment.