Skip to content

Commit

Permalink
add about info
Browse files Browse the repository at this point in the history
  • Loading branch information
v1nc committed Aug 7, 2022
1 parent bc7e846 commit 63f1da3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions applications/about/about.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static DialogMessageButton compliance_screen(DialogsApp* dialogs, DialogMessage*
DialogMessageButton result;

const char* screen_text = "For all compliance\n"
"certificates please visit:\n"
"certificates please visit\n"
"www.flipp.dev/compliance";

dialog_message_set_text(message, screen_text, 0, 0, AlignLeft, AlignTop);
Expand All @@ -58,10 +58,10 @@ static DialogMessageButton compliance_screen(DialogsApp* dialogs, DialogMessage*
static DialogMessageButton unleashed_info_screen(DialogsApp* dialogs, DialogMessage* message) {
DialogMessageButton result;

const char* screen_header = "Unleashed Firmware\n";
const char* screen_header = "Unleashed Firmware Fork\n";

const char* screen_text = "Play with caution.\n"
"Not for illegal use!";
const char* screen_text = "Very legal build by v1nc\n"
"https://3.1415.ai/flipper";

dialog_message_set_header(message, screen_header, 0, 0, AlignLeft, AlignTop);
dialog_message_set_text(message, screen_text, 0, 26, AlignLeft, AlignTop);
Expand Down Expand Up @@ -122,13 +122,13 @@ static DialogMessageButton hw_version_screen(DialogsApp* dialogs, DialogMessage*
furi_hal_version_get_hw_region_name(),
my_name ? my_name : "Unknown");

string_cat_printf(buffer, "Serial Number:\n");
string_cat_printf(buffer, "Serial number:\n");
const uint8_t* uid = furi_hal_version_uid();
for(size_t i = 0; i < furi_hal_version_uid_size(); i++) {
string_cat_printf(buffer, "%02X", uid[i]);
}

dialog_message_set_header(message, "HW Version Info:", 0, 0, AlignLeft, AlignTop);
dialog_message_set_header(message, "HW Version info:", 0, 0, AlignLeft, AlignTop);
dialog_message_set_text(message, string_get_cstr(buffer), 0, 13, AlignLeft, AlignTop);
result = dialog_message_show(dialogs, message);
dialog_message_set_text(message, NULL, 0, 0, AlignLeft, AlignTop);
Expand Down Expand Up @@ -164,7 +164,7 @@ static DialogMessageButton fw_version_screen(DialogsApp* dialogs, DialogMessage*
version_get_gitbranch(ver));
}

dialog_message_set_header(message, "FW Version Info:", 0, 0, AlignLeft, AlignTop);
dialog_message_set_header(message, "FW Version info:", 0, 0, AlignLeft, AlignTop);
dialog_message_set_text(message, string_get_cstr(buffer), 0, 13, AlignLeft, AlignTop);
result = dialog_message_show(dialogs, message);
dialog_message_set_text(message, NULL, 0, 0, AlignLeft, AlignTop);
Expand Down

0 comments on commit 63f1da3

Please sign in to comment.