We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7675756 commit 62504f7Copy full SHA for 62504f7
eeprom_programmer_PC/src/app.cpp
@@ -65,7 +65,7 @@ void App::setSignals()
65
void App::setCommandLineOptions(QCommandLineParser& parser)
66
{
67
App::setApplicationName("EEPROM Programmer");
68
- App::setApplicationVersion("2.0-rc1");
+ App::setApplicationVersion(APP_VERSION_STRING);
69
parser.setApplicationDescription("Read and write EEPROM memories.");
70
71
parser.addOption({{"h", "help"},
eeprom_programmer_PC/src/app.h
@@ -10,6 +10,8 @@
10
#include <QCommandLineParser>
11
#include <QFile>
12
13
+#define APP_VERSION_STRING "2.0.0"
14
+
15
class App: public MemoryComm
16
17
0 commit comments