diff --git a/Software/PC_Application/aboutdialog.ui b/Software/PC_Application/aboutdialog.ui
index 62ef8a8..6039c2c 100644
--- a/Software/PC_Application/aboutdialog.ui
+++ b/Software/PC_Application/aboutdialog.ui
@@ -73,7 +73,7 @@
false
- LibreVNA it's a Vector Network Analyzer instrument that comes with a set of tools aside of hardware as LibreVNA-GUI application and the firmware that runs over theboard itself.
+ <html><head/><body><p>LibreVNA is a Vector Network Analyzer that consists of the hardware, the LibreVNA-GUI (this application) and the firmware/FPGA configuration on the board. </p></body></html>
true
@@ -144,7 +144,7 @@
Qt::LeftToRight
- <html><head/><body><p>Pull request are always welcome and this project is always in on-going development. If you have any proposal or feature just go to: <a href="https://github.com/jankae/LibreVNA/issues"><span style=" text-decoration: underline;">LibreVNA issues</span></a></p></body></html>
+ <html><head/><body><p>Pull request are always welcome as this project is still in on-going development. If you have any proposal or feature, please create an issue or a pull request: <a href="https://github.com/jankae/LibreVNA/issues"><span style=" text-decoration: underline; color:#0000ff;">LibreVNA issues</span></a></p></body></html>
true
diff --git a/Software/PC_Application/main.cpp b/Software/PC_Application/main.cpp
index b8a8a04..831cd38 100644
--- a/Software/PC_Application/main.cpp
+++ b/Software/PC_Application/main.cpp
@@ -11,8 +11,6 @@
#include
-static void setApplicationData();
-
static QApplication *app;
static AppWindow *window;
@@ -36,17 +34,12 @@ int main(int argc, char *argv[]) {
}
}
app = new QApplication(argc, argv_ext);
+ QCoreApplication::setOrganizationName("LibreVNA");
+ QCoreApplication::setApplicationName("LibreVNA-GUI");
window = new AppWindow;
- setApplicationData();
+ QCoreApplication::setApplicationVersion(window->getAppVersion() + "-" +
+ window->getAppGitHash().left(9));
signal(SIGINT, sig_handler);
app->exec();
return 0;
}
-
-static void setApplicationData()
-{
- QCoreApplication::setOrganizationName("LibreVNA");
- QCoreApplication::setApplicationName("LibreVNA-GUI");
- QCoreApplication::setApplicationVersion(window->getAppVersion() + "-" +
- window->getAppGitHash().left(9));
-}