[pim/kleopatra] /: Use new result messages for signature verification
Ingo Klöcker <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit cca5d8e717e99b695111316d9b9b7bb1c66fa32f by Ingo Klöcker, on behalf of Ingo Klöcker.
Committed on 28/07/2026 at 14:40.
Pushed by kloecker into branch 'master'.
Use new result messages for signature verification
GnuPG-bug-id: 7786
M +1 -1 CMakeLists.txt
M +1 -1 src/crypto/decryptverifytask.cpp
https://invent.kde.org/pim/kleopatra/-/commit/cca5d8e717e99b695111316d9b9b7bb1c66fa32f
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 68cb8aee0..3556e00fa 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -54,7 +54,7 @@ set(KIDENTITYMANAGEMENT_VERSION "6.7.40")
set(KMAILTRANSPORT_VERSION "6.7.40")
set(AKONADI_MIME_VERSION "6.7.40")
set(KMIME_VERSION "6.7.40")
-set(LIBKLEO_VERSION "6.7.46")
+set(LIBKLEO_VERSION "6.8.41")
set(QT_REQUIRED_VERSION "6.7.0")
set(MIMETREEPARSER_VERSION "6.7.40")
set(GPGME_REQUIRED_VERSION "2.0.0")
diff --git a/src/crypto/decryptverifytask.cpp b/src/crypto/decryptverifytask.cpp
index 5e681ad0d..5a4ee3faa 100644
--- a/src/crypto/decryptverifytask.cpp
+++ b/src/crypto/decryptverifytask.cpp
@@ -603,7 +603,7 @@ QList<Task::Result::ResultListItem> DecryptVerifyResult::detailsList() const
for (const Signature &sig : d->m_verificationResult.signatures()) {
const auto signerKey = KeyCache::instance()->findSigner(sig);
const auto informativeMailAddress = QString::fromUtf8(d->m_informativeSender.address());
- auto text = Kleo::Formatting::prettySignature(sig, informativeMailAddress);
+ auto text = Kleo::Formatting::prettyDataSignature(sig, informativeMailAddress);
if (!informativeMailAddress.isEmpty() && !signerKey.isNull() && !keyContainsEmail(signerKey, informativeMailAddress)) {
QString emailsList;
for (const auto &email : extractEmails(signerKey)) {