Skip to content
Snippets Groups Projects
Verified Commit d6ba418e authored by leprob001's avatar leprob001
Browse files

chore: Clarified warning about wrong workspace version

parent de2517ae
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ maxMigration = artoa.versioning.migrations.getLatestVersionNumber(); ...@@ -14,7 +14,7 @@ maxMigration = artoa.versioning.migrations.getLatestVersionNumber();
if ~isfield(pArtoaWorkspace, 'artoaVersion') if ~isfield(pArtoaWorkspace, 'artoaVersion')
message = [ ... message = [ ...
'You loaded an iterim file with an unknown Version.' newline ... 'You loaded an iterim file with an unknown Version.' newline ...
'Your artoa4 instance is on Version 4.' num2str(currentArtoaVersion) '.' newline ... 'Your artoa4 instance requires a workspace version with at least 4.' num2str(maxMigration) '.' newline ...
'Please consider upgrading your interim file using the' newline newline ... 'Please consider upgrading your interim file using the' newline newline ...
'artoa.upgradeInterim(yourArtoaFilePath)' newline newline ... 'artoa.upgradeInterim(yourArtoaFilePath)' newline newline ...
'command.' newline ... 'command.' newline ...
...@@ -30,7 +30,7 @@ if workspaceVersion < currentArtoaVersion & workspaceVersion < maxMigration ...@@ -30,7 +30,7 @@ if workspaceVersion < currentArtoaVersion & workspaceVersion < maxMigration
'You loaded an iterim file that has Version 4.' ... 'You loaded an iterim file that has Version 4.' ...
num2str(workspaceVersion) ... num2str(workspaceVersion) ...
'.' newline ... '.' newline ...
'Your artoa4 instance is on Version 4.' num2str(currentArtoaVersion) '.' newline ... 'Your artoa4 instance requires a workspace version with at least 4.' num2str(maxMigration) '.' newline ...
'Please consider upgrading your interim file using the' newline newline ... 'Please consider upgrading your interim file using the' newline newline ...
'artoa.upgradeInterim(yourArtoaFilePath)' newline newline ... 'artoa.upgradeInterim(yourArtoaFilePath)' newline newline ...
'command.' newline ... 'command.' newline ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment