Skip to content

Commit 52f29d4

Browse files
committed
Try out Blender 5.0 beta
1 parent 3a5212a commit 52f29d4

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ being too big for intelliSense to work.*
9191
|4.3|[https://pypi.org/project/fake-bpy-module-4.3/](https://pypi.org/project/fake-bpy-module-4.3/)|
9292
|4.4|[https://pypi.org/project/fake-bpy-module-4.4/](https://pypi.org/project/fake-bpy-module-4.4/)|
9393
|4.5|[https://pypi.org/project/fake-bpy-module-4.5/](https://pypi.org/project/fake-bpy-module-4.5/)|
94+
|5.0|[https://pypi.org/project/fake-bpy-module-5.0/](https://pypi.org/project/fake-bpy-module-5.0/)|
9495
|latest|[https://pypi.org/project/fake-bpy-module/](https://pypi.org/project/fake-bpy-module/)|
9596
||[https://pypi.org/project/fake-bpy-module-latest/](https://pypi.org/project/fake-bpy-module-latest/)|
9697

src/versions.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ SUPPORTED_BLENDER_VERSIONS_BASE:
2323
- "4.3"
2424
- "4.4"
2525
- "4.5"
26+
- "5.0"
2627

2728
# Same list, but adding "latest".
2829
SUPPORTED_BLENDER_VERSIONS:
@@ -49,6 +50,7 @@ SUPPORTED_BLENDER_VERSIONS:
4950
- "4.3"
5051
- "4.4"
5152
- "4.5"
53+
- "5.0"
5254
- "latest"
5355

5456
SUPPORTED_UPBGE_VERSIONS_BASE:
@@ -89,6 +91,9 @@ BLENDER_TAG_NAME:
8991
# 4.5.0 has broken functions signatures format.
9092
# See https://projects.blender.org/blender/blender/issues/141853
9193
"4.5": "v4.5.4"
94+
# Not ideal, since branch may change,
95+
# while we're still using older commit in downloads.
96+
"5.0": "blender-v5.0-release"
9297
"latest": "main"
9398

9499
UPBGE_TAG_NAME:
@@ -157,6 +162,7 @@ BLENDER_DOWNLOAD_URL_WIN64:
157162
"4.3": "https://download.blender.org/release/Blender4.3/blender-4.3.0-windows-x64.zip"
158163
"4.4": "https://download.blender.org/release/Blender4.4/blender-4.4.0-windows-x64.zip"
159164
"4.5": "https://download.blender.org/release/Blender4.5/blender-4.5.4-windows-x64.zip"
165+
"5.0": "https://cdn.builder.blender.org/download/daily/blender-5.0.0-beta+v50.d2ad7c75b650-windows.amd64-release.zip"
160166

161167
BLENDER_DOWNLOAD_URL_LINUX:
162168
"2.78": "https://download.blender.org/release/Blender2.78/blender-2.78c-linux-glibc219-x86_64.tar.bz2"
@@ -182,6 +188,7 @@ BLENDER_DOWNLOAD_URL_LINUX:
182188
"4.3": "https://download.blender.org/release/Blender4.3/blender-4.3.0-linux-x64.tar.xz"
183189
"4.4": "https://download.blender.org/release/Blender4.4/blender-4.4.0-linux-x64.tar.xz"
184190
"4.5": "https://download.blender.org/release/Blender4.5/blender-4.5.4-linux-x64.tar.xz"
191+
"5.0": "https://cdn.builder.blender.org/download/daily/blender-5.0.0-beta+v50.d2ad7c75b650-linux.x86_64-release.tar.xz"
185192
# yamllint enable rule:line-length
186193

187194
BLENDER_NEED_MOVE_MACOSX:
@@ -215,6 +222,7 @@ BLENDER_NEED_MOVE_LINUX:
215222
"4.3": "blender-4.3.0-linux-x64"
216223
"4.4": "blender-4.4.0-linux-x64"
217224
"4.5": "blender-4.5.4-linux-x64"
225+
"5.0": "blender-5.0.0-beta+v50.d2ad7c75b650-linux.x86_64-release"
218226

219227
BLENDER_CHECKSUM_URL:
220228
"2.78": "https://download.blender.org/release/Blender2.78/release278c.md5"
@@ -240,3 +248,4 @@ BLENDER_CHECKSUM_URL:
240248
"4.3": "https://download.blender.org/release/Blender4.3/blender-4.3.0.md5"
241249
"4.4": "https://download.blender.org/release/Blender4.4/blender-4.4.0.md5"
242250
"4.5": "https://download.blender.org/release/Blender4.5/blender-4.5.4.md5"
251+
"5.0": "BETA"

tools/utils/download_blender.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ function verify_download_integrity() {
5555
return 1
5656
fi
5757

58+
if [ "${BLENDER_CHECKSUM_URL[${version}]}" = "BETA" ]; then
59+
echo "Skipping integrity check for Blender ${version} (BETA version)."
60+
return 0
61+
fi
62+
5863
echo "Found Blender ${version} download. Verifying the integrity."
5964

6065
local target_filename download_dir checksum_url checksum_filename

0 commit comments

Comments
 (0)