Skip to content
This repository was archived by the owner on Oct 17, 2019. It is now read-only.

Add device ID and device fingerprint to settings page like in Riot. #407

Merged
merged 5 commits into from
Aug 21, 2018

Conversation

valkum
Copy link
Contributor

@valkum valkum commented Aug 16, 2018

This PR add ID and fingerprint of the device to the settings page (Part of #369)
I am not fimilar with QT so best practices may be violated.
Showing the key in the QLabel is done in UserSettingsPage::showEvent because i got some errors loading the key during creating the SettingsWidget.

The riot sdks handle the ed25519 as the fingerprint and not part of the identityKey. Mabye that should change in the olmClient.
Furthermore i do the conversion to a human readable form in showEvent as well. If you want me to create a function to do that somewhere else please tell me.

@valkum valkum force-pushed the device_fingerprint_pr branch from 2ea1c59 to d9c3c32 Compare August 17, 2018 21:52
Copy link
Owner

@mujx mujx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, sorry for the late review.

deviceIdValue_->setText(QString::fromStdString(http::client()->device_id()));

// TODO: Do the HumanReadable part somewhere else
QString fingerprint = QString::fromStdString(olm::client()->identity_keys().ed25519);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed to move this in Utils.

font.setWeight(65);

auto encryptionLabel_ = new QLabel(tr("Encryption"), this);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add some top padding on this section so it will appear a little more distinct, like General? Also it needs to be capitalized.


auto deviceFingerprintLabel = new QLabel(tr("Device Fingerprint"), this);
deviceFingerprintLabel->setFont(font);
deviceFingerprintValue_ = new QLabel(QString("Loading..."));
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could remove the placeholder, since the fingerprint is loaded instantly.


auto deviceIdLabel = new QLabel(tr("Device ID"), this);
deviceIdLabel->setFont(font);
deviceIdValue_ = new QLabel(QString("Loading..."));
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here for the placeholder.


QFont monospaceFont = QFont(font);
monospaceFont.setFamily("Courier New");
monospaceFont.setStyleHint(QFont::Courier);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe adjust this font to be slightly smaller than the text on the left side so it would be more easily distinguishable.

@mujx mujx merged commit c8a59f2 into mujx:master Aug 21, 2018
@mujx
Copy link
Owner

mujx commented Aug 21, 2018

Thanks!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants