Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-03-18 08:19:41 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:56:51 +0300
commitc77f454bddc9efb774444264c6f7a7d0a041b443 (patch)
tree39f4f73b9cbec2b25155d7f6d8bb4bb7304c8737 /platform
parent8c4df9033ce9fcc62044900e11a6e9e934869bd4 (diff)
[new downloader] Changing small mwm update version.
Diffstat (limited to 'platform')
-rw-r--r--platform/local_country_file_utils.cpp2
-rw-r--r--platform/mwm_version.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/platform/local_country_file_utils.cpp b/platform/local_country_file_utils.cpp
index 342d13ae28..6c751f04e7 100644
--- a/platform/local_country_file_utils.cpp
+++ b/platform/local_country_file_utils.cpp
@@ -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;
diff --git a/platform/mwm_version.cpp b/platform/mwm_version.cpp
index f3dc45fda6..670c8ee28c 100644
--- a/platform/mwm_version.cpp
+++ b/platform/mwm_version.cpp
@@ -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