mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 02:01:40 -05:00
Add default changelog for the new stable version.
Also add a non-translated changelog for the new alpha/beta versions.
This commit is contained in:
parent
61461d0a87
commit
397797aac7
2 changed files with 25 additions and 14 deletions
|
@ -74,8 +74,8 @@ void ApiWrap::requestAppChangelogs() {
|
||||||
case mtpc_updatesTooLong:
|
case mtpc_updatesTooLong:
|
||||||
case mtpc_updateShortSentMessage: LOG(("API Error: Bad updates type in app changelog.")); break;
|
case mtpc_updateShortSentMessage: LOG(("API Error: Bad updates type in app changelog.")); break;
|
||||||
}
|
}
|
||||||
if (resultEmpty && (cAlphaVersion() || cBetaVersion())) {
|
if (resultEmpty) {
|
||||||
addLocalAlphaChangelogs(oldAppVersion);
|
addLocalChangelogs(oldAppVersion);
|
||||||
}
|
}
|
||||||
}).send();
|
}).send();
|
||||||
unsubscribe(base::take(_changelogSubscription));
|
unsubscribe(base::take(_changelogSubscription));
|
||||||
|
@ -83,18 +83,29 @@ void ApiWrap::requestAppChangelogs() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::addLocalAlphaChangelogs(int oldAppVersion) {
|
void ApiWrap::addLocalChangelogs(int oldAppVersion) {
|
||||||
auto addLocalChangelog = [this, oldAppVersion](int changeVersion, const char *changes) {
|
auto addedSome = false;
|
||||||
if (oldAppVersion < changeVersion) {
|
auto addLocalChangelog = [this, &addedSome](const QString &text) {
|
||||||
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 };
|
auto textWithEntities = TextWithEntities { text };
|
||||||
textParseEntities(textWithEntities.text, TextParseLinks, &textWithEntities.entities);
|
textParseEntities(textWithEntities.text, TextParseLinks, &textWithEntities.entities);
|
||||||
App::wnd()->serviceNotification(textWithEntities, MTP_messageMediaEmpty(), unixtime());
|
App::wnd()->serviceNotification(textWithEntities, MTP_messageMediaEmpty(), unixtime());
|
||||||
|
addedSome = true;
|
||||||
|
};
|
||||||
|
if (cAlphaVersion() || cBetaVersion()) {
|
||||||
|
auto addLocalAlphaChangelog = [this, oldAppVersion, addLocalChangelog](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();
|
||||||
|
addLocalChangelog(text);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
addLocalAlphaChangelog(1001008, "\xE2\x80\x94 Toggle night mode in the main menu.\n");
|
||||||
addLocalChangelog(1001008, "\xE2\x80\x94 Toggle night mode in the main menu.\n");
|
addLocalAlphaChangelog(1001010, "\xE2\x80\x94 Filter added to channel and supergroup event log.\n\xE2\x80\x94 Search by username in privacy exceptions editor fixed.\n\xE2\x80\x94 Adding admins in channels fixed.");
|
||||||
|
}
|
||||||
|
if (!addedSome) {
|
||||||
|
auto text = lng_new_version_wrap(lt_version, str_const_toString(AppVersionStr), lt_changes, lang(lng_new_version_minor), lt_link, qsl("https://desktop.telegram.org/changelog")).trimmed();
|
||||||
|
addLocalChangelog(text);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::applyUpdates(const MTPUpdates &updates, uint64 sentMessageRandomId) {
|
void ApiWrap::applyUpdates(const MTPUpdates &updates, uint64 sentMessageRandomId) {
|
||||||
|
|
|
@ -102,7 +102,7 @@ private:
|
||||||
using MessageDataRequests = QMap<MsgId, MessageDataRequest>;
|
using MessageDataRequests = QMap<MsgId, MessageDataRequest>;
|
||||||
|
|
||||||
void requestAppChangelogs();
|
void requestAppChangelogs();
|
||||||
void addLocalAlphaChangelogs(int oldAppVersion);
|
void addLocalChangelogs(int oldAppVersion);
|
||||||
void updatesReceived(const MTPUpdates &updates);
|
void updatesReceived(const MTPUpdates &updates);
|
||||||
void checkQuitPreventFinished();
|
void checkQuitPreventFinished();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue