From 5a2305f8f295e9ab3073915244b82cc65b21f3bc Mon Sep 17 00:00:00 2001 From: BuildTools Date: Thu, 22 Aug 2019 16:40:03 -0400 Subject: [PATCH 1/2] Add selector in about_controller. --- apps/settings/sub_menu/about_controller.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/settings/sub_menu/about_controller.cpp b/apps/settings/sub_menu/about_controller.cpp index b33dc5d23..3a2aae4ff 100644 --- a/apps/settings/sub_menu/about_controller.cpp +++ b/apps/settings/sub_menu/about_controller.cpp @@ -34,6 +34,15 @@ bool AboutController::handleEvent(Ion::Events::Event event) { myCell->setAccessoryText(Ion::patchLevel()); return true; } + if (selectedRow() == 1) { + MessageTableCellWithBuffer * myCell = (MessageTableCellWithBuffer *)m_selectableTableView.selectedCell(); + if (strcmp(myCell->accessoryText(), Ion::customSoftwareVersion()) == 0) { + myCell->setAccessoryText("Public"); //Change for public/dev + return true; + } + myCell->setAccessoryText(Ion::customSoftwareVersion()); + return true; + } return false; } return GenericSubController::handleEvent(event); From 58f362a01cbdebe8e9789bfd081285b1862a5eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Guid=C3=A9e?= Date: Fri, 23 Aug 2019 00:07:30 +0200 Subject: [PATCH 2/2] [1.6] Add Public tag in LavaOS Version --- README.md | 2 +- scripts/config.mak | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29b3caeb7..b28895442 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ If Numworks goes through here and finds a feature they want to implement by defa ## Some new features - Symbolic calculation -- Blue LED in exam mode +- White, green, blue or yellow LED in exam mode - More Brightness steps (16 instead of 5) - All molar masses (chemistry) diff --git a/scripts/config.mak b/scripts/config.mak index 99a2ea948..964ef8411 100644 --- a/scripts/config.mak +++ b/scripts/config.mak @@ -4,7 +4,7 @@ PLATFORM ?= device DEBUG ?= 0 EPSILON_VERSION ?= 11.2.0 -EPSILON_CUSTOM_VERSION ?= 1.5 +EPSILON_CUSTOM_VERSION ?= 1.6 EPSILON_ONBOARDING_APP ?= 1 # Valid values are "none", "update", "beta" EPSILON_BOOT_PROMPT ?= none