2017-12-29 18:17:07 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-12-29 18:17:07 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-12-29 18:17:07 +00:00
|
|
|
*/
|
|
|
|
#include "core/changelogs.h"
|
|
|
|
|
|
|
|
#include "storage/localstorage.h"
|
|
|
|
#include "lang/lang_keys.h"
|
2018-01-04 10:22:53 +00:00
|
|
|
#include "data/data_session.h"
|
2017-12-29 18:17:07 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "apiwrap.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
namespace {
|
|
|
|
|
2018-09-26 14:58:09 +00:00
|
|
|
std::map<int, const char*> BetaLogs() {
|
2017-12-29 18:17:07 +00:00
|
|
|
return {
|
2018-10-16 20:10:26 +00:00
|
|
|
{
|
|
|
|
1004004,
|
|
|
|
"- Interface scaling for large screens, up to 300% "
|
|
|
|
"(up to 150% for macOS retina screens).\n"
|
|
|
|
|
|
|
|
"- Updated emoji."
|
2018-09-26 15:33:48 +00:00
|
|
|
},
|
2018-11-08 13:29:29 +00:00
|
|
|
{
|
|
|
|
1004005,
|
|
|
|
"- Listen to voice and video messages in 2X mode "
|
|
|
|
"if you're in a hurry.\n"
|
|
|
|
|
|
|
|
"- Find video messages in the shared voice messages section.\n"
|
|
|
|
|
|
|
|
"- Add a comment when you share posts from channels.\n"
|
|
|
|
|
|
|
|
"- View all photos and videos "
|
|
|
|
"in Twitter and Instagram link previews.\n"
|
|
|
|
|
|
|
|
"- Bug fixes and other minor improvements."
|
2018-12-04 15:58:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
1004008,
|
|
|
|
"- Add emoji to media captions.\n"
|
|
|
|
|
|
|
|
"- Switch off the 'Count unread messages' option "
|
|
|
|
"in Settings > Notifications if you want to see "
|
|
|
|
"the unread chats count in the badge instead."
|
2018-12-27 05:25:05 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
1005005,
|
|
|
|
"- Support for auto-download of files and music.\n"
|
|
|
|
|
|
|
|
"- Improved auto-download settings.\n"
|
|
|
|
|
|
|
|
"- Bug fixes and other minor improvements."
|
2019-01-11 10:50:19 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
1005007,
|
|
|
|
"- Choose the emoji set you would like to use "
|
|
|
|
"in Settings > Chat Settings.\n"
|
|
|
|
|
|
|
|
"- Choose input and output devices for Telegram Calls "
|
|
|
|
"in Settings > Adavanced > Call Settings."
|
2019-03-12 13:01:34 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
1005016,
|
|
|
|
"- Play video files and listen to received music "
|
|
|
|
"without waiting for them to download.\n"
|
|
|
|
|
|
|
|
"- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages."
|
2019-04-05 11:53:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
1006004,
|
|
|
|
"- Replace media when editing messages with media content.\n"
|
|
|
|
|
|
|
|
"- Jump quickly to the top of your chats list.\n"
|
|
|
|
|
|
|
|
"- Get emoji suggestions for the first word you type in a message.\n"
|
|
|
|
|
|
|
|
"- Help Telegram improve emoji suggestions in your language "
|
|
|
|
"using this interface https://translations.telegram.org/en/emoji"
|
2018-11-08 13:29:29 +00:00
|
|
|
}
|
2017-12-29 18:17:07 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FormatVersionDisplay(int version) {
|
|
|
|
return QString::number(version / 1000000)
|
|
|
|
+ '.' + QString::number((version % 1000000) / 1000)
|
|
|
|
+ ((version % 1000)
|
|
|
|
? ('.' + QString::number(version % 1000))
|
|
|
|
: QString());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FormatVersionPrecise(int version) {
|
|
|
|
return QString::number(version / 1000000)
|
|
|
|
+ '.' + QString::number((version % 1000000) / 1000)
|
|
|
|
+ '.' + QString::number(version % 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
Changelogs::Changelogs(not_null<AuthSession*> session, int oldVersion)
|
|
|
|
: _session(session)
|
|
|
|
, _oldVersion(oldVersion) {
|
2019-04-18 08:28:43 +00:00
|
|
|
_session->data().chatsListChanges(
|
|
|
|
) | rpl::filter([](Data::Folder *folder) {
|
|
|
|
return !folder;
|
|
|
|
}) | rpl::start_with_next([=] {
|
|
|
|
requestCloudLogs();
|
|
|
|
}, _chatsSubscription);
|
2017-12-29 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Changelogs> Changelogs::Create(
|
|
|
|
not_null<AuthSession*> session) {
|
|
|
|
const auto oldVersion = Local::oldMapVersion();
|
|
|
|
return (oldVersion > 0 && oldVersion < AppVersion)
|
|
|
|
? std::make_unique<Changelogs>(session, oldVersion)
|
|
|
|
: nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Changelogs::requestCloudLogs() {
|
2019-04-18 08:28:43 +00:00
|
|
|
_chatsSubscription.destroy();
|
2017-12-29 18:17:07 +00:00
|
|
|
|
|
|
|
const auto callback = [this](const MTPUpdates &result) {
|
|
|
|
_session->api().applyUpdates(result);
|
|
|
|
|
|
|
|
auto resultEmpty = true;
|
|
|
|
switch (result.type()) {
|
|
|
|
case mtpc_updateShortMessage:
|
|
|
|
case mtpc_updateShortChatMessage:
|
|
|
|
case mtpc_updateShort:
|
|
|
|
resultEmpty = false;
|
|
|
|
break;
|
|
|
|
case mtpc_updatesCombined:
|
|
|
|
resultEmpty = result.c_updatesCombined().vupdates.v.isEmpty();
|
|
|
|
break;
|
|
|
|
case mtpc_updates:
|
|
|
|
resultEmpty = result.c_updates().vupdates.v.isEmpty();
|
|
|
|
break;
|
|
|
|
case mtpc_updatesTooLong:
|
|
|
|
case mtpc_updateShortSentMessage:
|
|
|
|
LOG(("API Error: Bad updates type in app changelog."));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (resultEmpty) {
|
|
|
|
addLocalLogs();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
_session->api().requestChangelog(
|
|
|
|
FormatVersionPrecise(_oldVersion),
|
2018-06-04 15:35:11 +00:00
|
|
|
crl::guard(this, callback));
|
2017-12-29 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Changelogs::addLocalLogs() {
|
2018-09-26 15:11:16 +00:00
|
|
|
if (AppBetaVersion || cAlphaVersion()) {
|
2018-09-26 14:58:09 +00:00
|
|
|
addBetaLogs();
|
2017-12-29 18:17:07 +00:00
|
|
|
}
|
|
|
|
if (!_addedSomeLocal) {
|
|
|
|
const auto text = lng_new_version_wrap(
|
|
|
|
lt_version,
|
2018-11-08 05:50:18 +00:00
|
|
|
QString::fromLatin1(AppVersionStr),
|
2017-12-29 18:17:07 +00:00
|
|
|
lt_changes,
|
|
|
|
lang(lng_new_version_minor),
|
|
|
|
lt_link,
|
|
|
|
qsl("https://desktop.telegram.org/changelog"));
|
|
|
|
addLocalLog(text.trimmed());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Changelogs::addLocalLog(const QString &text) {
|
|
|
|
auto textWithEntities = TextWithEntities{ text };
|
|
|
|
TextUtilities::ParseEntities(textWithEntities, TextParseLinks);
|
2019-02-11 12:50:35 +00:00
|
|
|
_session->data().serviceNotification(textWithEntities);
|
2017-12-29 18:17:07 +00:00
|
|
|
_addedSomeLocal = true;
|
|
|
|
};
|
|
|
|
|
2018-09-26 14:58:09 +00:00
|
|
|
void Changelogs::addBetaLogs() {
|
2019-01-13 08:03:34 +00:00
|
|
|
for (const auto [version, changes] : BetaLogs()) {
|
2018-09-26 14:58:09 +00:00
|
|
|
addBetaLog(version, changes);
|
2017-12-29 18:17:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 14:58:09 +00:00
|
|
|
void Changelogs::addBetaLog(int changeVersion, const char *changes) {
|
2017-12-29 18:17:07 +00:00
|
|
|
if (_oldVersion >= changeVersion) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto version = FormatVersionDisplay(changeVersion);
|
|
|
|
const auto text = qsl("New in version %1:\n\n").arg(version)
|
|
|
|
+ QString::fromUtf8(changes).trimmed();
|
|
|
|
addLocalLog(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core
|