2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Alpha 1.0.15: various improvements.

Wrong supergroup members display fix, RTL text layout fix.
Linux GTK file chooser image preview added. Fix #3053 #2968
This commit is contained in:
John Preston
2017-02-27 13:44:14 +03:00
parent 6c2f16e9a0
commit fb2a26fb35
6 changed files with 20 additions and 20 deletions

View File

@@ -22,9 +22,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include "core/utils.h"
#define BETA_VERSION_MACRO (1000014001ULL)
#define BETA_VERSION_MACRO (0ULL)
constexpr int AppVersion = 1000014;
constexpr str_const AppVersionStr = "1.0.14";
constexpr bool AppAlphaVersion = false;
constexpr int AppVersion = 1000015;
constexpr str_const AppVersionStr = "1.0.15";
constexpr bool AppAlphaVersion = true;
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;

View File

@@ -646,8 +646,8 @@ void Messenger::checkMapVersion() {
if (Local::oldMapVersion() < AppVersion) {
if (Local::oldMapVersion()) {
QString versionFeatures;
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000010) {
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Support for more emoji.\n\xe2\x80\x94 Bug fixes and other minor improvements.");
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000015) {
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Wrong supergroup members display fix.\n\xe2\x80\x94 RTL text layout fix.\n\xe2\x80\x94 Linux GTK file choose dialog should show image previews.\n\xe2\x80\x94 Bug fixes and other minor improvements.");
} else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000012) {
versionFeatures = langNewVersionText();
} else {