diff --git a/Makefile.win b/Makefile.win index 8916631..c953f63 100644 --- a/Makefile.win +++ b/Makefile.win @@ -81,4 +81,4 @@ clean: if exist updater_src\release rmdir /S /Q updater_src\release if exist updater_src\Makefile del updater_src\Makefile if exist updater_src\Makefile.Debug del updater_src\Makefile.Debug - if exist updater_src\Makefile.Release del updater_src\Makefile.Release \ No newline at end of file + if exist updater_src\Makefile.Release del updater_src\Makefile.Release diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index dbbda5f..99f693b 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -185,7 +185,7 @@ void MainWindow::onValidateButtonClicked() void MainWindow::onCalculationPerformed(QString hash) { - if(ui->leHash->text() == hash) + if(ui->leHash->text().toLower() == hash) { this->alert("Success", "The file checksum is valid!"); ui->statusBar->showMessage("Validation successful!"); diff --git a/src/refs.h b/src/refs.h index 4236375..5f03909 100644 --- a/src/refs.h +++ b/src/refs.h @@ -1,11 +1,11 @@ #ifndef REFS_H #define REFS_H -#define VER_FILEVERSION 2,3,5,0 -#define VER_FILEVERSION_STR "2.3.5\0" +#define VER_FILEVERSION 2,3,6,0 +#define VER_FILEVERSION_STR "2.3.6\0" -#define VER_PRODUCTVERSION 2,3,5,0 -#define VER_PRODUCTVERSION_STR "2.3.5\0" +#define VER_PRODUCTVERSION 2,3,6,0 +#define VER_PRODUCTVERSION_STR "2.3.6\0" #define VER_COMPANYNAME_STR "Kaleb Klein" #define VER_FILEDESCRIPTION_STR "File Checksum Validator" @@ -18,8 +18,8 @@ #define VER_COMPANYDOMAIN_STR "kalebklein.com" -#define VERSION_CODE 24 -#define VERSION_NAME "2.3.5" +#define VERSION_CODE 25 +#define VERSION_NAME "2.3.6" #define VERSION_GEN "2.1.2" #endif // REFS_H