Skip to content

Commit 62504f7

Browse files
committed
Update App version in help message
1 parent 7675756 commit 62504f7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

eeprom_programmer_PC/src/app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void App::setSignals()
6565
void App::setCommandLineOptions(QCommandLineParser& parser)
6666
{
6767
App::setApplicationName("EEPROM Programmer");
68-
App::setApplicationVersion("2.0-rc1");
68+
App::setApplicationVersion(APP_VERSION_STRING);
6969
parser.setApplicationDescription("Read and write EEPROM memories.");
7070

7171
parser.addOption({{"h", "help"},

eeprom_programmer_PC/src/app.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
#include <QCommandLineParser>
1111
#include <QFile>
1212

13+
#define APP_VERSION_STRING "2.0.0"
14+
1315
class App: public MemoryComm
1416
{
1517

0 commit comments

Comments
 (0)