[FL-2651, FL-2863] App name in CLI loader command, RFID data edit fix #1835

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Nikolay Minaylov
2022-10-07 15:46:58 +03:00
committed by GitHub
parent 38a82a1907
commit 1f742b611a
7 changed files with 44 additions and 15 deletions

View File

@@ -27,7 +27,7 @@ void storage_settings_scene_internal_info_on_enter(void* context) {
} else {
furi_string_printf(
app->text_string,
"Label: %s\nType: LittleFS\n%lu KB total\n%lu KB free",
"Label: %s\nType: LittleFS\n%lu KiB total\n%lu KiB free",
furi_hal_version_get_name_ptr() ? furi_hal_version_get_name_ptr() : "Unknown",
(uint32_t)(total_space / 1024),
(uint32_t)(free_space / 1024));

View File

@@ -26,7 +26,7 @@ void storage_settings_scene_sd_info_on_enter(void* context) {
} else {
furi_string_printf(
app->text_string,
"Label: %s\nType: %s\n%lu KB total\n%lu KB free",
"Label: %s\nType: %s\n%lu KiB total\n%lu KiB free",
sd_info.label,
sd_api_get_fs_type_text(sd_info.fs_type),
sd_info.kb_total,