Skip to content

Commit

Permalink
version update, code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbui78 committed Oct 23, 2023
1 parent eedc422 commit 741ffef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/common_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
#define COMMON_MAJOR 2023
#define COMMON_MINOR 2
#define COMMON_REV 1
#define COMMON_BUILD 79
#define COMMON_BUILD 80

#define COMMON_VERSION DZ_MAKE_VERSION( COMMON_MAJOR, COMMON_MINOR, COMMON_REV, COMMON_BUILD )
4 changes: 1 addition & 3 deletions src/DzBridgeAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2457,8 +2457,7 @@ unsigned int DzBridgeAction::calcCRC32(QString sFilename)
return crc32Result;
}

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

// Remove Extra Geograft nodes and geometry
// TODO: replace with list generated during export
if (m_bRemoveDuplicateGeografts)
{
for (QString searchString : m_aGeografts)
Expand Down

0 comments on commit 741ffef

Please sign in to comment.