Remove the muted 'M' status-bar icon that overlapped the GPS text; the flashing red LED indicates mute. Bump version to 0.10.1. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
13 lines
310 B
C
13 lines
310 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 10
|
|
#define FREETRX_VERSION_PATCH 1
|
|
|
|
#define FREETRX_VERSION "0.10.1"
|
|
|
|
#endif // _FREETRX_VERSION_H_
|