-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Blender 4.3 Eevee Hashed/Dithered mode compatibility fix
- Loading branch information
1 parent
041294f
commit 7ce9cb5
Showing
4 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../appdata_common/Blender Foundation/Blender/BLENDER_VERSION/scripts/addons/DTB/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#pragma once | ||
|
||
#define PRODUCT_VERSION_STRING "2024 version 2.14" | ||
#define PRODUCT_VERSION_STRING "2024 version 2.15" | ||
#define VER_MAJOR 2024 | ||
#define VER_MINOR 2 | ||
#define VER_REV 14 | ||
#define VER_BUILD 100 | ||
#define VER_REV 15 | ||
#define VER_BUILD 105 | ||
|
||
#define TOSTRING(x) #x | ||
#define VERSION_STRING TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_REV) "." TOSTRING(VER_BUILD) |