Skip to content

Commit 741ffef

Browse files
committed
version update, code cleanup
1 parent eedc422 commit 741ffef

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

include/common_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
#define COMMON_MAJOR 2023
66
#define COMMON_MINOR 2
77
#define COMMON_REV 1
8-
#define COMMON_BUILD 79
8+
#define COMMON_BUILD 80
99

1010
#define COMMON_VERSION DZ_MAKE_VERSION( COMMON_MAJOR, COMMON_MINOR, COMMON_REV, COMMON_BUILD )

src/DzBridgeAction.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2457,8 +2457,7 @@ unsigned int DzBridgeAction::calcCRC32(QString sFilename)
24572457
return crc32Result;
24582458
}
24592459

2460-
// TODO: This method will fail because uncompressed textures of the same dimension
2461-
// will have the same file size. Instead, must use a file content hash function.
2460+
// 2023-Oct-23: Method now works (mostly), size file check supplemented with CRC32 as file content hash.
24622461
QString DzBridgeAction::makeUniqueFilename(QString sTargetFilename, QString sOriginalFilename)
24632462
{
24642463
if (QFileInfo(sTargetFilename).exists() != true)
@@ -4373,7 +4372,6 @@ bool DzBridgeAction::postProcessFbx(QString fbxFilePath)
43734372
}
43744373

43754374
// Remove Extra Geograft nodes and geometry
4376-
// TODO: replace with list generated during export
43774375
if (m_bRemoveDuplicateGeografts)
43784376
{
43794377
for (QString searchString : m_aGeografts)

0 commit comments

Comments
 (0)