Change version

This commit is contained in:
Armel FAUVEAU
2024-02-26 20:53:50 +01:00
parent e43c4554df
commit 3860c881fd
3 changed files with 5 additions and 4 deletions

View File

@@ -103,8 +103,9 @@ void UI_DisplayWelcome(void)
UI_PrintString(WelcomeString1, 0, 127, 2, 10); UI_PrintString(WelcomeString1, 0, 127, 2, 10);
#ifdef ENABLE_FEAT_F4HWN #ifdef ENABLE_FEAT_F4HWN
UI_PrintStringSmallNormal(Credits, 0, 128, 5); UI_PrintStringSmallBold(Version, 0, 128, 4);
UI_PrintStringSmallNormal(Feat, 0, 128, 6); UI_PrintStringSmallNormal(Based, 0, 128, 5);
UI_PrintStringSmallNormal(Credits, 0, 128, 6);
#else #else
UI_PrintStringSmallNormal(Version, 0, 128, 6); UI_PrintStringSmallNormal(Version, 0, 128, 6);
#endif #endif

View File

@@ -7,8 +7,8 @@
#ifdef ENABLE_FEAT_F4HWN #ifdef ENABLE_FEAT_F4HWN
const char Version[] = AUTHOR_STRING_2 " " VERSION_STRING_2; 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 Credits[] = AUTHOR_STRING_1 " " VERSION_STRING_1;
const char Feat[] = "Feat " AUTHOR_STRING_2 " " VERSION_STRING_2;
#else #else
const char Version[] = AUTHOR_STRING VER; const char Version[] = AUTHOR_STRING VER;
#endif #endif

View File

@@ -24,5 +24,5 @@ extern const char UART_Version[];
#ifdef ENABLE_FEAT_F4HWN #ifdef ENABLE_FEAT_F4HWN
extern const char Credits[]; extern const char Credits[];
extern const char Feat[]; extern const char Based[];
#endif #endif