From f89ffc9b0011824a955008e75208dd0c239f1266 Mon Sep 17 00:00:00 2001 From: Yaya-Cout Date: Tue, 29 Aug 2023 11:54:31 +0200 Subject: [PATCH 1/2] [bootloader] Mark Epsilon 21.1.1 as safe --- bootloader/boot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader/boot.cpp b/bootloader/boot.cpp index 8f0a68d827e..302c761a71f 100644 --- a/bootloader/boot.cpp +++ b/bootloader/boot.cpp @@ -107,7 +107,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 = "20.4.1"; + const char * min = "21.1.2"; int versionSum = Utility::versionSum(version, strlen(version)); int minimalVersionTrigger = Utility::versionSum(min, strlen(min)); if (versionSum >= minimalVersionTrigger) { From fd159fe48955881d041cb67c1e97e17d1f420191 Mon Sep 17 00:00:00 2001 From: Yaya-Cout Date: Tue, 29 Aug 2023 12:26:38 +0200 Subject: [PATCH 2/2] [bootloader] Update version number --- bootloader/interface/static/messages.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader/interface/static/messages.h b/bootloader/interface/static/messages.h index 3e443cf20fe..ba9da6ac669 100644 --- a/bootloader/interface/static/messages.h +++ b/bootloader/interface/static/messages.h @@ -72,7 +72,7 @@ class Messages { constexpr static const char * aboutMessage4 = "and select the OS"; constexpr static const char * aboutMessage5 = "to boot."; - constexpr static const char * bootloaderVersion = "Version 1.0.5 - FREED0M.20.4"; + constexpr static const char * bootloaderVersion = "Version 1.0.6 - FREED0M.21.1"; //USB NAMES constexpr static const char * usbUpsilonBootloader = "Upsilon Bootloader";