1
0
Fork 0

BRIDGE: debugger version number define (just the build number)

GUI: version number in the About title
This commit is contained in:
Mr. eXoDia 2014-04-05 18:41:42 +02:00
parent 47e0f53565
commit cbd8a0fc6f
2 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ extern "C"
//Bridge defines
#define MAX_SETTING_SIZE 65536
#define DBG_VERSION 14
//Bridge functions
BRIDGE_IMPEXP const char* BridgeInit();

View File

@ -336,6 +336,7 @@ void MainWindow::displayAboutWidget()
#else
QString title="About x32_dbg";
#endif
title += QString().sprintf(" v%d", DBG_VERSION);
QMessageBox msg(QMessageBox::Information, title, "Created by:\nSigma (GUI)\nMr. eXoDia (DBG)\n\nSpecial Thanks:\nVisualPharm (http://visualpharm.com)\nReversingLabs (http://reversinglabs.com)\nBeatriX (http://beaengine.org)\nQt Project (http://qt-project.org)\nFugue Icons (http://yusukekamiyamane.com)\nNanomite (https://github.com/zer0fl4g/Nanomite)");
msg.setWindowIcon(QIcon(":/icons/images/information.png"));
msg.setParent(this, Qt::Dialog);