Updates after patch release

This commit is contained in:
Magne Sjaastad 2024-04-22 10:33:45 +02:00 committed by GitHub
parent e9ff3540ba
commit 16be653826
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -1653,9 +1653,12 @@ size_t RigCaseCellResultsData::findOrLoadKnownScalarResultForTimeStep( const Rig
m_cellScalarResults[scalarResultIndex].resize( 1 );
std::vector<double>& values = m_cellScalarResults[scalarResultIndex][0];
if ( !m_readerInterface->staticResult( resultName, m_porosityModel, &values ) )
if ( values.empty() )
{
resultLoadingSuccess = false;
if ( !m_readerInterface->staticResult( resultName, m_porosityModel, &values ) )
{
resultLoadingSuccess = false;
}
}
}

View File

@ -1,7 +1,7 @@
set(RESINSIGHT_MAJOR_VERSION 2024)
set(RESINSIGHT_MINOR_VERSION 03)
set(RESINSIGHT_PATCH_VERSION 2)
set(RESINSIGHT_PATCH_VERSION 3)
# Opional text with no restrictions
set(RESINSIGHT_VERSION_TEXT "-dev")