Skip to content

Commit

Permalink
Merge branch 'UpsilonNumworks:upsilon-dev' into upsilon-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeDieu authored Aug 30, 2023
2 parents 51d5ed0 + fd159fe commit ab854e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootloader/boot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "20.4.1";
const char * min = "21.1.2";
int versionSum = Utility::versionSum(version, strlen(version));
int minimalVersionTrigger = Utility::versionSum(min, strlen(min));
if (versionSum >= minimalVersionTrigger) {
Expand Down
2 changes: 1 addition & 1 deletion bootloader/interface/static/messages.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Messages {
constexpr static const char * aboutMessage4 = "and select the OS";
constexpr static const char * aboutMessage5 = "to boot.";

constexpr static const char * bootloaderVersion = "Version 1.0.5 - FREED0M.20.4";
constexpr static const char * bootloaderVersion = "Version 1.0.6 - FREED0M.21.1";

//USB NAMES
constexpr static const char * usbUpsilonBootloader = "Upsilon Bootloader";
Expand Down

0 comments on commit ab854e1

Please sign in to comment.