diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index c423dca..64ddd3d 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -27,13 +27,14 @@ #include #define AUTO_UPDATE_KEY (QStringLiteral("autoUpdate")) +#define VERSION_STRING "v0.5" MainWindow::MainWindow(const QCommandLineParser& parser, QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWindow), appIcon(":/bullycpp.png"), picDriver(new QtPicDriver(parser.values("piclist"))), - checker("thirtythreeforty", "bullycpp", "v0.4") + checker("thirtythreeforty", "bullycpp", VERSION_STRING) { ui->setupUi(this); setWindowIcon(appIcon); @@ -210,7 +211,7 @@ void MainWindow::showAbout() QMessageBox aboutBox(QMessageBox::NoIcon, QStringLiteral("About BullyCPP"), "

" - "

BullyCPP v0.4


" + "

BullyCPP " VERSION_STRING "


" "Copyright © 2014 - 2015 George Hilliard (\"thirtythreeforty\")" "

" "See www.github.com/thirtythreeforty/bullycpp "