Files
mattermost-mobile/app/constants/supported_server.ts
Elias Nahum 2a6bb1ddc1 [Gekidou] Show alert message when server is unsupported (#6764)
* Show alert message when server is unsupported

* set server min required version to 5.26.2
2022-11-18 12:18:11 +02:00

17 lines
410 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export const MIN_REQUIRED_VERSION = '5.26.2';
export const FULL_VERSION = '7.1.0';
export const MAJOR_VERSION = 7;
export const MIN_VERSION = 1;
export const PATCH_VERSION = 0;
export default {
MIN_REQUIRED_VERSION,
FULL_VERSION,
MAJOR_VERSION,
MIN_VERSION,
PATCH_VERSION,
};