Add: LavaOS version in 'about' settings

This commit is contained in:
Quentin Guidée
2019-08-10 11:03:42 +02:00
parent fb4e174cd0
commit fe946bc057
13 changed files with 45 additions and 6 deletions

View File

@@ -55,10 +55,11 @@ void AboutController::willDisplayCellForIndex(HighlightCell * cell, int index) {
MessageTableCellWithBuffer * myCell = (MessageTableCellWithBuffer *)cell;
static const char * messages[] = {
Ion::softwareVersion(),
Ion::customSoftwareVersion(),
Ion::serialNumber(),
Ion::fccId()
};
assert(index >= 0 && index < 3);
assert(index >= 0 && index < 4);
myCell->setAccessoryText(messages[index]);
}