2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2020-05-29 10:26:08 +02:00
|
|
|
constexpr int32 MTPROTO_LAYER = 114;
|
2019-08-15 17:16:09 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
enum class Version : int32 {
|
|
|
|
Initial,
|
|
|
|
StoreFileId,
|
|
|
|
AddKeyHashToSecretChat,
|
|
|
|
AddDurationToAnimation,
|
|
|
|
FixStoreGameWithoutAnimation,
|
|
|
|
AddAccessHashToSecretChat,
|
|
|
|
StoreFileOwnerId,
|
|
|
|
StoreFileEncryptionKey,
|
|
|
|
NetStatsCountDuration,
|
|
|
|
FixWebPageInstantViewDatabase,
|
|
|
|
FixMinUsers,
|
|
|
|
FixPageBlockAudioEmptyFile,
|
|
|
|
AddMessageInvoiceProviderData,
|
2018-01-30 18:06:54 +01:00
|
|
|
AddCaptionEntities,
|
2018-04-09 20:06:37 +02:00
|
|
|
AddVenueType,
|
2018-06-07 20:42:17 +02:00
|
|
|
AddTermsOfService,
|
2018-06-25 23:10:53 +02:00
|
|
|
AddContactVcard,
|
2018-12-25 18:47:37 +01:00
|
|
|
AddMessageUnsupportedVersion,
|
2019-02-06 19:00:00 +01:00
|
|
|
SupportInstantView2_0,
|
2019-04-02 00:05:31 +02:00
|
|
|
AddNotificationGroupInfoMaxRemovedMessageId,
|
2019-03-01 20:51:33 +01:00
|
|
|
SupportMinithumbnails,
|
2019-06-08 11:26:35 +02:00
|
|
|
AddVideoCallsSupport,
|
2019-06-12 13:42:06 +02:00
|
|
|
AddPhotoSizeSource,
|
2019-08-26 19:08:51 +02:00
|
|
|
AddFolders,
|
2020-01-11 01:46:26 +01:00
|
|
|
SupportPolls2_0,
|
2020-04-18 07:45:41 +02:00
|
|
|
AddDiceEmoji,
|
2020-05-29 10:51:51 +02:00
|
|
|
AddAnimationStickers,
|
2018-12-31 20:04:05 +01:00
|
|
|
Next
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class DbVersion : int32 {
|
|
|
|
DialogDbCreated = 3,
|
|
|
|
MessagesDbMediaIndex,
|
|
|
|
MessagesDb30MediaIndex,
|
|
|
|
MessagesDbFts,
|
|
|
|
MessagesCallIndex,
|
|
|
|
FixFileRemoteLocationKeyBug,
|
2018-11-28 18:18:50 +01:00
|
|
|
AddNotificationsSupport,
|
2019-08-26 19:08:51 +02:00
|
|
|
AddFolders,
|
2019-12-02 01:33:35 +01:00
|
|
|
AddScheduledMessages,
|
2020-05-03 00:10:54 +02:00
|
|
|
StorePinnedDialogsInBinlog,
|
2018-12-31 20:04:05 +01:00
|
|
|
Next
|
|
|
|
};
|
|
|
|
|
2018-10-08 15:29:44 +02:00
|
|
|
inline constexpr int32 current_db_version() {
|
2018-12-31 20:04:05 +01:00
|
|
|
return static_cast<int32>(DbVersion::Next) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|