From e20b1dee071c7a0c202a60536eaecdde7c1889fa Mon Sep 17 00:00:00 2001 From: Yaya-Cout Date: Wed, 8 May 2024 20:18:33 +0200 Subject: [PATCH] [bootloader] Update version code (1.0.11) --- bootloader/boot.cpp | 2 +- bootloader/interface/static/messages.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootloader/boot.cpp b/bootloader/boot.cpp index ca994c73e..6d5c1eada 100644 --- a/bootloader/boot.cpp +++ b/bootloader/boot.cpp @@ -105,7 +105,7 @@ void Boot::bootSlot(Bootloader::Slot s) { if (!s.userlandHeader()->isOmega() && !s.userlandHeader()->isUpsilon()) { // We are trying to boot epsilon, so we check the version and show an advertisement if needed const char * version = s.userlandHeader()->version(); - const char * min = "22.2.1"; + const char * min = "23.1.1"; int versionSum = Utility::versionSum(version, strlen(version)); int minimalVersionTrigger = Utility::versionSum(min, strlen(min)); if (versionSum >= minimalVersionTrigger) { diff --git a/bootloader/interface/static/messages.h b/bootloader/interface/static/messages.h index 2cb3cc9d7..0996846f1 100644 --- a/bootloader/interface/static/messages.h +++ b/bootloader/interface/static/messages.h @@ -72,7 +72,7 @@ public: constexpr static const char * aboutMessage4 = "and select the OS"; constexpr static const char * aboutMessage5 = "to boot."; - constexpr static const char * bootloaderVersion = "Version 1.0.10 - FREED0M.22.2"; + constexpr static const char * bootloaderVersion = "Version 1.0.11 - FREED0M.22.2.1"; //USB NAMES constexpr static const char * usbUpsilonBootloader = "NumWorks Calculator";