Skip to content

Commit

Permalink
Upgraded to 1.0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tgraupmann committed Apr 13, 2023
1 parent b6d8e81 commit 614b9e3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Binary file modified CChromaEditorLibrary/CChromaEditorLibrary.aps
Binary file not shown.
Binary file modified CChromaEditorLibrary/CChromaEditorLibrary.rc
Binary file not shown.
4 changes: 2 additions & 2 deletions CChromaEditorLibrary/RzChromaSDK.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ RZRESULT RzChromaSDK::GetLibraryLoadedState()
path += CHROMASDKDLL;

// check the library file version
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path, 1, 0, 0, 7))
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path, 1, 0, 0, 8))
{
ChromaLogger::fprintf(stderr, "Detected old version of Chroma SDK Library!\r\n");
return RZRESULT_DLL_NOT_FOUND;
Expand Down Expand Up @@ -325,7 +325,7 @@ RZRESULT RzChromaSDK::GetLibraryLoadedState()
}

// check the library file version
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(strPathSearch, 3, 7, 3, 130))
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(strPathSearch, 3, 8, 0, 154))
{
ChromaLogger::fprintf(stderr, "Detected old version of Chroma SDK Library!\r\n");
return RZRESULT_DLL_NOT_FOUND;
Expand Down
2 changes: 1 addition & 1 deletion CChromaEditorLibrary/RzChromaStreamPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ RZRESULT RzChromaStreamPlugin::GetLibraryLoadedState()
path += CHROMA_STREAMING_DLL;

// check the library file version
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path, 1, 0, 0, 7))
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path, 1, 0, 0, 8))
{
ChromaLogger::fprintf(stderr, "Detected old version of Chroma Stream Library!\r\n");
return RZRESULT_DLL_NOT_FOUND;
Expand Down
2 changes: 1 addition & 1 deletion CConsoleEditor/ChromaAnimationAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ int ChromaAnimationAPI::InitAPI()
path += CHROMA_EDITOR_DLL;

// check the library file version
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path.c_str(), 1, 0, 0, 7))
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path.c_str(), 1, 0, 0, 8))
{
ChromaLogger::fprintf(stderr, "Detected old version of Chroma Editor Library!\r\n");
return RZRESULT_DLL_NOT_FOUND;
Expand Down
2 changes: 1 addition & 1 deletion Cpp_UnitTests/ChromaAnimationAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ int ChromaAnimationAPI::InitAPI()
path += CHROMA_EDITOR_DLL;

// check the library file version
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path.c_str(), 1, 0, 0, 7))
if (!VerifyLibrarySignature::IsFileVersionSameOrNewer(path.c_str(), 1, 0, 0, 8))
{
ChromaLogger::fprintf(stderr, "Detected old version of Chroma Editor Library!\r\n");
return RZRESULT_DLL_NOT_FOUND;
Expand Down

0 comments on commit 614b9e3

Please sign in to comment.