Merge PR #312: Add info about Qt versions in about pages
This commit is contained in:
commit
cfd2869ab6
@ -391,9 +391,9 @@ void NymeaConnection::updateActiveBearers()
|
|||||||
{
|
{
|
||||||
NymeaConnection::BearerTypes availableBearerTypes;
|
NymeaConnection::BearerTypes availableBearerTypes;
|
||||||
QList<QNetworkConfiguration> configs = m_networkConfigManager->allConfigurations(QNetworkConfiguration::Active);
|
QList<QNetworkConfiguration> configs = m_networkConfigManager->allConfigurations(QNetworkConfiguration::Active);
|
||||||
qDebug() << "Network configuations:" << configs.count();
|
// qDebug() << "Network configuations:" << configs.count();
|
||||||
foreach (const QNetworkConfiguration &config, configs) {
|
foreach (const QNetworkConfiguration &config, configs) {
|
||||||
qDebug() << "Active network config:" << config.name() << config.bearerTypeFamily() << config.bearerTypeName();
|
// qDebug() << "Active network config:" << config.name() << config.bearerTypeFamily() << config.bearerTypeName();
|
||||||
|
|
||||||
// NOTE: iOS doesn't correctly report bearer types. It'll be Unknown all the time. Let's hardcode it to WiFi for that...
|
// NOTE: iOS doesn't correctly report bearer types. It'll be Unknown all the time. Let's hardcode it to WiFi for that...
|
||||||
#if defined(Q_OS_IOS)
|
#if defined(Q_OS_IOS)
|
||||||
|
|||||||
@ -150,6 +150,15 @@ void JsonRpcClient::deployCertificateReply(const QVariantMap &data)
|
|||||||
qDebug() << "deploy certificate reply:" << data;
|
qDebug() << "deploy certificate reply:" << data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void JsonRpcClient::getVersionsReply(const QVariantMap &data)
|
||||||
|
{
|
||||||
|
m_serverQtVersion = data.value("params").toMap().value("qtVersion").toString();
|
||||||
|
m_serverQtBuildVersion = data.value("params").toMap().value("qtBuildVersion").toString();
|
||||||
|
if (!m_serverQtVersion.isEmpty()) {
|
||||||
|
emit serverQtVersionChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool JsonRpcClient::connected() const
|
bool JsonRpcClient::connected() const
|
||||||
{
|
{
|
||||||
return m_connected;
|
return m_connected;
|
||||||
@ -202,6 +211,22 @@ QString JsonRpcClient::serverUuid() const
|
|||||||
return m_serverUuid;
|
return m_serverUuid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString JsonRpcClient::serverQtVersion()
|
||||||
|
{
|
||||||
|
if (!m_serverQtVersion.isEmpty()) {
|
||||||
|
return m_serverQtVersion;
|
||||||
|
}
|
||||||
|
if (ensureServerVersion("4.0")) {
|
||||||
|
sendCommand("JSONRPC.Version", QVariantMap(), this, "getVersionsReply");
|
||||||
|
}
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
|
||||||
|
QString JsonRpcClient::serverQtBuildVersion()
|
||||||
|
{
|
||||||
|
return m_serverQtBuildVersion;
|
||||||
|
}
|
||||||
|
|
||||||
int JsonRpcClient::createUser(const QString &username, const QString &password)
|
int JsonRpcClient::createUser(const QString &username, const QString &password)
|
||||||
{
|
{
|
||||||
QVariantMap params;
|
QVariantMap params;
|
||||||
@ -336,10 +361,13 @@ void JsonRpcClient::sendRequest(const QVariantMap &request)
|
|||||||
|
|
||||||
void JsonRpcClient::onInterfaceConnectedChanged(bool connected)
|
void JsonRpcClient::onInterfaceConnectedChanged(bool connected)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (!connected) {
|
if (!connected) {
|
||||||
qDebug() << "JsonRpcClient: Transport disconnected.";
|
qDebug() << "JsonRpcClient: Transport disconnected.";
|
||||||
m_initialSetupRequired = false;
|
m_initialSetupRequired = false;
|
||||||
m_authenticationRequired = false;
|
m_authenticationRequired = false;
|
||||||
|
m_serverQtVersion.clear();
|
||||||
|
m_serverQtBuildVersion.clear();
|
||||||
if (m_connected) {
|
if (m_connected) {
|
||||||
m_connected = false;
|
m_connected = false;
|
||||||
emit connectedChanged(false);
|
emit connectedChanged(false);
|
||||||
|
|||||||
@ -44,6 +44,8 @@ class JsonRpcClient : public JsonHandler
|
|||||||
Q_PROPERTY(QString serverVersion READ serverVersion NOTIFY handshakeReceived)
|
Q_PROPERTY(QString serverVersion READ serverVersion NOTIFY handshakeReceived)
|
||||||
Q_PROPERTY(QString jsonRpcVersion READ jsonRpcVersion NOTIFY handshakeReceived)
|
Q_PROPERTY(QString jsonRpcVersion READ jsonRpcVersion NOTIFY handshakeReceived)
|
||||||
Q_PROPERTY(QString serverUuid READ serverUuid NOTIFY handshakeReceived)
|
Q_PROPERTY(QString serverUuid READ serverUuid NOTIFY handshakeReceived)
|
||||||
|
Q_PROPERTY(QString serverQtVersion READ serverQtVersion NOTIFY serverQtVersionChanged)
|
||||||
|
Q_PROPERTY(QString serverQtBuildVersion READ serverQtBuildVersion NOTIFY serverQtVersionChanged)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
enum CloudConnectionState {
|
enum CloudConnectionState {
|
||||||
@ -75,6 +77,8 @@ public:
|
|||||||
QString serverVersion() const;
|
QString serverVersion() const;
|
||||||
QString jsonRpcVersion() const;
|
QString jsonRpcVersion() const;
|
||||||
QString serverUuid() const;
|
QString serverUuid() const;
|
||||||
|
QString serverQtVersion();
|
||||||
|
QString serverQtBuildVersion();
|
||||||
|
|
||||||
// ui methods
|
// ui methods
|
||||||
Q_INVOKABLE int createUser(const QString &username, const QString &password);
|
Q_INVOKABLE int createUser(const QString &username, const QString &password);
|
||||||
@ -97,6 +101,7 @@ signals:
|
|||||||
void createUserSucceeded();
|
void createUserSucceeded();
|
||||||
void createUserFailed(const QString &error);
|
void createUserFailed(const QString &error);
|
||||||
void cloudConnectionStateChanged();
|
void cloudConnectionStateChanged();
|
||||||
|
void serverQtVersionChanged();
|
||||||
|
|
||||||
void responseReceived(const int &commandId, const QVariantMap &response);
|
void responseReceived(const int &commandId, const QVariantMap &response);
|
||||||
|
|
||||||
@ -125,6 +130,8 @@ private:
|
|||||||
QString m_serverUuid;
|
QString m_serverUuid;
|
||||||
QVersionNumber m_jsonRpcVersion;
|
QVersionNumber m_jsonRpcVersion;
|
||||||
QString m_serverVersion;
|
QString m_serverVersion;
|
||||||
|
QString m_serverQtVersion;
|
||||||
|
QString m_serverQtBuildVersion;
|
||||||
QByteArray m_token;
|
QByteArray m_token;
|
||||||
QByteArray m_receiveBuffer;
|
QByteArray m_receiveBuffer;
|
||||||
|
|
||||||
@ -141,6 +148,7 @@ private:
|
|||||||
Q_INVOKABLE void isCloudConnectedReply(const QVariantMap &data);
|
Q_INVOKABLE void isCloudConnectedReply(const QVariantMap &data);
|
||||||
Q_INVOKABLE void setupRemoteAccessReply(const QVariantMap &data);
|
Q_INVOKABLE void setupRemoteAccessReply(const QVariantMap &data);
|
||||||
Q_INVOKABLE void deployCertificateReply(const QVariantMap &data);
|
Q_INVOKABLE void deployCertificateReply(const QVariantMap &data);
|
||||||
|
Q_INVOKABLE void getVersionsReply(const QVariantMap &data);
|
||||||
|
|
||||||
void sendRequest(const QVariantMap &request);
|
void sendRequest(const QVariantMap &request);
|
||||||
|
|
||||||
|
|||||||
@ -124,7 +124,8 @@ int main(int argc, char *argv[])
|
|||||||
engine->rootContext()->setContextProperty("appBranding", "");
|
engine->rootContext()->setContextProperty("appBranding", "");
|
||||||
#endif
|
#endif
|
||||||
engine->rootContext()->setContextProperty("appVersion", APP_VERSION);
|
engine->rootContext()->setContextProperty("appVersion", APP_VERSION);
|
||||||
engine->rootContext()->setContextProperty("qtVersion", QT_VERSION_STR);
|
engine->rootContext()->setContextProperty("qtBuildVersion", QT_VERSION_STR);
|
||||||
|
engine->rootContext()->setContextProperty("qtVersion", qVersion());
|
||||||
|
|
||||||
StyleController styleController;
|
StyleController styleController;
|
||||||
engine->rootContext()->setContextProperty("styleController", &styleController);
|
engine->rootContext()->setContextProperty("styleController", &styleController);
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Page {
|
|||||||
NymeaListItemDelegate {
|
NymeaListItemDelegate {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
text: qsTr("Qt version:")
|
text: qsTr("Qt version:")
|
||||||
subText: qtVersion
|
subText: qtVersion + (qtBuildVersion !== qtVersion ? " (" + qsTr("Built with %1").arg(qtBuildVersion) + ")" : "")
|
||||||
progressive: false
|
progressive: false
|
||||||
prominentSubText: false
|
prominentSubText: false
|
||||||
}
|
}
|
||||||
|
|||||||
@ -50,6 +50,14 @@ Page {
|
|||||||
progressive: false
|
progressive: false
|
||||||
prominentSubText: false
|
prominentSubText: false
|
||||||
}
|
}
|
||||||
|
NymeaListItemDelegate {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
text: qsTr("Qt version:")
|
||||||
|
visible: engine.jsonRpcClient.ensureServerVersion("4.1")
|
||||||
|
subText: engine.jsonRpcClient.serverQtVersion + (engine.jsonRpcClient.serverQtVersion !== engine.jsonRpcClient.serverQtBuildVersion ? + " (" + qsTr("Built with %1").arg(engine.jsonRpcClient.serverQtBuildVersion) + ")" : "")
|
||||||
|
progressive: false
|
||||||
|
prominentSubText: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user