-
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.
Bugfix: Unicode filepath support in Fbx PostProcess Stage with DazBri…
…dge Library integration
- Loading branch information
1 parent
7ce9cb5
commit 8f95cee
Showing
5 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
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
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.15" | ||
#define PRODUCT_VERSION_STRING "2024 version 2.17" | ||
#define VER_MAJOR 2024 | ||
#define VER_MINOR 2 | ||
#define VER_REV 15 | ||
#define VER_BUILD 105 | ||
#define VER_REV 17 | ||
#define VER_BUILD 107 | ||
|
||
#define TOSTRING(x) #x | ||
#define VERSION_STRING TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_REV) "." TOSTRING(VER_BUILD) |
Submodule dzbridge-common
updated
2 files
+2 −2 | include/common_version.h | |
+4 −2 | src/DzBridgeAction.cpp |