BRIDGE: debugger version number define (just the build number)
GUI: version number in the About title
This commit is contained in:
parent
47e0f53565
commit
cbd8a0fc6f
|
|
@ -26,6 +26,7 @@ extern "C"
|
|||
|
||||
//Bridge defines
|
||||
#define MAX_SETTING_SIZE 65536
|
||||
#define DBG_VERSION 14
|
||||
|
||||
//Bridge functions
|
||||
BRIDGE_IMPEXP const char* BridgeInit();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue