[bootloader] Update version code (1.0.11)

This commit is contained in:
Yaya-Cout
2024-05-08 20:18:33 +02:00
parent 8ff2e021ec
commit e20b1dee07
2 changed files with 2 additions and 2 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 = "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) {

View File

@@ -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";