[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) {