boothifier/include/version.h
2025-09-07 23:38:56 -07:00

29 lines
745 B
C

#define FIRMWARE_VERSION_MAJOR 1
#define FIRMWARE_VERSION_MINOR 4
#define FIRMWARE_VERSION_PATCH 19
#define FIRMWARE_DESCRIPTION \
"Boothifier firmware\n" \
"Designed for modular booth control\n" \
"Supports headless operation and OTA updates\n" \
"Optimized for ARM-based systems\n"
// Changelog format:
// Each version starts with @version <version>
// Each change is prefixed with -
// Use \n for line breaks and \ at the end of each line to continue the macro
#define FIRMWARE_CHANGELOG \
"@version 1.4.3\n" \
"- Improved performance on ARM\n" \
"- Fixed memory leak\n" \
"- Updated UI theme\n" \
"@version 1.4.2\n" \
"- Added headless mode\n" \
"- Improved connection stability\n" \
"@version 1.4.1\n" \
"- Fixed UI scaling on ARM\n"