From 92bf3f1349980c79a2e7be785838284a1441a39c Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 3 Apr 2020 11:14:14 +0200 Subject: [PATCH] Update change log + code quality --- CHANGES.md | 6 ++++-- .../features/crypto/recover/BootstrapConclusionFragment.kt | 6 +++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0b9d8d5991..416c55d239 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,16 +4,18 @@ Changes in RiotX 0.19.0 (2020-XX-XX) Features ✨: - Cross-Signing | Support SSSS secret sharing (#944) - Cross-Signing | Verify new session from existing session (#1134) + - Cross-Signing | Bootstraping cross signing with 4S from mobile (#985) Improvements 🙌: - Verification DM / Handle concurrent .start after .ready (#794) - - CrossSigning / Update Shield Logic for DM (#963) - - Xsigning | Complete security new session design update (#1135) + - Cross-Signing | Update Shield Logic for DM (#963) + - Cross-Signing | Complete security new session design update (#1135) Bugfix 🐛: - Missing avatar/displayname after verification request message (#841) - Crypto | RiotX sometimes rotate the current device keys (#1170) - RiotX can't restore cross signing keys saved by web in SSSS (#1174) + - Cross- Signing | After signin in new session, verification paper trail in DM is off (#1191) Translations 🗣: - diff --git a/vector/src/main/java/im/vector/riotx/features/crypto/recover/BootstrapConclusionFragment.kt b/vector/src/main/java/im/vector/riotx/features/crypto/recover/BootstrapConclusionFragment.kt index b04f6951c9..d84283b14c 100644 --- a/vector/src/main/java/im/vector/riotx/features/crypto/recover/BootstrapConclusionFragment.kt +++ b/vector/src/main/java/im/vector/riotx/features/crypto/recover/BootstrapConclusionFragment.kt @@ -54,7 +54,11 @@ class BootstrapConclusionFragment @Inject constructor( override fun invalidate() = withState(sharedViewModel) { state -> if (state.step !is BootstrapStep.DoneSuccess) return@withState - bootstrapConclusionText.text = getString(R.string.bootstrap_cross_signing_success, getString(R.string.recovery_passphrase), getString(R.string.message_key)) + bootstrapConclusionText.text = getString( + R.string.bootstrap_cross_signing_success, + getString(R.string.recovery_passphrase), + getString(R.string.message_key) + ) .toSpannable() .colorizeMatchingText(getString(R.string.recovery_passphrase), colorProvider.getColorFromAttribute(android.R.attr.textColorLink)) .colorizeMatchingText(getString(R.string.message_key), colorProvider.getColorFromAttribute(android.R.attr.textColorLink))