diff --git a/src/main_window.cpp b/src/main_window.cpp
index 8b47781..bf65543 100644
--- a/src/main_window.cpp
+++ b/src/main_window.cpp
@@ -841,6 +841,11 @@ void AC_MainWindow::updateFrame(QImage img) {
}
void AC_MainWindow::help_About() {
- QMessageBox::information(this, tr("About Acid Cam"), tr("Written by Jared Bruni
Social Media Accounts
\n\n GitHub
\nYouTube
Instagram
Facebook
Twitter
\n"));
+ QString about_str;
+ QTextStream stream(&about_str);
+ stream << tr("Acid Cam Qt version: ") << ac_version << "
";
+ stream << tr("Written by Jared Bruni
Social Media Accounts
\n\n GitHub
\nYouTube
Instagram
Facebook
Twitter
\n");
+
+ QMessageBox::information(this, tr("About Acid Cam"), about_str);
}
diff --git a/src/qtheaders.h b/src/qtheaders.h
index cb9f95f..e945692 100644
--- a/src/qtheaders.h
+++ b/src/qtheaders.h
@@ -1,6 +1,8 @@
#ifndef _QT_HEADERS__
#define _QT_HEADERS__
+#define ac_version "v0.4-Beta"
+
#include
#include
#include