Mark 21.2.0 as safe (#342)

* Mark 21.2.0 as safe

* Update messages.h
This commit is contained in:
Rathmox
2023-10-02 21:12:43 +02:00
committed by GitHub
parent 764ff6fd86
commit 0f2ce293d1
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.1.2";
const char * min = "21.2.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.6 - FREED0M.21.1";
constexpr static const char * bootloaderVersion = "Version 1.0.7 - FREED0M.21.2";
//USB NAMES
constexpr static const char * usbUpsilonBootloader = "Upsilon Bootloader";