From 3860c881fdf666596bb40e42c07fd2af4fe34d83 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Mon, 26 Feb 2024 20:53:50 +0100 Subject: [PATCH] Change version --- ui/welcome.c | 5 +++-- version.c | 2 +- version.h | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ui/welcome.c b/ui/welcome.c index 8daa65b..1fb1fc7 100644 --- a/ui/welcome.c +++ b/ui/welcome.c @@ -103,8 +103,9 @@ void UI_DisplayWelcome(void) UI_PrintString(WelcomeString1, 0, 127, 2, 10); #ifdef ENABLE_FEAT_F4HWN - UI_PrintStringSmallNormal(Credits, 0, 128, 5); - UI_PrintStringSmallNormal(Feat, 0, 128, 6); + UI_PrintStringSmallBold(Version, 0, 128, 4); + UI_PrintStringSmallNormal(Based, 0, 128, 5); + UI_PrintStringSmallNormal(Credits, 0, 128, 6); #else UI_PrintStringSmallNormal(Version, 0, 128, 6); #endif diff --git a/version.c b/version.c index 1613d60..4cff3ab 100644 --- a/version.c +++ b/version.c @@ -7,8 +7,8 @@ #ifdef ENABLE_FEAT_F4HWN const char Version[] = AUTHOR_STRING_2 " " VERSION_STRING_2; + const char Based[] = "based on"; const char Credits[] = AUTHOR_STRING_1 " " VERSION_STRING_1; - const char Feat[] = "Feat " AUTHOR_STRING_2 " " VERSION_STRING_2; #else const char Version[] = AUTHOR_STRING VER; #endif diff --git a/version.h b/version.h index 32ada24..8a184df 100644 --- a/version.h +++ b/version.h @@ -24,5 +24,5 @@ extern const char UART_Version[]; #ifdef ENABLE_FEAT_F4HWN extern const char Credits[]; - extern const char Feat[]; + extern const char Based[]; #endif