Skip to content

Commit

Permalink
chore: updates version info
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Vieira <[email protected]>
  • Loading branch information
lucasvmx committed Mar 29, 2022
1 parent 3060284 commit 5e5667d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion qt/Spark.pro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TEMPLATE = app
win32:RC_ICONS += ../resource/images/iconfinder__snowflake_1679761_ico.ico
win32:RC_FILE += ../resource/spark.rc

VERSION = 2.4.0.0
VERSION = 2.4.1.0
if(!greaterThan(QT_MAJOR_VERSION, 5)) {
QMAKE_TARGET_COMPANY = "Lucas Vieira"
QMAKE_TARGET_DESCRIPTION = "Spark - a simple trainer to warzone 2100"
Expand Down
8 changes: 4 additions & 4 deletions resource/spark.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
APP_ICON ICON "images/iconfinder__snowflake_1679761_ico.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,4,0,0
PRODUCTVERSION 2,4,0,0
FILEVERSION 2,4,1,0
PRODUCTVERSION 2,4,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
Expand All @@ -21,11 +21,11 @@ VS_VERSION_INFO VERSIONINFO
BEGIN
VALUE "CompanyName", "Lucas Vieira\0"
VALUE "FileDescription", "Spark Trainer for Warzone2100\0"
VALUE "FileVersion", "2.4.0.0\0"
VALUE "FileVersion", "2.4.1.0\0"
VALUE "LegalCopyright", "Lucas Vieira\0"
VALUE "OriginalFilename", "Spark.exe\0"
VALUE "ProductName", "Spark\0"
VALUE "ProductVersion", "2.4.0.0\0"
VALUE "ProductVersion", "2.4.1.0\0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/frmmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void frmMain::connectAllSignals()
connect(ui->actionQuit_2, SIGNAL(triggered(bool)), this, SLOT(OnAction_QuitTriggered(bool)));
connect(hackingThread, SIGNAL(updateStatus(QString)), this, SLOT(delegateSetText(QString)));
connect(ui->actionAbout_WarHack, SIGNAL(triggered(bool)), this, SLOT(OnAction_AboutTriggered(bool)));
connect(hackingThread, SIGNAL(showCriticalMsgBox(QString, QString)), this, SLOT(showCriticalMsgBox(QString, QString)));
connect(hackingThread, SIGNAL(showCriticalMsgBox(QString,QString)), this, SLOT(showCriticalMsgBox(QString,QString)));
connect(ui->actionCheckUpdates, SIGNAL(triggered(bool)), this, SLOT(OnAction_UpdateTriggered(bool)));
}

Expand Down

0 comments on commit 5e5667d

Please sign in to comment.