diff options
author | saturneric <[email protected]> | 2024-03-01 06:36:33 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-03-01 06:36:33 +0000 |
commit | a74841f70cfe985ca12af353ed289925085241c1 (patch) | |
tree | 1975edc8d37a6519aea02c5762025d85c639d9fa /src/ui/dialog/controller/ModuleControllerDialog.cpp | |
parent | feat: add prefix GF to all sdk and module symbols (diff) | |
download | GpgFrontend-a74841f70cfe985ca12af353ed289925085241c1.tar.gz GpgFrontend-a74841f70cfe985ca12af353ed289925085241c1.zip |
feat: validate module id format and compatibility of sdk and qt env
Diffstat (limited to 'src/ui/dialog/controller/ModuleControllerDialog.cpp')
-rw-r--r-- | src/ui/dialog/controller/ModuleControllerDialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/dialog/controller/ModuleControllerDialog.cpp b/src/ui/dialog/controller/ModuleControllerDialog.cpp index 71e39502..309ad8e1 100644 --- a/src/ui/dialog/controller/ModuleControllerDialog.cpp +++ b/src/ui/dialog/controller/ModuleControllerDialog.cpp @@ -85,6 +85,10 @@ void ModuleControllerDialog::slot_load_module_details( info << "# BASIC INFO" << Qt::endl << Qt::endl; info << tr("Version") << ": " << module->GetModuleVersion() << Qt::endl; + info << tr("SDK Version") << ": " << module->GetModuleSDKVersion() + << Qt::endl; + info << tr("Qt ENV Version") << ": " << module->GetModuleQtEnvVersion() + << Qt::endl; info << tr("Hash") << ": " << module->GetModuleHash() << Qt::endl; info << tr("Path") << ": " << module->GetModulePath() << Qt::endl; |