- New freetrxVersion.h with semver (MAJOR/MINOR/PATCH + string), currently 0.1.0. - Firmware Info top line now shows "FreeTRX v0.1.0"; the git commit ID line is unchanged. The version is also announced via voice prompt. - CHANGELOG: promote the accumulated changes to a 0.1.0 section. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
308 B
C
13 lines
308 B
C
/*
|
|
* FreeTRX firmware version (semantic versioning: MAJOR.MINOR.PATCH).
|
|
*/
|
|
#ifndef _FREETRX_VERSION_H_
|
|
#define _FREETRX_VERSION_H_
|
|
|
|
#define FREETRX_VERSION_MAJOR 0
|
|
#define FREETRX_VERSION_MINOR 1
|
|
#define FREETRX_VERSION_PATCH 0
|
|
|
|
#define FREETRX_VERSION "0.1.0"
|
|
|
|
#endif // _FREETRX_VERSION_H_
|