Tag lib version with 'dev' for the dev branch and tighten up the

About menu to allow for longer lib version strings.
pull/142/head
Lyndon Nerenberg 2022-01-15 19:58:58 -08:00
parent f79f7482c1
commit 7bd9cf3ab0
2 changed files with 3 additions and 3 deletions

View File

@ -279,7 +279,7 @@ void Watchy::showAbout(){
display.setTextColor(GxEPD_WHITE);
display.setCursor(0, 20);
display.print("Lib Ver: v");
display.print("LibVer: ");
display.println(WATCHY_LIB_VER);
const char *RTC_HW[3] = { "<UNKNOWN>", "DS3231", "PCF8563" };

View File

@ -51,5 +51,5 @@
#define HARDWARE_VERSION_MAJOR 1
#define HARDWARE_VERSION_MINOR 0
//Versioning
#define WATCHY_LIB_VER "1.3.3"
#endif
#define WATCHY_LIB_VER "1.3.3dev"
#endif