diff options
author | Saturneric <[email protected]> | 2023-03-30 17:31:40 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-03-30 17:31:40 +0000 |
commit | 2294175e8235dc9ea2984e92aed701da176a3016 (patch) | |
tree | d666367a22b2b511a2c5c79e6570003fe28319c6 | |
parent | fix: solve export key filename issues on windows (diff) | |
download | GpgFrontend-2294175e8235dc9ea2984e92aed701da176a3016.tar.gz GpgFrontend-2294175e8235dc9ea2984e92aed701da176a3016.zip |
feat: add openssl build version at about tab
-rw-r--r-- | src/ui/dialog/help/AboutDialog.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/dialog/help/AboutDialog.cpp b/src/ui/dialog/help/AboutDialog.cpp index 6bd0fa49..548ba47a 100644 --- a/src/ui/dialog/help/AboutDialog.cpp +++ b/src/ui/dialog/help/AboutDialog.cpp @@ -28,6 +28,8 @@ #include "AboutDialog.h" +#include <openssl/opensslv.h> + #include "GpgFrontendBuildInfo.h" #include "core/function/GlobalSettingStation.h" #include "core/thread/TaskRunnerGetter.h" @@ -94,7 +96,8 @@ InfoTab::InfoTab(QWidget* parent) : QWidget(parent) { " <a href=\"https://github.com/saturneric/GpgFrontend\">GitHub</a> " + _("or send a mail to my mailing list at") + " <a " + "href=\"mailto:[email protected]\">[email protected]</a>." + "<br><br> " + - _("Built with Qt") + " " + qVersion() + " " + _("and GPGME") + " " + + _("Built with Qt") + " " + qVersion() + ", " + OPENSSL_VERSION_TEXT + + " " + _("and") + "GPGME" + " " + GpgFrontend::GpgContext::GetInstance() .GetInfo(false) .GpgMEVersion.c_str() + |