Mark 21.3.0 as safe (#347)

* Mark 21.3.0 as safe

* set to FREEDOM 21.3
This commit is contained in:
Rathmox
2023-10-20 19:03:52 +02:00
committed by GitHub
parent a5354f589a
commit 7f2ba08761
2 changed files with 2 additions and 2 deletions

View File

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