From 7bd9cf3ab0b6471383e8b36da243ef0d37b6de61 Mon Sep 17 00:00:00 2001 From: Lyndon Nerenberg Date: Sat, 15 Jan 2022 19:58:58 -0800 Subject: [PATCH] Tag lib version with 'dev' for the dev branch and tighten up the About menu to allow for longer lib version strings. --- src/Watchy.cpp | 2 +- src/config.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Watchy.cpp b/src/Watchy.cpp index e6c156a..1d81a1b 100644 --- a/src/Watchy.cpp +++ b/src/Watchy.cpp @@ -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] = { "", "DS3231", "PCF8563" }; diff --git a/src/config.h b/src/config.h index 6a523bc..b4074f0 100644 --- a/src/config.h +++ b/src/config.h @@ -51,5 +51,5 @@ #define HARDWARE_VERSION_MAJOR 1 #define HARDWARE_VERSION_MINOR 0 //Versioning -#define WATCHY_LIB_VER "1.3.3" -#endif \ No newline at end of file +#define WATCHY_LIB_VER "1.3.3dev" +#endif