bump project version

This commit is contained in:
itsmattkc
2021-05-28 17:57:38 +10:00
parent 0532090259
commit e2bbff5078
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -75,7 +75,7 @@
namespace olive {
Core* Core::instance_ = nullptr;
const uint Core::kProjectVersion = 210122;
const uint Core::kProjectVersion = 210528;
Core::Core(const CoreParams& params) :
main_window_(nullptr),
+1 -1
View File
@@ -58,7 +58,7 @@ bool ProjectLoadTask::Run()
// Project is newer than we support
SetError(tr("This project is newer than this version of Olive and cannot be opened."));
return false;
} else if (project_version < 210122) { // Change this if we drop support for a project version
} else if (project_version < 210528) { // Change this if we drop support for a project version
// Project is older than we support
SetError(tr("This project is from a version of Olive that is no longer supported in this version."));
return false;