2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 14:38:15 +00:00

Alpha version 0.9.57: some design improvements, GTK file chooser.

This commit is contained in:
John Preston
2016-07-07 19:32:34 +03:00
parent 609cacf8b5
commit d98a6d3f82
6 changed files with 23 additions and 19 deletions

View File

@@ -1045,8 +1045,12 @@ void AppClass::checkMapVersion() {
if (Local::oldMapVersion() < AppVersion) {
if (Local::oldMapVersion()) {
QString versionFeatures;
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 9055) {
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Main window position and size are saved between the launches in Windows\n\xe2\x80\x94 Dock and top bar hiding fixed in OS X\n\xe2\x80\x94 Various design improvements and other bug fixes");
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 9057) {
#if defined Q_OS_LINUX32 || defined Q_OS_LINUX64
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Design improvements\n\xe2\x80\x94 Linux : trying to use GTK file chooser when it is available");
#else // Q_OS_LINUX32 || Q_OS_LINUX64
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Design improvements");
#endif // Q_OS_LINUX32 || Q_OS_LINUX64
// versionFeatures = langNewVersionText();
} else if (Local::oldMapVersion() < 9056) {
versionFeatures = langNewVersionText();