Improve in-app changelogs for alpha version.

This commit is contained in:
John Preston 2017-06-30 13:32:10 +03:00
parent 197cdc3928
commit 7b496b3741
2 changed files with 37 additions and 16 deletions

View File

@ -53,24 +53,29 @@ ApiWrap::ApiWrap(gsl::not_null<AuthSession*> session)
void ApiWrap::start() { void ApiWrap::start() {
Window::Theme::Background()->start(); Window::Theme::Background()->start();
auto oldVersion = Local::oldMapVersion(); requestAppChangelogs();
if (oldVersion > 0 && oldVersion < AppVersion) { }
_changelogSubscription = subscribe(_session->data().moreChatsLoaded(), [this, oldVersion] {
auto oldVersionString = qsl("%1.%2.%3").arg(oldVersion / 1000000).arg((oldVersion % 1000000) / 1000).arg(oldVersion % 1000); void ApiWrap::requestAppChangelogs() {
request(MTPhelp_GetAppChangelog(MTP_string(oldVersionString))).done([this, oldVersion](const MTPUpdates &result) { auto oldAppVersion = Local::oldMapVersion();
if (oldAppVersion > 0 && oldAppVersion < AppVersion) {
_changelogSubscription = subscribe(_session->data().moreChatsLoaded(), [this, oldAppVersion] {
auto oldVersionString = qsl("%1.%2.%3").arg(oldAppVersion / 1000000).arg((oldAppVersion % 1000000) / 1000).arg(oldAppVersion % 1000);
request(MTPhelp_GetAppChangelog(MTP_string(oldVersionString))).done([this, oldAppVersion](const MTPUpdates &result) {
applyUpdates(result); applyUpdates(result);
auto addLocalChangelog = [this, oldVersion](int changeVersion, const char *changes) { auto resultEmpty = true;
if (oldVersion < changeVersion) { switch (result.type()) {
auto changeVersionString = QString::number(changeVersion / 1000000) + '.' + QString::number((changeVersion % 1000000) / 1000) + ((changeVersion % 1000) ? ('.' + QString::number(changeVersion % 1000)) : QString()); case mtpc_updateShortMessage:
auto text = qsl("New in version %1:\n\n").arg(changeVersionString) + QString::fromUtf8(changes).trimmed(); case mtpc_updateShortChatMessage:
auto textWithEntities = TextWithEntities { text }; case mtpc_updateShort: resultEmpty = false; break;
textParseEntities(textWithEntities.text, TextParseLinks, &textWithEntities.entities); case mtpc_updatesCombined: resultEmpty = result.c_updatesCombined().vupdates.v.isEmpty(); break;
App::main()->serviceNotification(textWithEntities, MTP_messageMediaEmpty(), unixtime()); 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 (cAlphaVersion() || cBetaVersion()) { }
addLocalChangelog(1001008, "\xE2\x80\x94 Toggle night mode in the main menu.\n"); if (resultEmpty && (cAlphaVersion() || cBetaVersion())) {
addLocalAlphaChangelogs(oldAppVersion);
} }
}).send(); }).send();
unsubscribe(base::take(_changelogSubscription)); unsubscribe(base::take(_changelogSubscription));
@ -78,6 +83,20 @@ void ApiWrap::start() {
} }
} }
void ApiWrap::addLocalAlphaChangelogs(int oldAppVersion) {
auto addLocalChangelog = [this, oldAppVersion](int changeVersion, const char *changes) {
if (oldAppVersion < changeVersion) {
auto changeVersionString = QString::number(changeVersion / 1000000) + '.' + QString::number((changeVersion % 1000000) / 1000) + ((changeVersion % 1000) ? ('.' + QString::number(changeVersion % 1000)) : QString());
auto text = qsl("New in version %1:\n\n").arg(changeVersionString) + QString::fromUtf8(changes).trimmed();
auto textWithEntities = TextWithEntities { text };
textParseEntities(textWithEntities.text, TextParseLinks, &textWithEntities.entities);
App::main()->serviceNotification(textWithEntities, MTP_messageMediaEmpty(), unixtime());
}
};
addLocalChangelog(1001008, "\xE2\x80\x94 Toggle night mode in the main menu.\n");
}
void ApiWrap::applyUpdates(const MTPUpdates &updates, uint64 sentMessageRandomId) { void ApiWrap::applyUpdates(const MTPUpdates &updates, uint64 sentMessageRandomId) {
App::main()->feedUpdates(updates, sentMessageRandomId); App::main()->feedUpdates(updates, sentMessageRandomId);
} }

View File

@ -101,6 +101,8 @@ private:
}; };
using MessageDataRequests = QMap<MsgId, MessageDataRequest>; using MessageDataRequests = QMap<MsgId, MessageDataRequest>;
void requestAppChangelogs();
void addLocalAlphaChangelogs(int oldAppVersion);
void updatesReceived(const MTPUpdates &updates); void updatesReceived(const MTPUpdates &updates);
void checkQuitPreventFinished(); void checkQuitPreventFinished();