Skip to content

Commit

Permalink
fixing xvirus info
Browse files Browse the repository at this point in the history
  • Loading branch information
DXVVAY committed Oct 29, 2023
1 parent da6d0e0 commit bbcb133
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions applications/settings/about/about.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ static DialogMessageButton compliance_screen(DialogsApp* dialogs, DialogMessage*
static DialogMessageButton xvirus_info_screen(DialogsApp* dialogs, DialogMessage* message) {
DialogMessageButton result;

const char* screen_header = "Xvirus Firmware\n";
const char* screen_header = "Xvirus Firmware";

const char* screen_text = "Forked With Love <3\n"
"For More Info Join discord\n"
"Discord.gg/xvirustool\n";

dialog_message_set_header(message, screen_header, 0, 0, AlignLeft, AlignTop);
dialog_message_set_text(message, screen_text, 0, 26, AlignLeft, AlignTop);
dialog_message_set_text(message, screen_text, 0, 15, AlignLeft, AlignTop);
result = dialog_message_show(dialogs, message);
dialog_message_set_header(message, NULL, 0, 0, AlignLeft, AlignTop);
dialog_message_set_text(message, NULL, 0, 0, AlignLeft, AlignTop);
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_version_info(self):
"GIT_BRANCH": branch,
"VERSION": version,
"BUILD_DIRTY": dirty and 1 or 0,
"GIT_ORIGIN": "https://github.com/DarkFlippers/unleashed-firmware.git",
"GIT_ORIGIN": "https://github.com/Xvirus-Team/xvirus-firmware.git",
"GIT_COMMIT_DATE": commit_date,
}

Expand Down

0 comments on commit bbcb133

Please sign in to comment.