diff --git a/Documentation/DebugMenu.md b/Documentation/DebugMenu.md index 1b40ad784..c18018a94 100644 --- a/Documentation/DebugMenu.md +++ b/Documentation/DebugMenu.md @@ -40,9 +40,9 @@ I.e.: **Additional scroll-able items appear in this order**: -### Date +### Timestamp -- This is a date of firmware compilation and it has the following format: `DD-MM-YY` (i.e., `01-07-23` means it has been built in July, 1st, 2023) +- This is a timestamp of firmware compilation and it has the following format: `YYYYMMDD HHMMSS` (i.e., `20230701 213456` means it has been built in July, 1st, 2023 at 9:34:56 pm) ### ID diff --git a/Translations/make_translation.py b/Translations/make_translation.py index cd765bed8..8608ee51f 100755 --- a/Translations/make_translation.py +++ b/Translations/make_translation.py @@ -152,7 +152,7 @@ def get_constants() -> List[Tuple[str, str]]: def get_debug_menu() -> List[str]: return [ - datetime.today().strftime("%Y-%m-%d"), + datetime.today().strftime("%Y%m%d %H%M%S"), "ID ", "ACC ", "PWR ",