[bootloader] Mark Epsilon 23.2.6 as safe and change the warning a bit the error message

This commit is contained in:
Yaya-Cout
2024-10-19 18:29:01 +02:00
parent d3513a0763
commit 89def884f7
2 changed files with 4 additions and 4 deletions

View File

@@ -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 = "23.1.1";
const char * min = "23.2.6";
int versionSum = Utility::versionSum(version, strlen(version));
int minimalVersionTrigger = Utility::versionSum(min, strlen(min));
if (versionSum >= minimalVersionTrigger) {

View File

@@ -57,8 +57,8 @@ public:
constexpr static const char * epsilonWarningTitle = "Epsilon Slot";
constexpr static const char * epsilonWarningMessage1 = "!! WARNING !! ";
constexpr static const char * epsilonWarningMessage2 = "This version of Epsilon";
constexpr static const char * epsilonWarningMessage3 = "can lock the calculator.";
constexpr static const char * epsilonWarningMessage2 = "This version of Epsilon can lock the";
constexpr static const char * epsilonWarningMessage3 = "calculator or be incompatible.";
constexpr static const char * epsilonWarningMessage4 = "Proceed the boot ?";
constexpr static const char * epsilonWarningMessage5 = "EXE - Yes";
constexpr static const char * epsilonWarningMessage6 = "BACK - No";
@@ -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.11 - FREED0M.22.2.1";
constexpr static const char * bootloaderVersion = "Version 1.0.12 - FREED0M.23.2.5";
//USB NAMES
constexpr static const char * usbUpsilonBootloader = "NumWorks Calculator";