[new downloader] Changing small mwm update version.

This commit is contained in:
Vladimir Byko-Ianko 2016-03-18 08:19:41 +03:00 committed by Sergey Yershov
parent 8c4df9033c
commit c77f454bdd
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ namespace migrate
// Set of functions to support migration between different versions of MWM
// with totaly incompatible formats.
// 160107 - Migrate to small single file MWM
uint32_t constexpr kMinRequiredVersion = 160107;
uint32_t constexpr kMinRequiredVersion = 160302;
bool NeedMigrate()
{
uint32_t version;

View file

@ -113,7 +113,7 @@ uint32_t ReadVersionDate(ModelReaderPtr const & reader)
bool IsSingleMwm(int64_t version)
{
#pragma message("Check this version and move if necessary before small mwm release.")
int64_t constexpr kMinSingleMwmVersion = 160107;
int64_t constexpr kMinSingleMwmVersion = 160302;
return version >= kMinSingleMwmVersion || version == 0 /* Version of mwm in the root directory. */;
}
} // namespace version