From 768bd52d461e0ca62d6844ab5c09f30ec36bc4d3 Mon Sep 17 00:00:00 2001 From: Yaya-Cout Date: Sun, 7 Sep 2025 16:52:21 +0200 Subject: [PATCH] [bootloader] Mark Epsilon 24.4.0 as safe --- 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 c11f2eb48..cccc54129 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 a warning if needed const char * version = s.userlandHeader()->version(); - const char * min = "24.0.2"; + const char * min = "24.4.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 19ecb3e87..23b0b412a 100644 --- a/bootloader/interface/static/messages.h +++ b/bootloader/interface/static/messages.h @@ -81,7 +81,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.1.0 - RECOVER"; + constexpr static const char * bootloaderVersion = "Version 1.1.1 - RECOVER.24.4"; //USB NAMES constexpr static const char * usbUpsilonBootloader = "NumWorks Calculator";