[1.6] Finish merge #5

This commit is contained in:
Quentin Guidée
2019-08-23 00:08:04 +02:00
2 changed files with 10 additions and 1 deletions

View File

@@ -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);

View File

@@ -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