Update changelog

This commit is contained in:
Nicolas Werner 2024-06-10 02:16:20 +02:00
parent 96a066f246
commit 64bba3736d
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
3 changed files with 191 additions and 2 deletions

View file

@ -184,13 +184,14 @@ LoginPage::checkHomeserverVersion()
"v1.7",
"v1.8",
"v1.9",
"v1.10",
};
return supported.count(v) != 0;
}) == versions.versions.cend()) {
emit versionErrorCb(
tr("The selected server does not support a version of the Matrix protocol, that this "
"client understands (%1 to %2). You can't sign in.")
.arg(u"v1.1", u"v1.9"));
.arg(u"v1.1", u"v1.10"));
return;
}

View file

@ -139,13 +139,14 @@ RegisterPage::versionsCheck()
"v1.7",
"v1.8",
"v1.9",
"v1.10",
};
return supported.count(v) != 0;
}) == versions.versions.cend()) {
emit setHsError(
tr("The selected server does not support a version of the Matrix protocol that "
"this client understands (%1 to %2). You can't register.")
.arg(u"v1.1", u"v1.9"));
.arg(u"v1.1", u"v1.10"));
emit hsErrorChanged();
return;
}