diff --git a/apps/math_toolbox.cpp b/apps/math_toolbox.cpp index 1d4900c97..6548cea2e 100644 --- a/apps/math_toolbox.cpp +++ b/apps/math_toolbox.cpp @@ -38,7 +38,8 @@ const ToolboxMessageTree complexChildren[] = { const ToolboxMessageTree combinatoricsChildren[] = { ToolboxMessageTree::Leaf(I18n::Message::BinomialCommandWithArg, I18n::Message::Combination), - ToolboxMessageTree::Leaf(I18n::Message::PermuteCommandWithArg, I18n::Message::Permutation) + ToolboxMessageTree::Leaf(I18n::Message::PermuteCommandWithArg, I18n::Message::Permutation), + ToolboxMessageTree::Leaf(I18n::Message::FactorialCommandWithArg, I18n::Message::Factorial) }; const ToolboxMessageTree normalDistributionChildren[] = { diff --git a/bootloader/boot.cpp b/bootloader/boot.cpp index 8734d7576..16554b9d4 100644 --- a/bootloader/boot.cpp +++ b/bootloader/boot.cpp @@ -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) { diff --git a/bootloader/interface/static/messages.h b/bootloader/interface/static/messages.h index 39a744130..d405846c0 100644 --- a/bootloader/interface/static/messages.h +++ b/bootloader/interface/static/messages.h @@ -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.7 - FREED0M.21.2"; + constexpr static const char * bootloaderVersion = "Version 1.0.8 - FREED0M.21.3"; //USB NAMES constexpr static const char * usbUpsilonBootloader = "Upsilon Bootloader";